12

我有一个缺少日期(不缺少值)的气候时间序列。例如:

n = 15
full.dates = seq(Sys.Date(), by = 'day', length = n)
serie.dates = full.dates[c(1:10, 12, 15)] # missing 11, 13, 14
y = rnorm(n)

require(zoo)    
serie = zoo(y, serie.dates)

给定“full.dates”向量,我如何“填充”(使用插值)这些缺失点?谢谢!

4

1 回答 1

18

与包含所有您想要的日期的“空”对象合并,然后使用na.approx(或na.spline等)填充缺失值。

x <- merge(serie, zoo(,seq(start(serie),end(serie),by="day")), all=TRUE)
x <- na.approx(x)
于 2013-02-27T14:44:38.867 回答