new_variable {msu} | R Documentation |
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
new_variable(c(0,1), 4)
new_variable(c('a','b','c'), 10)
[Package msu version 0.0.1 Index]