MetaClustering: MetaClustering

Description Usage Arguments Value See Also Examples

View source: R/4_metaClustering.R

Description

Cluster data with automatic number of cluster determination for several algorithms

Usage

1
MetaClustering(data, method, max = 20, ...)

Arguments

data

Matrix containing the data to cluster

method

Clustering method to use

max

Maximum number of clusters to try out

...

Extra parameters to pass along

Value

Numeric array indicating cluster for each datapoint

See Also

metaClustering_consensus

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
   # Read from file, build self-organizing map and minimal spanning tree
   fileName <- system.file("extdata", "68983.fcs", package="FlowSOM")
   flowSOM.res <- ReadInput(fileName, compensate=TRUE,transform=TRUE,
                            scale=TRUE)
   flowSOM.res <- BuildSOM(flowSOM.res,colsToUse=c(9,12,14:18))
   flowSOM.res <- BuildMST(flowSOM.res)
   
   # Apply metaclustering
   metacl <- MetaClustering(flowSOM.res$map$codes,
                            "metaClustering_consensus",
                            max=10)
   
   # Get metaclustering per cell
   flowSOM.clustering <- metacl[flowSOM.res$map$mapping[,1]]    

FlowSOM documentation built on Nov. 8, 2020, 6:40 p.m.