Revision 603e991f22931dee89245568fb7ae42ec7c13bf2 authored by Matthias Templ on 19 February 2019, 12:50:03 UTC, committed by cran-robot on 19 February 2019, 12:50:03 UTC
1 parent 744e252
Raw File
clustCoDa_qmode.Rd
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/clustCoDa_qmode.R
\name{clustCoDa_qmode}
\alias{clustCoDa_qmode}
\alias{plot.clustCoDa_qmode}
\title{Q-mode cluster analysis for compositional parts}
\usage{
clustCoDa_qmode(x, method = "ward.D2")
}
\arguments{
\item{x}{compositional data represented as a data.frame}

\item{method}{hclust method}
}
\value{
a hclust object
}
\description{
Clustering using the variation matrix of compositional parts
}
\examples{
data(expenditures) 
x <- expenditures
cl <- clustCoDa_qmode(x)
plot(cl)
cl2 <- clustCoDa_qmode(x, method = "single")
plot(cl2)
}
\references{
Filzmoser, P., Hron, K. Templ, M. (2018)
\emph{Applied Compositional Data Analysis}, 
Springer, Cham.
}
\author{
Matthias Templ (accessing the basic features of hclust that 
are all written by other authors)
}
\keyword{multivariate}
back to top