使用 r2d3 在 d3.js 中使用 R data.frame 对象

Use R data.frame object in d3.js using r2d3

我试图了解如何使用包 r2d3 将 R 数据帧传递给 d3.js 脚本。 r2d3 条形图示例的扩展以访问 data.frame 对象中的变量会很有帮助。

R代码:

library(r2d3)
data <- data.frame(nums = c(0.3, 0.6, 0.8, 0.95, 0.40, 0.20))
r2d3(data, script = "test.js")

js代码:

var barHeight = Math.floor(height / data.length);

svg.selectAll('rect')
  .data(data.nums)
  .enter().append('rect')
    .attr('width', function(d) { return d * width; })
    .attr('height', barHeight)
    .attr('y', function(d, i) { return i * barHeight; })
    .attr('fill', 'steelblue');

错误:

Error: svg.selectAll(...).data(...).enter is not a function in (test.js#5:4)
TypeError: svg.selectAll(...).data(...).enter is not a function

发生此错误是因为 data.nums 未定义。

您的 data 变量不是包含数组的对象,如下所示:

var data = {
      nums: [0.3,0.6,0.8,0.95,0.40,0.20]
    }

而是一个包含对象的数组:

var data = [
  {nums:0.3},
  {nums:0.6},
  {nums:0.8},
  {nums:0.95},
  {nums:0.40},
  {nums:0.2}
]

为了保留 r 副代码,我们只需要将数据数组本身传递给 selection.data() 并访问每个数据的 nums 属性:

var barHeight = Math.floor(height / data.length);

svg.selectAll('rect')
  .data(data)
  .enter().append('rect')
    .attr('width', function(d) { return d.nums * width; })
    .attr('height', barHeight)
    .attr('y', function(d, i) { return i * barHeight; })
    .attr('fill', 'steelblue');