computeABC | R Documentation |
Fits dose-response curves to data given by the user and returns the ABC of the fitted curves.
computeABC(
conc1,
conc2,
viability1,
viability2,
Hill_fit1,
Hill_fit2,
conc_as_log = FALSE,
viability_as_pct = TRUE,
trunc = TRUE,
verbose = TRUE
)
conc1 |
|
conc2 |
|
viability1 |
|
viability2 |
|
Hill_fit1 |
|
Hill_fit2 |
|
conc_as_log |
|
viability_as_pct |
|
trunc |
|
verbose |
|
The numeric area of the absolute difference between the two hill slopes
Mark Freeman
dose1 <- c(0.0025,0.008,0.025,0.08,0.25,0.8,2.53,8)
viability1 <- c(108.67,111,102.16,100.27,90,87,74,57)
dose2 <- c(0.0025,0.008,0.025,0.08,0.25,0.8,2.53,8)
viability2 <- c(100.94,112.5,86,104.16,75,68,48,29)
computeABC(dose1, dose2, viability1, viability2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.