Displaying 1 result from an estimated 1 matches for "gnlsout".
Did you mean:
nlsout
2009 Oct 30
0
Interpreting gnls() output in comparison to nls()
...975 3.249 0.00446 **
---
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Residual standard error: 0.3 on 18 degrees of freedom
Number of iterations to convergence: 5
Achieved convergence tolerance: 1.447e-06
>
>
> ##Fit gnls
> gnlsOut =
+ gnls(lnCount ~ log(C0 + C1 * Time + C2* Time^2),
+ start = list( C0 = c(exp(3.5), exp(3.5)), C1 = c(-0.5, -0.5), C2 =
c(0.01, 0.01)),
+ data = myPbmcData,
+ params = list( C0 + C1 + C2 ~ Type),
+ verbose = TRUE
+ )
>
> summary(gnlsOut)
Generalized nonline...