diagnostics {drc} | R Documentation |
Displays information on the convergence of the estimation procedure.
diagnostics(object)
object |
an object of class 'drc'. |
Currently this function displays the convergence status and the number of evaluations used.
Christian Ritz
model1 <- multdrc(rgr~dose, data=TerMet) diagnostics(model1) model2 <- multdrc(rgr~dose, data=TerMet, startVal=c(1,0.01,0.38,130)) diagnostics(model2) ## the start values given yield swifter convergence rm(model1, model2)