| InputFrame {ddCt} | R Documentation |
Generally an InputFrame is built from a ReaderClass
(e.g. InputReader), or a data.frame. See the example below
for building an object from a valid data.frame.
InputFrame(object)
object |
A data.frame with three columns: Sample, Detector, and Ct |
A object of class InputFrame
Jitao David Zhang mailto: jitao_david.zhang@roche.com
testDf <- data.frame(Sample=rep(paste("Sample", 1:3), each=2),
Detector=rep(paste("Gene", 1:2), 3),
Ct=30+rnorm(6))
testInputFrame <- InputFrame(testDf)