Description Usage Arguments Value Methods (by class) Examples
Plot cluster membership values and thresholding
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | plotThreshold(bce, bcs, type, bicluster, ...)
## S4 method for signature 'BiclusterExperiment,character'
plotThreshold(bce, bcs, type,
bicluster, ...)
## S4 method for signature 'BiclusterExperiment,numeric'
plotThreshold(bce, bcs, type,
bicluster, ...)
## S4 method for signature 'BiclusterExperiment,BiclusterStrategy'
plotThreshold(bce, bcs,
type = c("feature", "sample"), bicluster = "Bicluster.1",
thresholds = NULL, ordering = c("input", "distance", "cluster"),
xlabs = FALSE)
|
bce |
A BiclusterExperiment |
bcs |
A BiclusterStrategy object, or the name or index of one of the
BiclusterStrategy objects in |
type |
Specifies whether to show thresholding for features or samples |
bicluster |
The character name of a bicluster in |
... |
Optional arguments |
thresholds |
If not NULL, must be a numeric vector of theshold(s) to
replace the algorithmically chosen thresholds contained in |
ordering |
Specifies the ordering of features or samples along the
x-axis. If "input", the input ordering is used. If "distance", ordering is
based on Euclidean distance calculated from |
xlabs |
Should sample or feature labels be displayed? |
Invisibly returns NULL
bce = BiclusterExperiment,bcs = character
: Plots thresholding performed in the
BiclusterStrategy-class
object named bcs
in
bce@strategies
.
bce = BiclusterExperiment,bcs = numeric
: Plots thresholding performed in the
BiclusterStrategy-class
object at the index specified by
bcs
bce = BiclusterExperiment,bcs = BiclusterStrategy
: Plots thresholding performed in bcs
.
1 2 3 4 5 | bce <- BiclusterExperiment(yeast_benchmark[[1]])
bce <- addStrat(bce, k = 2, method = "als-nmf")
bcs <- getStrat(bce, 1)
bcNames(bcs)
plotThreshold(bce, bcs, type = "sample", bicluster = "Bicluster.1")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.