Learn R Programming

VDA (version 1.3)

print.vda.le: Print a vda.le object

Description

The default print method for a vda.le object.

Usage

"print"(x, ...)

Arguments

x
Object of class 'vda.le', usually the result of a call to vda.le.
...
Not used.

Details

Prints out the predicted classes for given training data found using Vertex Discriminant Analysis. summary.vda.le provides more detailed information about the VDA object x.

References

Lange, K. and Wu, T.T. (2008) An MM Algorithm for Multicategory Vertex Discriminant Analysis. Journal of Computational and Graphical Statistics, Volume 17, No 3, 527-544.

See Also

vda.le, summary.vda.le

Examples

Run this code
# load zoo data
# column 1 is name, columns 2:17 are features, column 18 is class
data(zoo)

# feature matrix without intercept
x <- zoo[,2:17]

# class vector
y <- zoo[,18]

#run VDA
out <- vda.le(x, y)

print(out)

Run the code above in your browser using DataLab