使用ggplot绘制时间序列数据

时间:2019-03-12 16:05:52

标签: r ggplot2 plot time

我希望以图形方式接收我的数据,但是我想以“ Jan 2015”开始,以“ Feb 2018”结束。

我尝试了以下操作:

ggplot(PerMonth, aes(x = as.Date(Date), y = Amount)) + 
  geom_line(color=  "#099FDB", size = 1) +
  theme_minimal()+ scale_x_date(date_labels="%b-%y",breaks = "6 month") + 
  scale_y_continuous(name = "Total Number of Reviews",limits=c(0,120000),breaks=seq(0,120000,20000))

Graph

我的时间数据具有以下结构: (我使用了“ as.yearmon(df $ time)”)

2015年1月

2015年2月

...

2018年2月

0 个答案:

没有答案