Hi all,
This may be a naïve question - I'm working with PROC GENMOD and am needing to obtain standardized coefficients. Nothing online has pointed me to a sufficient solution. I've seen the STD option in PROC REG and others for PROC GLM but nothing for PROC GENMOD.
My code is pasted below for reference.
Thanks much!
Title "DV = # academic goals";
PROC GENMOD DATA = teach.teadsub73;
CLASS ID SCHOOL;
MODEL AcademicTargets = ctbhi ctbia ctbcp ctemp;
REPEATED SUBJECT = ID(SCHOOL) / type = un corrw covb;
RUN;
You could always standardize the X and Y values before running PROC GENMOD. Use PROC STDIZE.
You could always standardize the X and Y values before running PROC GENMOD. Use PROC STDIZE.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.