fill_nocb: Fill with "Next observation carried backwards"

Description Usage Arguments Value Examples

View source: R/fill.R

Description

Fill with "Next observation carried backwards"

Usage

1
fill_nocb(body, idx, fail = NA)

Arguments

body

[numeric vector]

The body of the vector.

idx

[integer vector]

the index to replace with.

fail

[numeric(1) or numeric vector: fill]

In case it fails to fill some values.

Value

Returns a vector with the same class and attributes as the input vector.

Examples

1
2
3
4
5
6
7
8
9
x <- c(5,3,2,2,5)
leadx(x, n = 2, fill = fill_locf)

xlen <- length(x)
n <- 2
n <- pmin(n, xlen)
idx <- (xlen - n + 1):xlen
body <- x[-seq_len(n)]
fill_locf(body, idx, NA)

transx documentation built on Nov. 27, 2020, 5:08 p.m.