In longitudinal studies it's common that individuals drop out before all responses can be obtained. Measurements obtained before the individual dropped out can be used to impute the unknown measurement(s). The last observation carried forward method is one way to impute values for the missing observations. For the last observation carried forward (LOCF) approach the missing values are replaced by the last observed value of
that variable for each individual regardless of when it occurred.
LOCF() replaces NAs with the most recent non-NA prior to it.
Usage
LOCF(x)
# S3 method for default
LOCF(x)
# S3 method for data.frame
LOCF(x)
# S3 method for matrix
LOCF(x)
Value
a vector with the same dimension as x.
Arguments
x
a vector, a data.frame or a matrix containing NAs.
Author
Daniel Wollschlaeger <dwoll@psychologie.uni-kiel.de>
Details
The function will replace all NAs found in a vector with the last earlier value not being NA.
In data.frames each column will be treated as described.
It should be noted, that the last observation carried forward approach may result in biased estimates and may underestimate
the variability.
See Also
See also the package Hmisc for less coarse imputation functions.