Numeric Vector (vector) or Time Series (ts) object in which missing values shall be replaced
Value
Vector (vector) or Time Series (ts) object (dependent on given input at parameter x)
Details
Removes all missing values from a time series. This shortens the time series by
the number of missing values in the series. Should be handled with care, because this can affect
the seasonality of the time series. Seasonal patterns might be destroyed and/or frequency parameter of the
ts object might be no more correct.
#Example 1: Remove all NAs#Create Time series with missing valuesx <- ts(c(2,3,NA,5,6,NA,7,8))
#Remove all NAsna.remove(x)
#Example 2: Remove all NAs in tsAirgapna.remove(tsAirgap)