我玩 rCharts 和 nvd3 已经有一段时间了。现在我需要一个气泡图,或者至少是一个散点图,其中点的大小取决于数据中的变量。从这个例子来看,这似乎是可能的。rCharts 中散点图的示例是:
library(rCharts)
p1 <- nPlot(mpg ~ wt, group = 'cyl', data = mtcars, type = 'scatterChart')
p1$xAxis(axisLabel = 'Weight')
p1
所以我尝试将大小设置为,例如gears
. 但这并没有改变任何东西。
p2 <- nPlot(mpg ~ wt, group = 'cyl', size = 'gear', data = mtcars, type = 'scatterChart')
p2$xAxis(axisLabel = 'Weight')
p2
可能吗?