Is there a way to utilize methods such as nest() with data in the format of an array of arrays rather than an array of objects?
Edit: I am unable to access values using attribute names like d.name because the data is constantly changing. The attribute names and values are determined by user input files. Instead of accessing by d.name, I would like to access by index value d[0] based on the user's selection of a specific attribute.
In addition, is it necessary to use a server to implement d3.js as detailed here: ?
Thank you for your assistance,