Description Usage Arguments Value Author(s) Examples
This function visualises the clusters
produced by kmeans2
.
1 | kmeans2.plot(eset,kl,mfrow=c(1,1))
|
eset |
object of the class“ExpressionSet”. |
kl |
list produced by |
mfrow |
determines splitting of graphic window. |
The function displays the temporal profiles of clusters detected by k-means.
Matthias E. Futschik (http://itb.biologie.hu-berlin.de/~futschik)
1 2 3 4 5 6 7 8 9 10 11 | if (interactive()){
data(yeast)
# Data pre-processing
yeastF <- filter.NA(yeast)
yeastF <- fill.NA(yeastF)
yeastF <- standardise(yeastF)
# K-means clustering and visualisation
kl <- kmeans2(yeastF,k=20)
kmeans2.plot(yeastF,kl=kl,mfrow=c(2,2))
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.