Is it possible to output the crosslist data from PROC FREQ to a dataset? The OUT option in the TABLE statement only outputs the frequencies and percentages.
My goal is to generate a dataset containing a list of Standard Residuals (stdres)
Huh? How did you get PROC FREQ to generate that statistic?
If it can generate the statistic then turn on ODS TRACE before running it an see which output table contains the information. Then just add an ODS OUTPUT statement to tell ODS to save that result into a dataset when you run the PROC FREQ.
Huh? How did you get PROC FREQ to generate that statistic?
If it can generate the statistic then turn on ODS TRACE before running it an see which output table contains the information. Then just add an ODS OUTPUT statement to tell ODS to save that result into a dataset when you run the PROC FREQ.
yes, that works. I'm not much familiar with ODS so I didn't think of it.
thank you so much.
Proc FREQ can produce Standard Residuals by adding CROSSLIST and STDRES in the Table options.
i.e. table type * prov / chisq cellchi2 expected CROSSLIST stdres out=std_red crosslist ;
weight count_number;
run;
ods output crosslist=crosslist_table;
proc freq data= ... ;
/* Other PROC FREQ statements */
run;
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.