如何在R中使用plotly绘制时间序列中的多个系列/行?

时间:2017-06-13 13:01:30

标签: r ggplot2 time-series plotly timeserieschart

我有几年的时间序列,我需要使用plot_ly在x轴上绘制mm / dd,在y轴上绘制多年。我在这里生成了一个示例数据:

date<-seq(as.Date("2010-11-22"),as.Date("2016-05-26"),by ="days")
sales = runif(2013, 2000, 6000)
df = data.frame(date,sales)

我绘制了这些数据并得到了这个:

plot_ly(df,x= ~date) %>% add_lines(y = ~sales,color=I("red"))

enter image description here

现在,我尝试使用plot_ly绘制多个y轴:

plot_ly(df, x = ~date) %>% add_lines(y = ~sales, 
df$date <= "2010-12-31",color=I("red")) %>% 
             add_lines(y = ~sales, df$date <= "2013-12-31" & 
             df$date >= 2013-01-01, color = I("green"))

但我的情节错了:

enter image description here

那是什么错误?

我想要这样的情节:

enter image description here

1 个答案:

答案 0 :(得分:0)

要在同一图表上创建不同的行,我们必须使用df拆分组中的plotly::group_by。在您的情况下,这是使用lubridate按年分割来实现的:

library(plotly)
library(lubridate)
date <- seq(as.Date("2010-11-22"), as.Date("2016-05-26"), by = "days")
# Add some variations to distinguish lines
sales <-  runif(2013, 10, 20) + year(date) * 5 + yday(date) / 5
df <-  data.frame(date, sales)


df %>% 
  mutate(year = year(date)) %>% 
  group_by(year) %>% 
  plot_ly(x = ~ yday(date)) %>% 
  add_lines(y = ~ sales, 
            color = ~ factor(year)
            ) 

enter image description here