Nothing
## **************************************************************************
##
## (c) 2018-2024 Guillaume Guénard
## Department de sciences biologiques,
## Université de Montréal
## Montreal, QC, Canada
##
## **************************************************************************
##
#' Class For Constrained Hiereachical Clustering
#'
#' Files belonging to this class hold information about the constrained
#' agglomerative clustering and allows one to display results graphically.
#'
#' @docType class
#'
#' @name constr.hclust-class
#'
#' @format A file belonging to this class is a list with elements:
#' \describe{
#' \item{merge}{A (n-1) by 2 matrix. Row i of file \code{"merge"} describes
#' the merging of clusters at step i of the clustering. If an element j in
#' the row is negative, it means that observation -j was merged at this
#' stage. If j is positive, it means that the merge was with the cluster
#' formed at the (earlier) stage j of the algorithm. Thus negative entries
#' in file \code{"merge"} indicate agglomerations of singletons, and
#' positive entries indicate agglomerations of non-singletons.}
#'
#' \item{height}{A set of (n-1) non-decreasing real values. The clustering
#' height is the value of the criterion associated with the clustering
#' method for the particular agglomeration.}
#'
#' \item{order}{A vector giving the permutation of the original observations
#' suitable for plotting, in the sense that a cluster plot using this ordering
#' and matrix merge will not have crossing branches.}
#'
#' \item{labels}{Labels for the clustered objects.}
#'
#' \item{method}{The agglomerative clustering method that has been used.}
#'
#' \item{call}{The call that produced the result.}
#'
#' \item{dist.method}{The distance that has been used to create dissimilarity
#' matrix \code{"d"} (only returned if the dissimilarity matrix object has a
#' "method" attribute attached to it).}
#'
#' \item{links}{A copy of the list of edges (if a matrix of edges was provided
#' to the function).}
#'
#' \item{coords}{A copy of the coordinates (if coordinates were provided to the
#' function).} }
#'
#' @details The class inherits from \code{\link{hclust}-class} and describes the
#' tree produced by the constrained clustering procedure.
#'
#' All class members except \code{links} and \code{coords} are identical to
#' those in \code{\link{hclust}-class}. several methods designed to process
#' these objects are expected to also work with \code{constr.hclust-class}
#' objects.
#'
#' @seealso \code{\link{hclust}-class}
#'
NULL
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.