powered by
classifier
projector
create classifier from a projector
# S3 method for projector classifier(x, colind = NULL, labels, new_data, knn = 1, ...)
a classifier object
A model object, such as a projector, that has been fit to a training dataset.
Optional vector of column indices used for prediction. If not provided, all columns will be used.
the labels associated with the rows of the projected data (see new_data)
new_data
reference data associated with labels and to be projected into subspace (required).
labels
the number of nearest neighbors to use when classifying a new point.
Additional arguments to be passed to the specific model implementation of classifier.
Other classifier: classifier.multiblock_biprojector()
classifier.multiblock_biprojector()
data(iris) X <- iris[,1:4] pcres <- pca(as.matrix(X),2) cfier <- classifier(pcres, labels=iris[,5], new_data=as.matrix(iris[,1:4])) p <- predict(cfier, as.matrix(iris[,1:4]))
Run the code above in your browser using DataLab