Displaying 1 result from an estimated 1 matches for "1040qlink4".
Did you mean:
1040qlink1
2011 Nov 10
0
Help with gam
....html#1040qlink3> >
All this works. Now, how can I see the fitted values and copy them back to
Excel?
As for most fitted models, you can get
Fitted values:
predict(fit)
Coefficients:
coef(fit)
etc.
Uwe Ligges
<http://tolstoy.newcastle.edu.au/R/e14/help/11/05/1036.html#1040qlink4> >
Thank you very much,
>
> Zsolt
>
> [[alternative HTML version deleted]]
>
Note that predict(fit) will give the additive fit. If you are looking for
the fitted mean values, I would do the following:
ds <- data.frame(fit$fitted.values)
write.csv(ds, file = "...