Description Usage Arguments Details Value Author(s) Examples
The function calculates plating efficiencies, i.e. fractions of colonies per cell of untreated cells, for every experimental replicate in a data frame with one specified curve. For that, lines with zero dose (dose = 0) are extracted from the data frame.
1 | pes(X)
|
X |
A data frame which contains columns |
In the data frame X
, Exp
identifies the experimental replicates and may be numeric or non-numeric.
The function returns a data frame with three columns Exp
, pe
and S0
, containing experiment identifiers (biological replicates), measured plating efficiencies and plating efficiencies fitted separately for each repeated experiments. Rows of the data frame are named for the different experiments.
Herbert Braselmann
1 2 3 4 | datatab <- read.table(system.file("doc", "expl1_cellsurvcurves.txt", package="CFAssay"), header=TRUE, sep="\t")
X <- subset(datatab, cline=="okf6TERT1") #Specification of curve
pes(X)
pes(subset(datatab, cline=="cal33") )
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.