Hi, experts!
I need your help about GAM procedure.
If I use the ADDITIVE suboption with class statement to get the additive component plots, estimates for the plots aren't reasonable.
Is there any solution?
proc gam data=dataset plots=component(additive);
class x0;
model y= param(x0) spline(x1) spline(x2) / link=Identity dist=normal method=GCV;
run;
What do you mean that the plots aren't reasonable? Can you give an example of what happens, and what you would expect?
Steve Denham
When model only included continuous variable,
estimates of additive component in the data from ods output SmoothingComponentPlot were like left table.
On the other hand, when model include categorical variable, estimates were like right table.
It appears that the right hand column is giving the difference from the reference level of x0, which in the default case would be the last level. Perhaps you could add the value of the last level (or its mean/median if the class collapses several values) to get values more like those on the left.
Steve Denham
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.