在R ts包中具有时间序列中的多个属性

时间:2017-09-04 00:32:51

标签: r

R支持

pol_pos = ts(p$POS, frequency = 12, start = c(2017,8))

但我需要使用数据的多个属性,例如

pol_pos = ts( p$POS, p$NEG, frequency = 12, start = c(2017,8))

有没有办法做到这一点?

1 个答案:

答案 0 :(得分:0)

不确定。第一个参数需要是一个多列对象:

pol_pos=ts(p[, c("POS", "NEG")], frequency = 12, start = c(2017,8))