Get fitted result from a k-means model
fitted.RdGet fitted result from a k-means model, similarly to R's fitted(). Note: A saved-loaded model does not support this method.
Usage
fitted(object, ...)
# S4 method for KMeansModel
fitted(object, method = c("centers", "classes"))Arguments
- object
- a fitted k-means model. 
- ...
- additional argument(s) passed to the method. 
- method
- type of fitted results, - "centers"for cluster centers or- "classes"for assigned classes.
Examples
if (FALSE) {
model <- spark.kmeans(trainingData, ~ ., 2)
fitted.model <- fitted(model)
showDF(fitted.model)
}