drm: Dose-response modelling

Description Usage Arguments Details Value Author(s) References See Also Examples

Description

Parametric modelling of dose-response data.

Usage

1
2
3
4
5
6
7
drm(x, n, dose, data,
    model = c("betapoisson", "bp", 
              "exponential", "exp", 
              "loglogistic", "ll",
              "logprobit", "lp",
              "extremevalue", "ev"),
    ...)

Arguments

x

Vector of infected individuals.

n

Vector of exposed individuals.

dose

Vector of administered doses.

data

An optional data frame, containing the variables in the model. If not found in data, the variables are taken from the environment from which drm is called.

model

A character string naming the dose-response model. See details below.

...

Arguments to be passed to mle.

Details

Available models:

Value

An object of class "drm".

Author(s)

brechtdv@gmail.com

References

See Also

bdrm, for Bayesian dose-response modelling

Examples

1
2
## Fit Beta-Poisson dose-response model to Campylobacter dataset
drm(x = infected, n = total, dose = dose, data = campy, model = "bp")

brechtdv/QMRA documentation built on May 13, 2019, 5:06 a.m.