Nothing
#' @title Silhouette profile
#' @description Function to compute the silhouette profile for the Nclus cluster of the SOM neurons
#' @author Stefano Motta \email{stefano.motta@unimib.it}
#' @param SOM the SOM object to cluster
#' @param Nclus the cluster number on which the silhouette profile will be computed
#' @param dist_clust the metric for the distance calculation
#' @param clust_method the method for the clustering (passed to the hclust function
#' @return A vector of silhouette profile computed with the cluster package
#' @export
#' @examples
#' #Read example SOM data
#' som_model <- readRDS(system.file("extdata", "SOM_HIFa.rds", package = "SOMMD"))
#' #Compute the silhouette profile
#' sil_pro <- silhouette.profile(som_model, Nclus=5, clust_method="complete")
#'
silhouette.profile <- function(SOM, Nclus, dist_clust="euclidean", clust_method="complete"){
#check whether SOM is a kohonen object
if(inherits(SOM, "kohonen")==FALSE){
stop("SOM must be a kohonen object")
}
#check that Nclus is lower than the number of neurons
if(Nclus > nrow(SOM$grid$pts) ){
stop("The number of cluster cannot exceed the number of SOM neurons")
}
#Do clustering
SOM.hc <- stats::cutree(stats::hclust(stats::dist(SOM$codes[[1]], method=dist_clust), method=clust_method), Nclus)
#Perform silhouette profile trhough "cluster" library
sil = cluster::silhouette(SOM.hc, stats::dist(SOM$codes[[1]]))
return(sil)
}
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.