BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
John4
Obsidian | Level 7


My data set look like this :
Birth    Death    InfantDeath     Country
24.7      5.7           30.8             Albania

I am using this code for analyse my data :

PROC FREQ DATA = MYDATA;
TABLE BIRTH*COUNTRY / CHISQ;
RUN;


Cramér's V is a measure of association between two nominal variables but I dont understnd why SAS compute Cramér's V for continuous variable and categorial variable ? In the output I got 0.2236 as V cramer for these variables : Birth and Country

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

PROC FREQ treats all variables as categorical. It doesn't know and doesn't care that you think a variable is continuous.

--
Paige Miller

View solution in original post

4 REPLIES 4
PaigeMiller
Diamond | Level 26

PROC FREQ treats all variables as categorical. It doesn't know and doesn't care that you think a variable is continuous.

--
Paige Miller
John4
Obsidian | Level 7

So we have to interpret the result 0.2236 as usually ? (I mean : "weak effect", "small effect", etc...)

Or is there a method to deal with that ?

PaigeMiller
Diamond | Level 26

@John4 wrote:

So we have to interpret the result 0.2236 as usually ? (I mean : "weak effect", "small effect", etc...)

Or is there a method to deal with that ?


If I am understanding the question properly (and I may not be), you would not try to interpet a calculations of Cramer's V in this situation as it is meaningless.

--
Paige Miller
John4
Obsidian | Level 7

Yes I think It does not make sense

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 16. Read more here about why you should contribute and what is in it for you!

Submit your idea!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 1256 views
  • 4 likes
  • 2 in conversation