I have CSV data which looks something like:
Data
1,1,10
1,2,50
1,3,5
etc...
And I am trying to read in the data. However, my initial data does not contain a header row (as seen above) so it is taking the first data row to be the header (1,1,10). Is there anyway around this. I want to set the header names after I read the data
Javascript
d3.csv("data/testnh.csv", function(data) {
console.log(data);
}
Thanks!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…