Extract gnls Coefficients
Usage
coef(object)
Arguments
object
|
an object inheriting from class gnls, representing
a generalized nonlinear least squares fitted model.
|
Description
The estimated coefficients for the nonlinear model represented by
object are extracted.Value
a vector with the estimated coefficients for the nonlinear model
represented by object.Author(s)
Jose Pinheiro and Douglas BatesSee Also
gnlsExamples
library(lme)
data(Soybean)
fm1 <- gnls(weight ~ SSlogis(Time, Asym, xmid, scal), Soybean,
weights = varPower())
coef(fm1)