Generic function for replacing each NA with the most recent
non-NA prior to it.
Usage
na.locf(object, na.rm = TRUE, ...)
## S3 method for class 'default':
na.locf(object, na.rm = TRUE, rev = FALSE, \dots)
Arguments
object
an object.
na.rm
logical. Should leading NAs be removed?
rev
logical. Should the observations be reversed before applying LOCF?
This corresponds to NOCB (next observation carried backward).
...
further arguments passed to methods.
Value
An object in which each NA in the input object is replaced
by the most recent non-NA prior to it. If there are no earlier non-NAs then
the NA is omitted (if na.rm = TRUE) or it is not replaced (if na.rm = FALSE).