DescTools (version 0.99.38)

LOCF: Last Observation Carried Forward

Description

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)

Arguments

x

a vector, a data.frame or a matrix containing NAs.

Value

a vector with the same dimension as x.

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.

Examples

Run this code
# NOT RUN {
d.frm <- data.frame(
  tag=rep(c("mo", "di", "mi", "do", "fr", "sa", "so"), 4)
, val=rep(c(runif(5), rep(NA,2)), 4) )

d.frm$locf <- LOCF( d.frm$val )
d.frm
# }

Run the code above in your browser using DataCamp Workspace