标签: r warnings
我已经定义了一个新的时间序列对象“ f”,并希望使用向量c(2,4,3,5)填充其训练数据分量“ x”。
> f <- ts() > f$x <- c(2,4,3,5) Warning message: In f$x <- c(2, 4, 3, 5) : Coercing LHS to a list > print(f$x) [1] 2 4 3 5
上面的代码运行并正确填充“ f”,但会生成警告。
在没有警告的情况下填充时间序列对象的最佳方法是什么?