
nlmer(formula, data, control, start, verbose,
subset, weights, na.action, contrasts,
model, ...)
"|"
separates an expression for a modformula
. By default the variables are taken from the
environment from which nlmer
is called."fixef"
that has this form. Optionally the list may contain
an element called "ST"
providing a starTRUE
indicates verbose output
from the iterations during the optimization process (highly
recommended when difficulties are encountered). Default is FALSE
.lm
; see there for
details.frame
)."nlmer "
.
There are many methods applicable to "nlmer"
objects, see the
above help page.nlme
function from the
Additional standard arguments to model-fitting functions can be passed
to lmer
.
[object Object],[object Object],[object Object],[object Object]
nlmer
class(fm1 <- lme4:::nlmer(circumference ~ SSlogis(age, Asym, xmid, scal) ~ Asym|Tree,
Orange, verb = 1,
start = c(Asym = 192.6872, xmid = 728.7544, scal = 353.5320)))
(fm2 <- lme4:::nlmer(conc ~ SSfol(Dose, Time,lKe, lKa, lCl) ~ (lKe+lKa+lCl|Subject),
Theoph, start = c(lKe = -2.5, lKa = 0.5, lCl = -3), verb = 1))
(fm3 <- lme4:::nlmer(conc ~ SSfol(Dose, Time,lKe, lKa, lCl) ~
(lKe|Subject) + (lKa|Subject) + (lCl|Subject), Theoph,
start = c(lKe = -2.5, lKa = 0.5, lCl = -3), verb = 1))
(fm4 <- lme4:::nlmer(conc ~ SSfol(Dose, Time,lKe, lKa, lCl) ~
(lKa+lCl|Subject), Theoph,
start = c(lKe = -2.5, lKa = 0.5, lCl = -3), verb = 1))
(fm5 <- lme4:::nlmer(conc ~ SSfol(Dose, Time,lKe, lKa, lCl) ~
(lKa|Subject) + (lCl|Subject), Theoph,
start = c(lKe = -2.5, lKa = 0.5, lCl = -3), verb = 1))
Run the code above in your browser using DataLab