Description Usage Arguments Details Value Note Author(s) References See Also Examples
This function plots corresponding at the top (CAT) curves
using overlap proportions computed by computeCat
.
A number of arguments can be used for a pretty display, and for
annotating the plot, and adding the legend
1 2 3 4 5 6 |
catData |
The ouput list obtained from |
whichToPlot |
numeric vector. Indexes corresponding
to the elements of |
preComputedPI |
numeric matrix. Probability intervals
computed using the |
size |
numeric. The number of top ranking features to be displayed in the plot. |
main |
character. The title of the plot, if not provided,
|
minYlim |
numeric. The lower numeric value of the y axis, to be displayed in the plot. |
maxYlim |
numeric. The upper numeric value of the y axis, to be displayed in the plot. |
col |
character or numeric. Vector specifying colors
for CAT curves plotting. |
pch |
graphical parameter. |
lty |
graphical parameter. The type of line for the plot.
If not provided generated by default, recycled id needed.
See |
cex |
numeric. Standard graphical parameter useful
for controlling axes and title annotation size.
See |
lwd |
numeric. Standard graphical parameter useful
for controlling line size. See |
spacePts |
numeric. Specifies the interval to be used for adding point labels on the CAT curves (evenly spaced along the x axis dimention). |
cexPts |
numeric. Graphical parameter useful for controlling points size used for annotating CAT-plot lines. |
legend |
logical. Wheter a legend should be added to the plot. |
legendText |
character. A vector used for legend creation.
|
where |
character. The position of the plot where the legend
will be created; |
legCex |
numeric. Graphical parameter setting the font size for the legend text. |
plotLayout |
A layout matrix to arrange the plot
and the legend. For further details see |
... |
Other graphical parameters, currently passed
only to |
This function uses outputs from computeCat
and calcHypPI
to plot the CAT curves and
add grey shades corresponding to probability intervals.
The default plot uses a pre-specified layout
with separate areas for the plot and the legend.
If not specified by the user, different points, colors and line
types are used for the different CAT curves.
If the CAT curves where computed using equal ranks
(e.g. "equalRank" was passed to the method
argument of the computeCat
function),
the user has the option of adding probability intervals
to the plot. Such intervals must be pre-computed
using the calcHypPI
function.
Produces an annotated CAT plot.
In order to make the "best looking" plot for your needs you must play around with graphical parameters
Luigi Marchionni marchion@jhu.edu
Irizarry, R. A.; Warren, D.; Spencer, F.; Kim, I. F.; Biswal, S.; Frank, B. C.; Gabrielson, E.; Garcia, J. G. N.; Geoghegan, J.; Germino, G.; Griffin, C.; Hilmer, S. C.; Hoffman, E.; Jedlicka, A. E.; Kawasaki, E.; Martinez-Murillo, F.; Morsberger, L.; Lee, H.; Petersen, D.; Quackenbush, J.; Scott, A.; Wilson, M.; Yang, Y.; Ye, S. Q. and Yu, W. Multiple-laboratory comparison of microarray platforms. Nat Methods, 2005, 2, 345-350
Ross, A. E.; Marchionni, L.; Vuica-Ross, M.; Cheadle, C.; Fan, J.; Berman, D. M.; and Schaeffer E. M. Gene Expression Pathways of High Grade Localized Prostate Cancer. Prostate, 2011, 71, 1568-1578
Benassi, B.; Flavin, R.; Marchionni, L.; Zanata, S.; Pan, Y.; Chowdhury, D.; Marani, M.; Strano, S.; Muti, P.; and Blandino, G. c-Myc is activated via USP2a-mediated modulation of microRNAs in prostate cancer. Cancer Discovery, 2012, March, 2, 236-247
See computeCat
, calcHypPI
,
rainbow
, par
,
legend
, and layout
.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | ###load data
data(matchBoxExpression)
###the column name for the identifiers and the ranking statistics
idCol <- "SYMBOL"
byCol <- "t"
####filter the redundant features using SYMBOL and t-statistics
matchBoxExpression <- lapply(matchBoxExpression, filterRedundant, idCol=idCol, byCol=byCol)
###select and merge into a matrix
mat <- mergeData(matchBoxExpression, idCol=idCol, byCol=byCol)
###COMPUTE CAT
cpH2L <- computeCat(mat, idCol=1, size=round(nrow(mat)/1),
decreasing=TRUE, method="equalRank")
###CATplot without probability intervals
par(mar=c(3,3,2,1))
plotCat(cpH2L, main="CAT-plot, decreasing t-statistics",
cex=1, lwd=2, cexPts=1.5, spacePts=15,
legend=TRUE, where="center",
legCex=1, ncol=1)
###compute probability intervals
confInt <- calcHypPI(data=mat)
###CATplot with probability intervals
par(mar=c(3,3,2,1))
plotCat(cpH2L, main="CAT-plot, decreasing t-statistics, probability intevals",
cex=1, lwd=2, cexPts=1.5, spacePts=15,
legend=TRUE, where="center",
legCex=1, ncol=1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.