答案 0 :(得分:6)
查看dygraphs
和dyRangeSelector()
。
dygraphs包是dygraphs JavaScript的R接口 图表库。它为图表时间序列提供了丰富的设施 R中的数据
有关更多信息和示例,请查看dygraph
的{{3}}:
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)
给出了:
答案 1 :(得分:4)
Highcharts / Highstock它是这种情节的另一个很棒的工具,R中有一个很棒的API包装器:http://jkunst.com/highcharter/