在创建带有日期序列(从2018年1月到2018年10月的月)的数据框并带有值列表时,我有以下几行:
sales <- c(429, 400, 986, 618, 754, 424, 289, 401, 916, 852)
periods <- seq(as.Date("2018/1/1"), as.Date("2018/10/1"), "months")
Passengers <- data.frame(sales, periods)
pax <- ts(Passengers)
ggplot(pax, aes(x = months, y = sales)) + geom_line(colour = "grey75")
输出未显示一列句点:
Time Series:
Start = 1
End = 10
Frequency = 1
sales periods
1 429 17532
2 400 17563
3 986 17591
4 618 17622
5 754 17652
6 424 17683
7 289 17713
8 401 17744
9 916 17775
10 852 17805
month的x轴显示的不像一个月,怎么以yyyy-mm格式显示?谢谢。
答案 0 :(得分:1)