invertBraidModel | R Documentation |
Given a particular effect and one of the doses in a combined action response
surface, this function calculates the other dose that will produce the
desired effect. Used in the estimation of the IAE (see estimateIAE()
) but
also useful for calculating something like the IC50 of one drug in the
presence of various doses of the other. invertBraidModelA
and
invertBraidModelB
are convenience wrapper functions that set DA
or DB
to NULL
to estimate the necessary concentrations of drug A and drug B
respectively.
invertBraidModel(
DA = NULL,
DB = NULL,
effect,
bpar,
invalidNA = FALSE,
lowerBound = FALSE
)
invertBraidModel_A(DB, effect, bpar, invalidNA = FALSE, lowerBound = FALSE)
invertBraidModel_B(DA, effect, bpar, invalidNA = FALSE, lowerBound = FALSE)
DA |
If not |
DB |
If not |
effect |
A vector of desired effect values to be reached. Must be
length 1 or the same length as whichever of |
bpar |
A BRAID response surface parameter vector (see
|
invalidNA |
Specifies what to do with values that are outside the range
of the given BRAID model or doses. If |
lowerBound |
Primarily used by |
A vector of concentrations the same length as either DA
or DB
(whichever is not NULL
) and/or effect
, representing the concentration of
the other drug producing the specified effect in combination with the given
dose of the provided drug
baseIC <- invertBraidModel_A(
DB=0,
effect=seq(10,90,by=10),
bpar=c(1, 1, 3, 3, 2, 0, 100, 100, 100)
)
potentiatedIC <- invertBraidModel_A(
DB=1,
effect=seq(10,90,by=10),
bpar=c(1, 1, 3, 3, 2, 0, 100, 100, 100)
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.