Learn R Programming

ETLUtils (version 1.5)

naLOCFPlusone: Performs NA replacement by last observation carried forward but adds 1 to the last observation carried forward.

Description

Performs NA replacement by last observation carried forward but adds 1 to the last observation carried forward.

Usage

naLOCFPlusone(x)

Arguments

x

a numeric vector

Value

a vector where NA's are replaced with the LOCF + 1

See Also

na.locf

Examples

Run this code
# NOT RUN {
require(zoo)
x <- c(2,NA,NA,4,5,2,NA)
naLOCFPlusone(x)
# }

Run the code above in your browser using DataLab