我的目标是获得 1 个情节,其中有多个带有自动图例的时间系列来识别系列。从 1996 年 1 月开始,在我的 CSV 文件中,我有 5 列(农业、食品、燃料、manu、矿石)。
library(xts)
library(xtsExtra)
RuChAgri <- read.csv("https://dl.dropbox.com/u/6421260/Forum/RuChAgri.csv", sep=";")
#transform csv data according to R ts
RuChAgri <- ts(RuChAgri, start = c(1996, 1), frequency = 1)
#try to get 1 plot with multiple ts with an auto legend
plot.xts(RuChAgri, screens = factor(1, 1), auto.legend = TRUE)
当我运行最后一行时,我收到错误:
Error in try.xts(x) :
Error in xts(x.mat, order.by = order.by, frequency = frequency(x),
.CLASS = "ts", : NROW(x) must match length(order.by)
有人知道我的代码有什么问题吗?