我在 .csv excel 文件中有 2 列时间序列,“日期”和“小部件”
我使用以下命令将文件导入 R:
widgets<-read.csv("C:things.csv")
str(things)
'data.frame': 280 obs. of 2 variables:
$ date: Factor w/ 280 levels "2012-09-12","2012-09-13",..: 1 2 3 4 5 6 7 8 9 10 ...
$ widgets : int 5 10 15 20 30 35 40 50 55 60 65 70 75 80 85 90 95 100 ...
如何将因素 things$date 转换为 xts 或时间序列格式?
例如当我:
hist(things)
Error in hist.default(things) : 'x' must be numeric