Learn R Programming

fabricatr (version 1.0.2)

recycle: Expands data to a given length through recycling.

Description

This function is a helper function designed call rep_len to expand the length of a data vector, but which can dynamically retrieve N from the surrounding level call for use in fabricatr.

Usage

recycle(x, .N = NULL)

Value

A vector of data padded to length N

Arguments

x

Data to recycle into length N

.N

the length to recycle the data to, typically provided implicitly by a or fabricate call wrapped around the function call.

Examples

Run this code

fabricate(
  N = 15,
  month = recycle(month.abb)
)

Run the code above in your browser using DataLab