【问题标题】:Grouped scatter plot with multiple datasets D3具有多个数据集的分组散点图 D3
【发布时间】:2016-05-10 08:50:27
【问题描述】:

目前我有 3 个数组形式的数据集,我想将其中一个数据集保留为 Y 轴,其余数据集绘制在散点图和 X 轴范围内。

到目前为止,我只能在 Y 轴上绘制一个数据集,在 X 轴上绘制一个数据集。

g.selectAll("scatter-dots")
  .data(y1data)
  .enter().append("svg:circle") 
  .attr("cy", function (d) { return y(d); } ) 
  .attr("cx", function (d,i) { return x(xdata[i]); } ) 

要绘制的数据集是 x1data x2data 作为 X 轴,以及 X 轴范围和域将如何变化

这是我当前的 X 轴

var x = d3.scale.linear()
          .domain([11, d3.max(x1data)])  //i am only taking the max of one dataset.
          .range([ 0, width ]);       

三个数据集是

x1data= [11, 22, 10, 55, 44, 23, 12, 56, 100, 98, 75, 20]
x2data= [8, 41, 34, 67, 34, 13, 67, 45, 66, 3, 34, 75]
y1data = [2000, 2001, 2004, 2005, 2006,2007]

我想实现类似的散点图 This

【问题讨论】:

  • 为什么不复制该示例中的代码?
  • @Mr_Green 该示例从 csv 获取数据,而我的数据来自数据集
  • 那么不要使用 csv。直接使用data 变量。
  • data 变量应该采用什么格式?如果我结合 x1data 和 x2data 将能够实现分组散点图?如果是的话应该是什么格式

标签: javascript jquery d3.js scatter-plot


【解决方案1】:

不太确定是否要将 x2 用作独立于 x 轴的第三个视觉变量,或者 x1 和 x2 一起加入一个系列,但关键是 d3.zip 函数在任何一种情况下 - @987654321 @


要使用 x2 作为第三个变量,即圆半径,请使用 d3.zip 将您的三个数组转换为三元素数组的数组:

var data = d3.zip ([y1data, x1data, x2data]);

数据现在将是 [[2000,11,8],[2001,22,41], ... etc ...]。

然后在散点图选择上使用它

g.selectAll("scatter-dots")
  .data(data)
  .enter().append("svg:circle") 
  .attr("cy", function (d) { return y(d[0]); } ) // d[0] is the value from y1data for this datum
  .attr("cx", function (d,i) { return x(d[1]); } ) // d[1] is the value from x1data for this datum
  .attr("r", function (d,i) { return rscale(d[2]); } ) // d[2] is the value from x2data  for this datum.
  // ^^^rscale will need to be a scale you construct that controls the mapping of the x2 values

如果您想将 x1 和 x2 绘制为不同的系列,但都与 x 轴相关联,请使用 d3.zip 执行此操作:

var data1 = d3.zip ([y1data, x1data, y1data.map (function(a) { return 1; }); ]);
var data2 = d3.zip ([y1data, x2data, y1data.map (function(a) { return 2; }); ]);
var data = data1.concat(data2);

数据现在将是 [[2000,11,1],[2001,22,1], ... etc ..., [2000,8,2], [2001,41,2], .. .等等...]。

g.selectAll("scatter-dots")
  .data(data)
  .enter().append("svg:circle") 
  .attr("cy", function (d) { return y(d[0]); } ) // d[0] is the value from y1data for this datum
  .attr("cx", function (d,i) { return x(d[1]); } ) // d[1] is the value from x1data or x2data for this datum
  .attr("r", "5") // fixed radius this time
  .attr("fill", function (d,i) { return colscale(d[2]); } ) // d[2] is either 1 or 2 for this datum
  // ^^^colscale will need to be a scale you construct that controls the mapping of the values 1 or 2 to a colour

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2018-10-24
    • 2015-02-18
    • 2012-12-21
    • 1970-01-01
    • 1970-01-01
    • 2011-05-15
    相关资源
    最近更新 更多