Main function for PART:

part(X, Kmax = 10, minSize = 8, minDist = NULL, cl.lab = NULL, ...)

Arguments

X

matrix of values

Kmax

maximum number of clusters

minSize

minimum cluster size

minDist

Minimum distance between clusters

cl.lab

cluster labels

...

Extra parameters to be given

Value

list of identified clusters

Examples

example_dta<-create_example_data_for_R()
X=as.matrix(example_dta$counts)
PART_results<-part(X,B=5,minSize = 2)