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;
Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.
Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.
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.