5

我目前正在使用 rCharts 包中的 nPlot,如何将 $ 符号添加到 y 轴?

我想我需要类似的东西,n1$yAxis(labels = ...)但我认为 nPlot 不支持这个?

test <- data.frame(object = c("A", "B"), price = c(111333, 876176))
test$Test <- "TEST"
n1 <- nPlot(price~Test, group = "object", data = test, type = "multiBarChart")

此外,看起来 nPlot 正在四舍五入到 5 个有效数字(最初认为它是四舍五入到最接近的 10),有没有显示完整值的方法?

谢谢,

4

1 回答 1

7

我将我的评论作为一个完整的解决方案发布,以便其他人更容易寻找它。

require(rCharts) # install the latest from the dev branch
test <- data.frame(object = c("A", "B"), price = c(111333, 876176))
test$Test <- "TEST"
n1 <- nPlot(price~Test, group = "object", data = test, type = "multiBarChart")
n1$yAxis(tickFormat = "#! function(d) {return '$' + d} !#")
于 2013-10-09T02:09:38.990 回答