0
我需要使用d3.js提出關於降雨量一些分類數據的散點圖在3個城市3年:分類散點圖使用d3.js的JavaScript
Year1 Year2 Year3
NY CA TX NY CA TX NY CA TX
17 20 15 23 10 11 14 15 17
16 18 12 15 21 22 20 18 19
13 22 16 17 25 18 17 25 18
19 18 13 16 21 20 22 15 16
(注:數據和陰謀不匹配在這裏,它只是解釋我的查詢) 我是完全新的d3.js。我已經嘗試了一些簡單散點圖和條形圖的教程,但我無法弄清楚如何顯示像這樣的分類圖。
任何幫助讓我開始將不勝感激。
[編輯] 我重新排列的數據在TSV文件,所以它看起來是這樣的:
year state rain
1 NY 17
1 NY 16
1 NY 13
1 CA 20
1 TX 15
2 NY 23
3 CA 10
3 TX 14
3 NY 13
似乎有一些問題。我得到「意外的值NaN解析cx屬性」。和cy相同。任何想法如何解決它?
var newArray = new Array();
// draw the scatterplot
svg.selectAll("dot") // provides a suitable grouping for the svg elements that will be added
.data(data) // associates the range of data to the group of elements
.enter().append("circle") // adds a circle for each data point
.attr("r", 5) // with a radius of 3.5 pixels
.attr("cx", function (d) {
newArray = data.filter(function (el) {
return el.category == "NY";
});
return xScale(newArray.rain);
}) // at an appropriate x coordinate
.attr("cy", function (d) {
return yScale(newArray.year);
}) // and an appropriate y coordinate
.style("fill", color(9));
[NVD3 scatterplot](http://nvd3.org/ghpages/scatter.html)可能是一個很好的開始。 –
@LarsKotthoff:我只能使用d3。我更新了這個問題。你能看一下嗎? – user1340852
NVD3基於D3。除非您向我們展示完整的代碼,否則我無法真正幫助您。 –