var data = d3.csv.parse(d3.select('#someid').text());
<div id=someid>
Time,Person_ID
8/13/2015 17:08,771347186
8/13/2015 17:09,770884821
8/13/2015 17:09,784219886
8/13/2015 17:10,771342437
</div>
how do I load the csv data? The rest of the code is done. I just want the data passed to the variable "data" to be exactly the same. How I do this?