Description Usage Arguments Value Author(s) Examples
Plot trajectories of quantiles across arrays.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
dat |
Expression data. Rows are gene probes; columns are arrays. |
fileName |
File name of output figure. |
probs |
quantiles (any real values between the interval [0, 1]). |
plotOutPutFlag |
logical. |
requireLog2 |
logical. |
sortFlag |
logical. |
cex |
numerical value giving the amount by which plotting text
and symbols should be magnified relative to the default.
see |
ylim |
Range of y axis. |
xlab |
Label of x axis. |
ylab |
Label of y axis. |
lwd |
The line width, a _positive_ number, defaulting to '1'.
see |
main |
Charater string. main title of the plot. |
mar |
A numerical vector of the form 'c(bottom, left, top, right)'
which gives the number of lines of margin to be specified on
the four sides of the plot. The default is 'c(5, 4, 4, 2) +
0.1'. see |
las |
'las' numeric in 0,1,2,3; the style of axis labels. 0 - always parallel to the axis, 1 - always horizontal, 2 - always perpendicular to the axis, or 3 - always vertical. see |
cex.axis |
The magnification to be used for axis annotation relative to the current setting of cex. see |
The quantile matrix with row quantiles and column array.
Weiliang Qiu <stwxq@channing.harvard.edu>, Brandon Guo <brandowonder@gmail.com>, Christopher Anderson <christopheranderson84@gmail.com>, Barbara Klanderman <BKLANDERMAN@partners.org>, Vincent Carey <stvjc@channing.harvard.edu>, Benjamin Raby <rebar@channing.harvard.edu>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # generate simulated data set from conditional normal distribution
set.seed(1234567)
es.sim = genSimData.BayesNormal(nCpGs = 100,
nCases = 20, nControls = 20,
mu.n = -2, mu.c = 2,
d0 = 20, s02 = 0.64, s02.c = 1.5, testPara = "var",
outlierFlag = FALSE,
eps = 1.0e-3, applier = lapply)
print(es.sim)
png(file="qplot.png")
quantilePlot(
dat = exprs(es.sim),
probs = c(0, 0.05, 0.25, 0.5, 0.75, 0.95, 1),
plotOutPutFlag = FALSE,
requireLog2 = FALSE,
sortFlag = TRUE)
dev.off()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.