dummy | R Documentation |
Build a table of dummy variables from a qualitative variable. A binary variable (i.e. 0/1) is created for each level of the qualitative variable.
dummy(Y)
Y |
A vector representing a qualitative variable. |
A matrix of dummy variables (i.e. binary variables), each representing a given level of the qualitative variable.
y <- c(1, 1, 3, 2, 3)
dummy(y)
y <- c("B", "a", "B")
dummy(y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.