Generic function for filling NA values or specified positions.
Usage
na.fill(object, fill, …)
# S3 method for ts
na.fill(object, fill, ix, …)
# S3 method for zoo
na.fill(object, fill, ix, …)
# S3 method for default
na.fill(object, fill, ix, …)
Arguments
object
an object.
fill
a three component list or a vector that is coerced to a
list. Shorter objects are recycled. The three components
represent the fill value to the left of the data, within the
interior of the data and to the right of the data,
respectively. The value of any component may be the keyword
"extend" to indicate repetition of the
leftmost or rightmost non-NA value or linear interpolation in the interior.
NULL means that items are dropped rather than filled.
ix
logical. Should be the same length as the number of time points.
Indicates which time points not to fill. This defaults to the non-NA values.