tsEvaFillSeries: Fill missing values in a time series using a moving average approach.
Description
This function takes a vector of timestamps and a corresponding series with missing values,
and fills the missing values by taking the average of the surrounding values.
Usage
tsEvaFillSeries(timeStamps, series)
Value
A vector with missing values filled using a moving average approach.
Arguments
timeStamps
A vector of timestamps.
series
A vector representing the time series with missing values.