LDA_survival {LDAcoop} | R Documentation |
LDA_survival
Description
calculation of clonogenic survival in a table of data from a limiting dilution assay (LDA) experiment (i.e. cells, wells, positive wells, group).
Usage
LDA_survival(x, name = "cell line a")
Arguments
x |
numeric data.frame or matrix with three columns (cells, wells, positive wells, group) |
name |
optional: experiment name (e.g. name of cell line) |
Value
list object with LDA-activities as returned by LDA_activity_single
Examples
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)))
act <- LDA_survival(x)
[Package LDAcoop version 0.1.2 Index]