Learn R Programming

msu (version 0.0.1)

new_variable: Create a uniform categorical random variable.

Description

The sampling for the items of the created variable is done with replacement.

Usage

new_variable(elements, n)

Arguments

elements

A vector with the elements from which to choose to create the variable.

n

An integer indicating the number of items to be contained in the variable.

Value

A factor that represents a uniform categorical variable.

Examples

Run this code
# NOT RUN {
new_variable(c(0,1), 4)
new_variable(c('a','b','c'), 10)
# }

Run the code above in your browser using DataLab