1
私はすでにコードパラレル座標グラフを持っていますが、すべて正常に動作します。今私は平行座標の視覚化を色分けするために色を使用しようとしていますが、何かが間違っています。データセット(http://archive.ics.uci.edu/ml/machine-learning-databases/wine/wine.data)では、ワイン種の名前が異なります(1列目はクラス識別子(1-3)です)が、グラフでは1つの色しか描画されません。誰も私を助けることができますか?カラーコーディングパラレル座標
グラフ:
enter code here
// CREATE A COLOR SCALE
var color = d3.scale.ordinal()
.domain(['1','2','3'])
.range(['red','blue','green'])
d3.csv("wine.csv", function(error, wine) {
// Extract the list of dimensions and create a scale for each.
x.domain(dimensions = d3.keys(wine[0]).filter(function(d) {
return d != "name" && (y[d] = d3.scale.linear()
.domain(d3.extent(wine, function(p) { return +p[d]; }))
.range([h, 0]));
}));
// Add grey background lines for context.
background = svg.append("g")
.attr("class", "background")
.selectAll("path")
.data(wine)
.enter().append("path")
.attr("d", path);
// USE THE COLOR SCALE TO SET THE STROKE BASED ON THE DATA
foreground = svg.append("g")
.attr("class", "foreground")
.selectAll("path")
.data(wine)
.enter().append("path")
.attr("d", path)
.attr("stroke", function(d) {
var species = d.name.slice(0,d.name.indexOf(' '));
return color(species);
})
d.nameの値は何ですか? – thatOneGuy
これが二項命名であれば、 'var種 'を持つ属のみを得ることになります。あなたが "Vitis vinifera"のような二項名を扱っているなら、これを使って属と特定のエピトートを一緒に結合することが最善の考えです:str = str.replace(/ \ s/g、 '');それは "Vitis vinifera"を "Vitisvinifera"に変えます。 –
私は "name"という名前のデータセットの1列目(http://archive.ics.uci.edu/ml/machine-learning-databases/wine/wine.data)の値は1,2,3 – Santa