我想使用area = true选项使用rCharts的NVD3 lineChart图来绘制不同人口的分布,就像http://nvd3.org/examples/line.html一样。

这是我正在从事的工作:

require(devtools)
install_github('ramnathv/rCharts')
require(rCharts)

df<-data.frame(X=rep(1:4,2),Y=1:8,fil=c(rep("A",4),rep("B",4)))

denp <- nPlot(Y ~ X, group = 'fil', data = df, type = 'lineChart')
denp$chart(color =c('#ff7f0e', 'blue', 'green'))
denp$yAxis(axisLabel= 'Density')
denp$xAxis(axisLabel= 'Value')
denp$chart(margin = list(left=80,bottom=80))
denp$yAxis(tickFormat = "#!function (x,y,e) { return }!#")
denp$xAxis(tickFormat = "#!function (x,y,e) {
tickformat = ['0,01','0,1',1,10,100,1000,10000,'100k'];
return tickformat[x+2];}!#")
denp$chart(tooltipContent = "#! function(key, val, e, graph){
return '<h3>' + '<font color=blue>'+ key +'</font>'+ '</h3>' + '<p>'+ val } !#")

denp

我发现的问题是我无法将area参数切换为true。
我试过了:
denp$chart(area=TRUE)
denp$chart(area=c(TRUE,TRUE,TRUE))
denp$chart(area=c('true'))
denp$chart(area=c('true','true','true'))
denp$chart(area=c('#!true!#'))
denp$chart(area=c('#!true!#','#!true!#','#!true!#'))

所有这些的结果都是空白图。
有没有办法在rCharts中将Area选项用于这种类型的图形,或者它是否超出了库的当前范围?

最佳答案

您可以按照@seaotternerd的建议使用isArea函数,并使用自定义javascript函数专门设置要设置为true的区域参数。

例如,使用:

denp$chart(isArea="#! function(d) {
           if(d.key=='A') return true;
           } !#")

这里d是数据。

你得到:

关于r - rcharts NVD3 lineChart中的绘图区域,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29233003/

10-12 20:36