Translated linkage()

This commit is contained in:
Waldir Leoncio 2020-07-14 14:33:20 +02:00
parent 9954f12f6f
commit 7a7945f6bb
2 changed files with 98 additions and 0 deletions

22
man/linkage.Rd Normal file
View file

@ -0,0 +1,22 @@
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/linkage.R
\name{linkage}
\alias{linkage}
\title{Linkage}
\usage{
linkage(Y, method)
}
\arguments{
\item{Y}{data}
\item{method}{either 'si', 'av', 'co' 'ce' or 'wa'}
}
\description{
Create hierarchical cluster tree.
}
\details{
Z = LINKAGE(Y) creates a hierarchical cluster tree, using the single
linkage algorithm. The input Y is a distance matrix such as is generated by
PDIST. Y may also be a more general dissimilarity matrix conforming to the
output format of PDIST.
}