D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
gka
Full window
Github gist
Miso.Dataset auto column names
<html> <head> <script src="miso.ds.deps.min.0.1.3-latest.js"></script> </head> <body> <script> var ds = new Miso.Dataset({ url : 'data.csv', delimiter : "\t", }).fetch({ success: function() { console.log("Available Columns:" + this.columnNames()); console.log("There are " + this.length + " rows"); console.log(this); } }); </script> </body> </html>