Rev 5900 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{coef.hclust}\alias{coefHier}\alias{coef.hclust}\alias{coef.twins}\title{Agglomerative / Divisive Coefficient for 'hclust' Objects}\description{Computes the \dQuote{agglomerative coefficient} (aka \dQuote{divisivecoefficient} for \code{\link{diana}}), measuring theclustering structure of the dataset.For each observation i, denote by \eqn{m(i)} its dissimilarity to thefirst cluster it is merged with, divided by the dissimilarity of themerger in the final step of the algorithm. The agglomerativecoefficient is the average of all \eqn{1 - m(i)}. It can also be seenas the average width (or the percentage filled) of the banner plot.\code{coefHier()} directly interfaces to the underlying C code, and\dQuote{proves} that \emph{only} \code{object$heights} is needed tocompute the coefficient.Because it grows with the number of observations, this measure should notbe used to compare datasets of very different sizes.}\usage{coefHier(object)coef.hclust(object, \dots)%-- we export this, on purpose\method{coef}{hclust}(object, \dots)\method{coef}{twins}(object, \dots)}\arguments{\item{object}{an object of class \code{"hclust"} or \code{"twins"},i.e., typically the result of\code{\link{hclust}(.)},\code{\link{agnes}(.)}, or \code{\link{diana}(.)}.Since \code{coef.hclust} only uses \code{object$heights}, and\code{object$merge}, \code{object} can be any list-like object withappropriate \code{merge} and \code{heights} components.For \code{coefHier}, even only \code{object$heights} is needed.}\item{\dots}{currently unused potential further arguments}}\value{a number specifying the \emph{agglomerative} (or \emph{divisive} for\code{diana} objects) coefficient as defined by Kaufman and Rousseeuw,see \code{\link{agnes.object} $ ac} or \code{\link{diana.object} $ dc}.}\examples{data(agriculture)aa <- agnes(agriculture)coef(aa) # really just extracts aa$accoef(as.hclust(aa))# recomputescoefHier(aa) # ditto\dontshow{stopifnot(all.equal(coef(aa), coefHier(aa)))d.a <- dist(agriculture, "manhattan")for (m in c("average", "single", "complete"))stopifnot(all.equal(coef(hclust(d.a, method=m)),coef(agnes (d.a, method=m)), tol=1e-13))}}\keyword{cluster}