Where in the Proc Genmod procedure can you produce a table showing the standard error of parameter differences.
The below code seems to just show if each parameter is significantly different to the base level but it doesn't tell me whether each parameter estimate is significantly different to every other parameter.
Proc genmod data=insurancedata ;
Class glm31_cover_type (ref="COMP"); ;
Weight NbClaims;
Model AvgClaim= glm31_cover_type / dist=gamma
link=log
type1 type3 ;
Output out=pred_gamma predicted=AvgClaimEstimate;
Run;
See the Contrast statement (or the Estimate statement if you only want to test one difference).
See the Contrast statement (or the Estimate statement if you only want to test one difference).
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.