BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
brophymj
Quartz | Level 8

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;

1 ACCEPTED SOLUTION

Accepted Solutions
BruceBrad
Lapis Lazuli | Level 10

See the Contrast statement (or the Estimate statement if you only want to test one difference).

View solution in original post

1 REPLY 1
BruceBrad
Lapis Lazuli | Level 10

See the Contrast statement (or the Estimate statement if you only want to test one difference).

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is ANOVA?

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.

Discussion stats
  • 1 reply
  • 1291 views
  • 0 likes
  • 2 in conversation