SparkR (version 2.4.6)

fitted: Get fitted result from a k-means model

Description

Get 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.

Value

fitted returns a SparkDataFrame containing fitted values.

Examples

Run this code
# NOT RUN {
model <- spark.kmeans(trainingData, ~ ., 2)
fitted.model <- fitted(model)
showDF(fitted.model)
# }

Run the code above in your browser using DataCamp Workspace