rCharts:rPlot()颜色少于水平

时间:2014-05-22 12:49:13

标签: r rcharts

我试试这个:

testd <- data.frame(ID=1:10,cl=sample(1:10,100,replace=TRUE),x=runif(100),y=2*runif(100))
testd$ID <- factor(testd$ID)
testd$cl <- factor(testd$cl)
levels(testd$cl)
rPlot(y~x, data = testd, color = 'cl', 
      tooltip = "#!function(item){ return 'cl: ' + item.cl + ' id: ' + item.ID }!#",
      type = 'point', ylim=c(-0.5,1.5))

但是我得到的传奇只有4级(2,4,6,8),而我有10级 为什么? 另外,我无法控制轴限制。

任何帮助表示赞赏,

由于

0 个答案:

没有答案