我目前正在使用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),有没有办法显示全部值?
谢谢,
答案 0 :(得分: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} !#")