Learn R Programming

VDA (version 1.01)

print.VDA_R: Print a VDA_R object

Description

The default print method for a VDA_R object.

Usage

## S3 method for class 'VDA_R':
print(x, ...)

Arguments

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

Details

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

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_R, summary.VDA_R

Examples

Run this code
# load data
data(zoo)

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

# class vector
y <- zoo[,18]

#run VDA
out <- VDA_R(x, y)

print(out)

Run the code above in your browser using DataLab