我需要在 R 中绘制一个时间序列。但是很难弄清楚如何使用这些格式。
dates <- c(20060901, 20060905, 20060906, 20060907, 20060908, 20060911)
values <- c(33.6, 32.0, 30.0, 30.0, 30.0, 28.4)
需要以适当的格式转换日期,例如:20060901 到 Sep-01-2006 等等
到目前为止我的方法:
dates = as.Date(dates, "%Y%m%d")
plot(dates , values)
但是,我收到以下错误:
Error in charToDate(x) : character string is not in a standard unambiguous format