-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
In some cases the data are sparce and there are many empty values.
We can follow two approaches:
- Use null values -> "table": {"1999":[2311, null, null, null, null, null, null, null, 1522]}
- Use the position of the value -> "table": {"1999":["0": 2311, "8": 1522]}
For the record, json-stat adopts both approaches