BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
zachi_dv
Calcite | Level 5

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)

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

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.

View solution in original post

4 REPLIES 4
Tom
Super User Tom
Super User

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.

zachi_dv
Calcite | Level 5

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;

PaigeMiller
Diamond | Level 26
ods output crosslist=crosslist_table;
proc freq data= ... ;
/* Other PROC FREQ statements */
run;
--
Paige Miller

SAS Innovate 2025: Register Now

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!

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 4 replies
  • 1023 views
  • 0 likes
  • 3 in conversation