clusterDataDend: Create a hclust object from the distance matrix

Description Usage Arguments Value Author(s) See Also Examples

View source: R/clusterProfile.R

Description

Create a hclust object from the distance matrix

Usage

1
clusterDataDend(distanceMatrix = NULL, clusterMethod = "complete")

Arguments

distanceMatrix

calculated distance matrix (see ?getDistanceMatrix)

clusterMethod

clustering method ("single", "complete", "average" for UPGMA, "mcquitty" for WPGMA, "median" for WPGMC, or "centroid" for UPGMC). Default = "complete".

Value

An object class hclust generated based on input distance matrix and a selected clustering method.

Author(s)

Vinh Tran tran@bio.uni-frankfurt.de

See Also

getDataClustering, getDistanceMatrix, hclust

Examples

1
2
3
4
5
6
7
8
9
data("finalProcessedProfile", package="PhyloProfile")
data <- finalProcessedProfile
profileType <- "binary"
profiles <- getDataClustering(
    data, profileType, var1AggregateBy, var2AggregateBy)
distMethod <- "mutualInformation"
distanceMatrix <- getDistanceMatrix(profiles, distMethod)
clusterMethod <- "complete"
clusterDataDend(distanceMatrix, clusterMethod)

PhyloProfile documentation built on March 27, 2021, 6:01 p.m.