Description Usage Arguments Details Value Author(s) See Also Examples
View source: R/visualization.R
A convenience function to plot sample wells with control wells on an
E-plate in RTCA system. To use the function the phenoData field
of the RTCA
object must contain a field named “GeneSymbol”.
1 |
rtca |
An object of |
genesymbol |
character, gene symbols to be plotted. |
cols |
character, colors used by the provided gene symbols |
ylim |
y-axis lim |
smooth |
logical, whether the |
group |
logical. If ‘group’ is set to |
ylab |
y axis label |
xlab |
x axis label |
drawsd |
logical, should the error bar be drawn to represent standard deviation? |
normline |
logical, should the base-time indicated by a line? See
|
ncol |
integer, legend column number |
legendpos |
character, legend position |
pData.column |
The column which the |
... |
other parameters passed to the |
The function is often called to draw sample and control in one plot.
NULL
, the function is called for its side effect
Jitao David Zhang jitao_david.zhang@roche.com
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | require(RTCA)
ofile <- system.file("extdata/testOutput.csv", package="RTCA")
pfile <- system.file("extdata/testOutputPhenoData.csv", package="RTCA")
pData <- read.csv(pfile, sep="\t", row.names="Well")
metaData <- data.frame(labelDescription=c(
"Rack number",
"siRNA catalogue number",
"siRNA gene symbol",
"siRNA EntrezGene ID",
"siRNA targeting accession"
))
phData <- new("AnnotatedDataFrame", data=pData, varMetadata=metaData)
x <- parseRTCA(ofile, phenoData=phData)
controlView(x, genesymbol=c("mock","COPB2","PLK1"),ylim=c(0,2))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.