I'm thinking about how to create a visualization tool for csv files. The files I'm talking about are in the format:
dateStamp1,dataA1,dataB1 \n (I think this is the carriage return that the file uses)
dateStamp2,dataA2,dataB2 \n
First: csv could use another carriage return system? Does it matter?
Second: which would be the simplest way to implement using frontend? HTML+CSS+JS+Library?
Third: which library do you recommend? D3.js?
Fourth: How do I start?
Thanks!