"Nancy Lo" <[EMAIL PROTECTED]> writes:

> Hi all,
> 
> I need to use the parameter estimates of nls() for further analysis. I
> know how to do in S+, e.g. nls(...)$parameters. In R, the
> attributes(nls(...)) does not have parameters, how would one get the
> parameter values out of nls()?
> Thanks in advance.

Same way as you really ought to do it in S-PLUS:

library(nls)
example(nls)

coef(Pur.wt)

or, if you insist on using the internals:  Pur.wt$m$getPars()


-- 
   O__  ---- Peter Dalgaard             Blegdamsvej 3  
  c/ /'_ --- Dept. of Biostatistics     2200 Cph. N   
 (*) \(*) -- University of Copenhagen   Denmark      Ph: (+45) 35327918
~~~~~~~~~~ - ([EMAIL PROTECTED])             FAX: (+45) 35327907

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help

Reply via email to