I'm working on a graph with d3.js library. The 3d.js tsv parser creates the 'd' variable as such:
TSV:
day Value
01-01 50
01-02 45
01-03 60
code:
d3.tsv("data.tsv", function(error, data){...}
and now you use 'd.day' and 'd.Value' to build your graph - scaterplots, linegraph, etc...
I won't be using a tsv file but a javascript variable instead. Which is the most correct (if possible) javascript variable representation in order to use this d.day and d.Value in 3d.js and parsing it conventionally like 'svg.data(data)'?