I'm a little confused. I need to upload some CSV files using javascript, and I need to change some properties of each loaded dataset. So basically I use this structure called d3, and I want to upload 3 csv files, and then for each of the csv files I need to change the color of the lines plotted for the parallel coordinate graph. I am currently using three data downloads, but this will ruin my plot, and I have values ββin everything.
d3.csv('X.csv', function(data) {
pc = d3.parallelCoordinates()("parallelcoordinates")
.data(data)
.color(color)
.alpha(0.4)
.render()
.brushable()
.interactive()
var explore_count = 0;
var exploring = {};
var explore_start = false;
pc.svg
.selectAll(".dimension")
.style("cursor", "pointer")
.on("click", function(d) {
exploring[d] = d in exploring ? false : true;
event.preventDefault();
if (exploring[d]) d3.timer(explore(d,explore_count,pc));
});
. , , ( ). , , - JS - . , . - , ?