dealien / Data-Viewer

Online data viewer project for 12th grade statistics class
0 stars 0 forks source link

Interactive Data Explorer

Link to the explorer

Config File

Data Format

Data can either be formatted vertically, where each sub-array represents a column of data in the table, or horizontally, where each sub-array represents one row of data in the table.

Vertical Data Format

{
  "data": [
    [1, 2, 3, 4, 5],
    [6388, 6367, 6500, 6635, 6312]
  ]
}

Horizontal Data Format

{
  "data": [
    [1, 6388],
    [2, 6367],
    [3, 6500],
    [4, 6635],
    [5, 6312]
  ]
}

Additional Info