Learn R Programming

BART (version 2.9.9)

class.ind: Generates Class Indicator Matrix from a Factor

Description

Generates a class indicator function from a given factor.

Usage

class.ind(cl)

Value

a matrix which is zero except for the column corresponding to the class.

Arguments

cl

factor or vector of classes for cases.

References

Venables, W. N. and Ripley, B. D. (2002) Modern Applied Statistics with S. Fourth edition. Springer.

Examples

Run this code

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