Description Usage Arguments Value See Also Examples
A function that returns a function that computes the dose reaching a specific target probability, based on the model specific parameters.
1 2 3 4 5 6 7 | doseFunction(model, ...)
## S4 method for signature 'GeneralModel'
doseFunction(model, ...)
## S4 method for signature 'ModelTox'
doseFunction(model, ...)
|
model |
( |
... |
model specific parameters. |
A function
that computes doses for a given toxicity probability
and the model.
1 2 3 4 5 6 7 8 | my_model <- LogisticLogNormal(
mean = c(-0.85, 1),
cov = matrix(c(1, -0.5, -0.5, 1), nrow = 2),
ref_dose = 50
)
dose_fun <- doseFunction(my_model, alpha0 = 2, alpha1 = 3)
dose_fun(0.6)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.