gpt4 book ai didi

r - 用 R 提取部分时间序列

转载 作者:行者123 更新时间:2023-12-01 03:52:47 25 4
gpt4 key购买 nike

我在 R 中有一个 ts (时间序列)对象,其中包含长时间的缺失值。我想提取其中的一部分并保留时间序列对象。

例如使用 AirPassengers 数据:

class(AirPassengers) 
#output: "ts"

但如果我只提取第一个月的 10
AirPassengers[1:10]
#output: [1] 112 118 132 129 121 135 148 148 136 119

class(AirPassengers[1:10])
#output: "numeric"

如何在不丢失 ts 类的情况下简单地提取我的时间序列的一部分?

最佳答案

如前所述 here ,解决方法是使用window功能:

window(AirPassergers, 1960, c(1960, 4))

Jan Feb Mar Apr
1960 417 391 419 461

关于r - 用 R 提取部分时间序列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20645049/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com