Description Usage Arguments Value Methods (by class) Examples
Reads data from BiclusterStrategy@factors
to create a heatmap of
bicluster membership across all samples or features.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | factorHeatmap(bce, bcs, type, ordering = "input", ...)
## S4 method for signature 'BiclusterExperiment,character'
factorHeatmap(bce, bcs, type,
ordering = "input", ...)
## S4 method for signature 'BiclusterExperiment,numeric'
factorHeatmap(bce, bcs, type,
ordering = "input", ...)
## S4 method for signature 'BiclusterExperiment,BiclusterStrategy'
factorHeatmap(bce, bcs,
type = c("feature", "sample"), ordering = c("input", "distance",
"cluster"), phenoLabels = c(), biclustLabels = c(),
colNames = FALSE)
|
bce |
A BiclusterExperiment object |
bcs |
The name or index of a BiclusterStrategy contained by |
type |
either "feature" for feature-bicluster membership or "sample" for sample-bicluster membership |
ordering |
The default |
... |
Optional arguments |
phenoLabels |
an optional character vector of labels to annotate. If
|
biclustLabels |
an optional character vector of labels to annotate.
Should be elements of |
colNames |
if |
a pheatmap-class
object
bce = BiclusterExperiment,bcs = character
: Plots a matrix factor from the
BiclusterStrategy-class
object named bcs
in
bce@strategies
.
bce = BiclusterExperiment,bcs = numeric
: Plots a matrix factor from the
BiclusterStrategy-class
object at the index specified by
bcs
bce = BiclusterExperiment,bcs = BiclusterStrategy
: Plots a matrix factor from bcs
.
1 2 3 4 | bce <- BiclusterExperiment(yeast_benchmark[[1]])
bce <- addStrat(bce, k = 2, method = "als-nmf")
bcs <- getStrat(bce, 1)
factorHeatmap(bce, bcs, type = "sample")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.