SAS Enterprise Guide

Desktop productivity for business analysts and programmers
BookmarkSubscribeRSS Feed
Mdstudent
Calcite | Level 5

Hi,

First of all, statistics is not my best part Smiley Happy, but now I have to do quite a lot of table analysis with chi-square tests.

Therefore, I have to calculate the residuals for each cell.

My question:

Is there any possibility to calculate the standardized residuals by a chi-square test in SAS Enterprise Guide 7.1?

In "Cell statistics", there is choice to indicate "Cell contribution to Pearson Chi-square" e.g.

Or can I better calculate the residuals by myself (excel).

Thanks in advance!

3 REPLIES 3
Reeza
Super User

I don't know how to do it via point and click.  Via code you can request the deviation amount and expected amount.  Perhaps those are options in the output statistics section?

I'm not familiar with standardized residuals for chi square tests.  Given the statistical nature of this question you may want to post/move it to the SAS Statistical Procedure section instead of EG.

ods trace on;

proc freq data=sashelp.class;

table sex*age/deviation expected;

ods output crosstabfreqs=want;

run;

ods trace off;

proc print data=want;

run;

Ksharp
Super User

Maybe you need this :

proc freq data=sashelp.class;

table sex*age/deviation expected chisq cellchi2 ;

ods output crosstabfreqs=want;

run;

TomKari
Onyx | Level 15

Ah! Now that I see the SAS code, I can suggest the "point and click" method.

1. With your dataset open, select Describe | Table Analysis.

2. On the "Data" tab, drag your variables into the Table Variables selections.

3. On the "Tables" tab, drag one variable to the top, and the other to the left.

4. On "Cell Statistics", select Cell Frequency ... and Expected Cell Frequency

5. On "Table Statistics" / "Association", select Chi-square tests

Run the task.

How close is this to what you want?

  Tom

sas-innovate-white.png

Our biggest data and AI event of the year.

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.

 

Register now!

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 3 replies
  • 4040 views
  • 1 like
  • 4 in conversation