https://github.com/cran/robCompositions
Raw File
Tip revision: d761b2fedaa3133904cf8bbd87ad4e6fcfdf79ac authored by Matthias Templ on 15 April 2019, 16:22:43 UTC
version 2.1.0
Tip revision: d761b2f
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