简体   繁体   English

如何在R中转换每月时间序列

[英]How to convert monthly time-series in R

I am working on a monthly-based time-series data set: 我正在研究基于每月的时间序列数据集:

> head(data, n=10)
# A tibble: 10 x 2
   Month               Inflation
   <dttm>                  <dbl>
 1 1979-01-01 00:00:00    0.0258
 2 1979-02-01 00:00:00    0.0234
 3 1979-03-01 00:00:00    0.0055
 4 1979-04-01 00:00:00    0.0302
 5 1979-05-01 00:00:00    0.0305
 6 1979-06-01 00:00:00    0.0232
 7 1979-07-01 00:00:00    0.025 
 8 1979-08-01 00:00:00    0.0234
 9 1979-09-01 00:00:00    0.0074
10 1979-10-01 00:00:00    0.0089

Although it appears that the data is yet to be recognized as a time-series data as it shows the following structure: 尽管该数据显示为以下结构,但似乎尚未被识别为时间序列数据:

> str(data)
Classes ‘tbl_df’, ‘tbl’ and 'data.frame':   479 obs. of  2 variables:
 $ Month    : POSIXct, format: "1979-01-01" "1979-02-01" "1979-03-01" "1979-04-01" ...
 $ Inflation: num  0.0258 0.0234 0.0055 0.0302 0.0305 0.0232 0.025 0.0234 0.0074 0.0089 ...

When I tried to convert it using xts function, it gave me this error: 当我尝试使用xts函数将其转换时,它给了我这个错误:

> inflation <- xts(data[,-1], order.by=as.Date(data[,1], "%m/%d/%Y"))
Error in as.Date.default(data[, 1], "%m/%d/%Y") : 
  do not know how to convert 'data[, 1]' to class “Date”

Please help me with the most appropriate way of data conversion. 请帮助我以最合适的方式进行数据转换。 Thanks 谢谢

# You have something like:
data <- data.frame(
  Month = as.Date(as.Date("1979-01-01"):as.Date("2000-01-01"), origin="1970-01-01"),
  Inflation = rnorm(7671)) # same number of obs

Create TS 创建TS

choose start and end dates appropriatelly 适当选择开始和结束日期

tseries <- ts(data$Inflation, start = c(1979,1), end = c(2000,1), frequency = 12)
plot(tseries)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM