gnls(model, data, params, start, correlation, weights, subset,
na.action, naPattern, control, verbose)
~
operator and
a nonlinear expression involving parameters and covariates on the
right. If data
is given, all names used in the formmodel
, correlation
, weights
,
subset
, and naPattern
. By default the variables are
taken from the environment from which p1+...+pn~x1+...+xm
, or list of two-sided formulas of the form
p1~x1+...+xm
, with possibly different models for each
parameter. The p1,...,pn
represent paramemodel
. It can be omitted
when a selfStarting
function is used in model
, in which
case the starting estimates will be ocorStruct
object describing the
within-group correlation structure. See the documentation of
corClasses
for a description of the available corStruct
classes. If a grouping variable is to be used,varFunc
object or one-sided formula
describing the within-group heteroscedasticity structure. If given as
a formula, it is used as the argument to varFixed
,
corresponding to fixed variance weights. See the dodata
should be used in the fit. This can be a logical
vector, or a numeric vector indicating which observation numbers are
to be included, or a character vector of theNA
s. The default action (na.fail
) causes
gnls
to print an error message and terminate if there are any
incomplete observations.gnlsControl
.
Defaults to an empty list.TRUE
information on
the evolution of the iterative algorithm is printed. Default is
FALSE
.gnls
, also inheriting from class gls
,
representing the nonlinear model fit. Generic functions such as
print
, plot
and summary
have methods to show the
results of the fit. See gnlsObject
for the components of the
fit. The functions resid
, coef
, and fitted
can be
used to extract some of its components.correlation
argument are described in Box, G.E.P., Jenkins,
G.M., and Reinsel G.C. (1994), Littel, R.C., Milliken, G.A., Stroup,
W.W., and Wolfinger, R.D. (1996), and Venables, W.N. and Ripley,
B.D. (2002). The use of variance functions for linear
and nonlinear models is presented in detail in Carrol, R.J. and Rupert,
D. (1988) and Davidian, M. and Giltinan, D.M. (1995). Box, G.E.P., Jenkins, G.M., and Reinsel G.C. (1994) "Time Series Analysis: Forecasting and Control", 3rd Edition, Holden-Day.
Carrol, R.J. and Rupert, D. (1988) "Transformation and Weighting in Regression", Chapman and Hall.
Davidian, M. and Giltinan, D.M. (1995) "Nonlinear Mixed Effects Models for Repeated Measurement Data", Chapman and Hall.
Littel, R.C., Milliken, G.A., Stroup, W.W., and Wolfinger, R.D. (1996) "SAS Systems for Mixed Models", SAS Institute.
Venables, W.N. and Ripley, B.D. (2002) "Modern Applied Statistics with S", 4th Edition, Springer-Verlag.
Pinheiro, J.C., and Bates, D.M. (2000) "Mixed-Effects Models in S and S-PLUS", Springer.
corClasses
,
gnlsControl
, gnlsObject
,
gnlsStruct
,
predict.gnls
,
varClasses
,
varFunc
# variance increases with a power of the absolute fitted values
fm1 <- gnls(weight ~ SSlogis(Time, Asym, xmid, scal), Soybean,
weights = varPower())
summary(fm1)
Run the code above in your browser using DataLab