Learn R Programming

ddCt (version 1.28.0)

InputFrame: Build an InputFrame from a ReaderClass or a data frame

Description

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.

Usage

InputFrame(object)

Arguments

object
A data.frame with three columns: Sample, Detector, and Ct

Value

InputFrame

Examples

Run this code
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)

Run the code above in your browser using DataLab