Description Usage Arguments Details Value Author(s) See Also Examples
View source: R/plot.SpliceExprSet.R
Plot a object of class SpliceExprSet
1 2 3 4 5 6 |
x |
a |
probes.opt |
optional parameters to be passed for the plotting of
the |
expr.opt |
optional parameters to be passed for the plotting of
the |
fig.xratio |
ratio between the left and right parts of the plot |
fig.yratio |
ratio between the upper and lower parts of the plot |
probepos.yscale |
enforce ‘y’ positions for the probes. |
ylim |
range for the y-axis |
... |
optional parameters to be passed to the function |
The argument probepos.yscale
can be used to scale probes
according to their position on the reference sequence, as shown
in the last example below.
function used for its side-effect(s).
laurent
1 2 3 4 5 6 7 8 9 10 11 12 13 | data(spliceset)
levels(pData(spliceset@eset)$Material)
## Liver, Mix and SNB19
cl.mat <- c("red", "yellow","blue")[as.integer(pData(spliceset@eset)$Material)]
## colored in red, yellow and blue respectively
plot(spliceset, expr.opt = list(col = cl.mat, log = "x"))
## sort
spliceset <- sort.SpliceExprSet(spliceset)
begin.pos <- spliceset@probes@pos[, 1]
plot(spliceset, expr.opt = list(col=cl.mat), probepos.yscale = begin.pos)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.