gpt4 book ai didi

r - R : padding at user-defined interval中的padr

转载 作者:行者123 更新时间:2023-12-04 00:06:18 24 4
gpt4 key购买 nike

我正在以 5 分钟的时间间隔处理时间序列数据。一些 5 分钟的时间序列丢失了。我想重新采样数据集以用 NaN 值填充缺失的 5 分钟时间段。我在这里找到了有关如何处理此问题的重要信息:R: Insert rows for missing dates/times .

我创建了一个带有 POSIXct 时间序列列“时间”的 data.frame“df”。

padr 包中的 pad 函数允许用户按分钟、小时、天等设置间隔。

interval
The interval of the returned datetime variable. When NULL the the interval >will be equal to the interval of the datetime variable. When specified it can >only be lower than the interval of the input data. See Details.



padr 的 pad 函数将在我的 5 分钟数据上创建 1 分钟间隔。如何设置我自己的用户定义间隔(例如 5 分钟)?

最佳答案

新版本昨天击中了 CRAN。您现在可以在每个间隔中使用不同于 1 的单位

library(padr)
library(dplyr)
coffee %>% thicken("5 min") %>% select(-time_stamp) %>% pad()

关于r - R : padding at user-defined interval中的padr,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42586650/

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