我正在处理R中时间序列的预测。我有几个问题:
答案 0 :(得分:1)
解决方案imputeTS
库之一。
library(imputeTS)
# amount of NA
table(is.na(tsAirgap))
# Kalman smoothing imputation (one of the best)
imp_tsAirgap <- na.kalman(tsAirgap)
# Imputed time-series, no NAs
table(is.na(imp_tsAirgap))
答案 1 :(得分:1)
如果您想删除缺失的值及其对应的时间戳,还可以使用na.remove
包中的tseries
函数。