powered by
Generates a class indicator function from a given factor.
class.ind(cl)
factor or vector of classes for cases.
a matrix which is zero except for the column corresponding to the class.
Venables, W. N. and Ripley, B. D. (2002) Modern Applied Statistics with S. Fourth edition. Springer.
# NOT RUN { set.seed(99) a <- rbinom(20, 4, 0.5) table(a) b <- class.ind(a) str(b) t(cbind(a, b)) # }
Run the code above in your browser using DataLab