Description Usage Arguments Details Value Author(s) See Also Examples
This is a function to do k-means clustering
analysis for objects of classes maiges
,
maigesRaw
and maigesANOVA
. Use the
function kmeansMde
for objects of class
maigesDEcluster
.
1 2 3 4 |
data |
object of class |
group |
character string giving the type of grouping: by rows 'R' or columns 'C' (default). |
distance |
char string giving the type of distance to use. Here we
use the function |
method |
char string specifying the linkage method for the hierarchical cluster. Possible values are 'ward', 'single', 'complete' (default), 'average', 'mcquitty', 'median' or 'centroid' |
sampleT |
list with 2 vectors. The first one specify the first letter of different sample types to be coloured by distinct colours, that are given in the second vector. If NULL (default) no colour is used. |
doHier |
logical indicating if you want to do the hierarchical branch in the opposite dimension of clustering. Defaults to FALSE. |
sLabelID |
character string specifying the sample label ID to be used to label the samples. |
gLabelID |
character string specifying the gene label ID to be used to label the genes. |
rmGenes |
char list specifying genes to be removed. |
rmSamples |
char list specifying samples to be removed. |
rmBad |
logical indicating to remove or not bad spots (slot
|
geneGrp |
numerical or character specifying the gene group to be
clustered. This is given by the columns of the slot |
path |
numerical or character specifying the gene network to be
clustered. This is given by the items of the slot |
... |
additional parameters for |
This function implements the k-means clustering method for
objects of microarray data defined in this package. The method uses
the function Kmeans
from package amap.
This function display the heatmaps and return invisibly a list
resulted from the function Kmeans
.
Gustavo H. Esteves <gesteves@vision.ime.usp.br>
Kmeans
from package
amap. somM
and hierM
for displaying SOM and
hierarchical clusters, respectively.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ## Loading the dataset
data(gastro)
## Doing a K-means cluster with 2 groups using all genes, for maigesRaw class
kmeansM(gastro.raw, rmGenes=c("BLANK","DAP","LYS","PHE", "Q_GENE","THR","TRP"),
sLabelID="Sample", gLabelID="Name", centers=2)
## The same as above, but for maigesNorm class
kmeansM(gastro.norm, rmGenes=c("BLANK","DAP","LYS","PHE", "Q_GENE","THR","TRP"),
sLabelID="Sample", gLabelID="Name", centers=2)
## Another example with 3 groups
kmeansM(gastro.norm, rmGenes=c("BLANK","DAP","LYS","PHE", "Q_GENE","THR","TRP"),
sLabelID="Sample", gLabelID="Name", centers=3)
## If you want to use euclidean distance to group genes (or spots) with
## 4 groups
kmeansM(gastro.summ, rmGenes=c("BLANK","DAP","LYS","PHE", "Q_GENE","THR","TRP"),
sLabelID="Sample", gLabelID="Name", centers=4, group="R", distance="euclidean")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.