Extract parameter estimates.

# S3 method for drc
coef(object, ...)

Arguments

object

an object of class 'drc'.

...

additional arguments.

Value

A vector of parameter coefficients which are extracted from the model object 'object'.

Note

This function may work even in cases where 'summary' does not, because the parameter estimates are retrieved directly from the model fit object without any additional computations of summary statistics and standard errors.

See also

A more comprehensive summary is obtained using summary.drc.

Examples

## Fitting a four-parameter log-logistic model ryegrass.m1 <- drm(rootl ~ conc, data = ryegrass, fct = LL.4()) coef(ryegrass.m1)
#> b:(Intercept) c:(Intercept) d:(Intercept) e:(Intercept) #> 2.9822191 0.4814132 7.7929583 3.0579550