Description Usage Arguments Details Value Examples
Perform hierarchical clustering on normalized data
1 | clusterData(norm.data, dist.method = "euclidean", agg.method = "complete")
|
norm.data |
list of normalized expression data returned by
|
dist.method |
The distance measure to be used. This must be one of
"euclidean", "maximum", "manhattan", "canberra", "binary" or "minkowski".
See |
agg.method |
The agglomeration method to be used. This must be one of
"single", "complete", "average", "mcquitty", "ward.D", "ward.D2",
"centroid" or "median". |
This function performs hierarchical clustering on the rows of the
normalized expression data contained in norm.data.
rowdend1b dendrogram from hierarchical clustering of genes on
baseline samples normalized according to norm.method specified in
norm.data. NULL if y1b in norm.data is NULL.
rowdend2b dendrogram from hierarchical clustering of genes on
baseline samples normalized to controls according to norm.method
specified in norm.data. NULL if y2b in norm.data is
NULL.
rowdend1 dendrogram from hierarchical clustering of genes on
all samples normalized according to norm.method specified in
norm.data. NULL if y1 in norm.data is NULL.
rowdend2 dendrogram from hierarchical clustering of genes on
all samples normalized to controls according to norm.method
specified in norm.data. NULL if y2 in norm.data is
NULL.
rowdend3 dendrogram from hierarchical clustering of genes on
all samples normalized to their baseline. NULL if y3 in
norm.data is NULL.
norm.method string describing the normalization method used in
normalizeData
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # Example data
data(tb.expr)
data(tb.design)
# Use first 100 probes to demonstrate
dat <- tb.expr[1:100,]
# Create desInfo object
meta.data <- metaData(y = dat, design = tb.design, data.type = "microarray",
columnname = "columnname", long = TRUE, sample.id = "sample_id",
subject.id = "monkey_id", time.var = "timepoint",
baseline.var = "timepoint", baseline.val = 0)
# Normalize data
data.norm <- normalizeData(meta = meta.data)
# Cluster data
dendros <- clusterData(norm.data = data.norm)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.