sota(data, maxCycles, maxEpochs = 1000, distance = "euclidean", wcell = 0.01,
pcell = 0.005, scell = 0.001, delta = 1e-04, neighb.level = 0,
maxDiversity = 0.9, unrest.growth = TRUE, ...)sota is maxCycles+1 unless unrest.growth is set to FALSE and the
maxDiversity criteria is satisfmaxEpochs is set to 1000.maxCycles iterations regardless of
whether the maxDiversity criteria is satisfied or not and maxCycles+1 clusters will be produced; if FALSE
then the algorithm unrest.growth parameter to TRUE. Growth of the
tree can be stopped based on other criteria, like the allowed maximum Diversity within the cluster and so on.
Further details regarding the inner workings of the algorithm can be found in the paper listed in the Reference
section.plot.sota, print.sotadata(mouse)
express <- mouse[,c("M1","M2","M3","NC1","NC2","NC3")]
rownames(express) <- mouse$ID
sotaCl <- sota(as.matrix(express), 4)
names(sotaCl)
sotaCl
plot(sotaCl)
plot(sotaCl, cl=2)Run the code above in your browser using DataLab