update.drc {drc} | R Documentation |
'update' updates and re-fits a model on the basis of an object of class 'drc'.
update.drc(object, ..., evaluate=TRUE)
object |
an object of class 'drc'. |
... |
arguments to alter in object. |
evaluate |
logical. If TRUE model is re-fit; otherwise an unevaluated call is returned. |
An object of class 'drc'.
Christian Ritz
## Fitting a four-parameter Weibull model model1 <- multdrc(FA, fct = w4()) ## Updating 'model1' by fitting a three-parameter Weibull model model2 <- update(model1, fct = w3()) anova(model2, model1) rm(model1, model2)