创建带有滑块的交互式绘图

创建带有滑块的交互式绘图

R 创建带有滑块的交互式绘图,其宽度可以更改,示例如下,我正在 ggvis R 包中搜索,但也欢迎其他人:

R 创建带有滑块的交互式绘图,其宽度可以像在 Google Finance 中一样更改(相当大的时间窗口)-LMLPHP

最佳答案

看看 dygraphsdyRangeSelector()



有关更多信息和示例,请查看 dygraphgithub.io :

install.packages("dygraphs")
library(dygraphs)
lungDeaths <- cbind(mdeaths, fdeaths)
dygraph(lungDeaths) %>%
  dySeries("mdeaths", label = "Male") %>%
  dySeries("fdeaths", label = "Female") %>%
  dyOptions(stackedGraph = TRUE) %>%
  dyRangeSelector(height = 20)

这使:

R 创建带有滑块的交互式绘图,其宽度可以像在 Google Finance 中一样更改(相当大的时间窗口)-LMLPHP

关于R 创建带有滑块的交互式绘图,其宽度可以像在 Google Finance 中一样更改(相当大的时间窗口),我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37254485/

10-12 17:39