plotHeatmap {TimeSeriesExperiment} | R Documentation |
Generates a heatmap of expression data.
plotHeatmap(object, num.feat = 200, scale = TRUE, feat_desc = "feature", sample_desc = "sample")
object |
A |
num.feat |
Number of top most features to use. |
scale |
Whether to scale the data (by features) before plotting. |
feat_desc |
One of the column names from |
sample_desc |
ne of the column names from |
... |
other parameters ggplot. |
Returns a ggplot2
objet.
data("endoderm_small") endoderm_small <- normalizeData(endoderm_small) ## Not run: plotHeatmap(endoderm_small) ## End(Not run)