admin管理员组文章数量:1345476
I am looking for a method of adding categorical data to the d3js parallel coordinates. D3js is new to me, I can understand some of what is being done, but have not been able to figure out a way of doing this. Parallel sets are not a good option, as most of my data is continuous.
If you think of the car example, I would like to be a able to filter by brand on an axis (eg. filter so that only data on Ford is shown). I'm assuming that a variable would be needed to define each car (eg. Peugeot, Ford, BMW, Audi etc...)
Here is the car example.
Thanks to anyone who responds.
I am looking for a method of adding categorical data to the d3js parallel coordinates. D3js is new to me, I can understand some of what is being done, but have not been able to figure out a way of doing this. Parallel sets are not a good option, as most of my data is continuous.
If you think of the car example, I would like to be a able to filter by brand on an axis (eg. filter so that only data on Ford is shown). I'm assuming that a variable would be needed to define each car (eg. Peugeot, Ford, BMW, Audi etc...)
Here is the car example.
http://bl.ocks/1341281
Thanks to anyone who responds.
Share Improve this question edited Jul 9, 2014 at 6:19 VividD 10.5k8 gold badges66 silver badges112 bronze badges asked Nov 5, 2012 at 6:40 user1799353user1799353 711 silver badge2 bronze badges 1- You may be interested in Robert Kosara's "parallel sets" - see here and also Robert Kosara, Fabian Bendix, Helwig Hauser, "Parallel Sets: Interactive Exploration and Visual Analysis of Categorical Data", Transactions on Visualization and Computer Graphics, vol. 12, no. 4, pp. 558–568, 2006 available here – Silverfish Commented Jan 15, 2015 at 15:58
1 Answer
Reset to default 11Actually all you need is an ordinal scale! The axis will take care of the rest.
Check it out here.
Basically I changed:
x.domain(dimensions = d3.keys(cars[0]).filter(function(d) {
return d != "name" && (y[d] = d3.scale.linear()
.domain(d3.extent(cars, function(p) { return +p[d]; }))
.range([h, 0]));
}));
to:
x.domain(dimensions = d3.keys(cars[0]).filter(function(d) {
if(d === "name") return false;
if(d === "colour") {
y[d] = d3.scale.ordinal()
.domain(cars.map(function(p) { return p[d]; }))
.rangePoints([h, 0]);
}
else {
y[d] = d3.scale.linear()
.domain(d3.extent(cars, function(p) { return +p[d]; }))
.range([h, 0]);
}
return true;
}));
And I added one string valued categorical column to the data. I was a bit lazy for hard-coding which property is string-valued.
本文标签: javascriptd3js Parallel Coordinates categorical dataStack Overflow
版权声明:本文标题:javascript - d3js Parallel Coordinates categorical data - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743804614a2541946.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论