如何在rCharts生成的multiBarChart中禁用Stacked选项。
data <- data.frame(Var = c(1, 2, 3, 4),
Fac1 = rep(c("A" ,"B"), 2),
Fac2 = rep(c("Blue", "Red"), each=2))
require(rCharts)
n1 <- nPlot(Var ~ Fac2, group = "Fac1", data = data, type = "multiBarChart")
n1发布于 2016-08-19 02:48:13
n1$chart(showControls = FALSE)https://stackoverflow.com/questions/37197994
复制相似问题