coef.drc.Rd
Extract parameter estimates.
# S3 method for drc coef(object, ...)
object | an object of class 'drc'. |
---|---|
... | additional arguments. |
A vector of parameter coefficients which are extracted from the model object 'object'.
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.
A more comprehensive summary is obtained using summary.drc
.
## 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