有没有办法在 R 中的 rCharts 中的 mPlot 中更改颜色和轴限制?
Is there a way to change colors and axis limits in mPlot in rCharts in R?
我正在使用 mPlot
函数将 morris
javascript 库与 R 统计包链接起来。如何使用此功能的示例如下:
https://github.com/ramnathv/rCharts/tree/master/inst/libraries/morris
有谁知道如何更改此图的轴限制和线条颜色?
您可以使用 chart$set 更改 lineColors
、ymax
和 ymin
。
例如,使用 link you posted 中的第三个示例:
data(economics, package = 'ggplot2')
dat = transform(economics, date = as.character(date))
p3 <- mPlot(x = "date", y = list("psavert", "uempmed"), data = dat, type = 'Line',
pointSize = 0, lineWidth = 1)
p3$set(xLabelFormat = "#! function (x) {
return x.toString(); }
!#")
p3$set(lineColors=c("red","blue"))
p3$set(ymax=20)
p3
如果使用ymax或ymin,图形会不会没有交互性?这意味着当您在图表上移动时不会显示信息。
我正在使用 mPlot
函数将 morris
javascript 库与 R 统计包链接起来。如何使用此功能的示例如下:
https://github.com/ramnathv/rCharts/tree/master/inst/libraries/morris
有谁知道如何更改此图的轴限制和线条颜色?
您可以使用 chart$set 更改 lineColors
、ymax
和 ymin
。
例如,使用 link you posted 中的第三个示例:
data(economics, package = 'ggplot2')
dat = transform(economics, date = as.character(date))
p3 <- mPlot(x = "date", y = list("psavert", "uempmed"), data = dat, type = 'Line',
pointSize = 0, lineWidth = 1)
p3$set(xLabelFormat = "#! function (x) {
return x.toString(); }
!#")
p3$set(lineColors=c("red","blue"))
p3$set(ymax=20)
p3
如果使用ymax或ymin,图形会不会没有交互性?这意味着当您在图表上移动时不会显示信息。