predict.nearestCentroid {lolR} | R Documentation |
A function that predicts the class of points based on the nearest centroid
## S3 method for class 'nearestCentroid'
predict(object, X, ...)
object |
An object of class
|
X |
|
... |
optional args. |
Yhat [n]
the predicted class of each of the n
data point in X
.
For more details see the help vignette:
vignette("centroid", package = "lolR")
Eric Bridgeford
library(lolR)
data <- lol.sims.rtrunk(n=200, d=30) # 200 examples of 30 dimensions
X <- data$X; Y <- data$Y
model <- lol.classify.nearestCentroid(X, Y)
Yh <- predict(model, X)