skrmdb.all | R Documentation |
This function is used primarily by the CVB statistics section to run all three methods included in the skrmdb package for determining ED50.
skrmdb.all(formula, data, autosort = TRUE)
formula |
A formula of the form |
data |
A data.frame containing the titration data. Formatted as specified in the CVB Data Guide. |
autosort |
Default |
A data.frame
containing columns for each of the subset variables,
the ED50 as computed by DragBehr
, ReedMuench
, the ED50 and variance as
computed by SpearKarb
, and columns of logical values which indicate if
the data are increasing or decreasing with log_dil
, has an even dilution
scheme, are monotonic, and brackets the midpoint.
data(titration)
titration$log_dil = -log10(titration$dil)
skrmdb.all(positive + total ~ log_dil | Vial + Operator, titration)
titration$dil = NULL
skrmdb.all(positive + total ~ log_dil | ., titration)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.