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.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
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.