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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
|
\name{rtPCR}
\alias{rtPCR}
\docType{data}
\title{Teratogenesis rtPCR data}
\description{
rtPCR data for experiments investigating a variety of markers for
characterizing teratogenicity.
}
\usage{data(rtPCR)}
\format{
A data frame with 1672 observations on the following 21 variables.
\describe{
\item{PlateID}{a factor with levels \code{A0027002} through
\code{A0054019}}
\item{Test.Substance}{a factor with levels \code{Compound A} through
\code{Compound H}}
\item{Teratogenicity.in.vivo}{a factor with levels \code{Non}
\code{Strong} \code{Weak / Moderate}}
\item{Sample}{a factor with levels \code{Sample 1} - \code{Sample 152}}
\item{Rep..}{a factor with levels \code{Rep 1} - \code{Rep 21}}
\item{Label}{a factor with levels \code{Ctrl}, \code{Neg. Ctrl}
\code{P1} - \code{P9}, \code{No Vehicle Ctrl}, and \code{Pos. Ctrl}}
\item{Conc..ug.ml.}{a numeric vector}
\item{Detector}{a factor with levels \code{ProbeType 1} -
\code{ProbeType 17}}
\item{Avg.delta.Ct}{a numeric vector}
\item{delta.Ct.SD}{a numeric vector}
\item{delta.delta.Ct}{a numeric vector}
\item{RQ}{a numeric vector}
\item{X..RQ}{a numeric vector}
\item{X100..Custom..}{a numeric vector}
\item{X100...Custom..}{a numeric vector}
\item{Custom..}{a numeric vector}
\item{Custom...1}{a numeric vector}
\item{RQ.Min}{a numeric vector}
\item{RQ.Max}{a numeric vector}
\item{Threshold}{a numeric vector}
}
}
\details{
TBA
}
\source{
Anonymized data.
}
\examples{
data(rtPCR)
# same scale
overplot( RQ ~ Conc..ug.ml. | Test.Substance,
data=rtPCR,
subset=Detector=="ProbeType 7" & Conc..ug.ml. > 0,
same.scale=TRUE,
log="xy",
f=3/4,
main="Detector=ProbeType 7",
xlab="Concentration (ug/ml)",
ylab="Relative Gene Quantification"
)
# different scales, but force lower limit to 0.01
overplot( RQ ~ Conc..ug.ml. | Test.Substance,
data=rtPCR,
subset=Detector=="ProbeType 7" & Conc..ug.ml. > 0,
log="xy",
f=3/4,
main="Detector=ProbeType 7",
xlab="Concentration (ug/ml)",
ylab="Relative Gene Quantification",
min.y=0.01
)
}
\keyword{datasets}
|