Skip to contents

This function pads a vector at the tail with NA values, to achieve a specified length target.

Usage

pad_with_nas(vec, target_length)

Arguments

vec

The input vector to be padded.

target_length

The desired length of the padded vector.

Value

A vector of length target_length where its first length(vec)

elements are identical to vec. The remain tail elements are NA.

Examples

# Pad a vector with NA values to reach a target length of 10
pad_with_nas(c(1, 2, 3), 10)
#>  [1]  1  2  3 NA NA NA NA NA NA NA