checkHca | R Documentation |
This function checks that the results of HCA is consistent. It prints info on key components.
checkHca(h, verb = TRUE, dbg = 0)
h |
hierarchical clustering (e.g. the result of
|
verb |
verbosity level |
dbg |
debug level |
A boolean value indicating whether h
is valid or not.
Tomas Sieger, Karel Fiser
hGood<-hclust(dist(1:3))
checkHca(hGood)
hBad<-list(merge=rbind(c(-1,-2),c(-1,2)),height=1:2,order=1:3,method='fake-method',dist.method='fake-dist.method')
checkHca(hBad)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.