Learn R Programming

LDAcoop (version 0.1.2)

LDA_table: LDA_table

Description

show table with activities and clonogenic survival from limiting dilution assay (LDA) data.

Usage

LDA_table(x, ref_class = "unknown", uncertainty = "act")

Value

table

Arguments

x

numeric data.frame or matrix with at least three columns (cells, wells, positive wells, group (optional))

ref_class

name of reference class for calculation of SF values

uncertainty

method for calculating the uncertainty bands of survival fractions ("act" (default) for combining the activity confidence intervals; "ep" for error propagation via first order Taylor series expansion.)

Examples

Run this code
x <- data.frame("cells" = c(10,50,100,250,10,50,100,250),
                "wells" = rep(25,8),
                "positive" = c(2,5,10,20,1,2,6,11),
                "group" = c(rep("A",4),rep("B",4)))
LDA_table(x,ref_class = "A")

Run the code above in your browser using DataLab