I want to estimate e50 e0 emax from emax model the equation is Y=E0 + ((DOSE * EMAX)/(DOSE + ED50)) I want to use default algorithm How can I estimate E0 EMAX and E50?
I found the example code is :
args(nls)
function (formula, data = parent.frame(), start, control = nls.control(),
algorithm = c("default", "plinear", "port"), trace = FALSE,
subset, weights, na.action, model = FALSE, lower = -Inf,
upper = Inf, ...)
NULL
Thanks