Nothing
#' @export
model_parameters.pam <- function(model, data = NULL, clusters = NULL, ...) {
if (is.null(data)) data <- as.data.frame(model$data)
if (is.null(clusters)) clusters <- model$clustering
params <- .cluster_centers_params(data, clusters, ...)
attr(params, "model") <- model
attr(params, "type") <- "pam"
attr(params, "title") <- "K-Medoids"
params
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.