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

HI,

 

I have used proc freq with cmh chisq and alpha options to generate odds ratio for my data.

 

Now I need to generate by age category.

 

Can I use class statement?

PROC freq data=mydata;

class agec;

tables trt /chisq cmh alpha=0.05;

RUN;

 

is giving me an error.

 

 

Thanks,

Archana

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

Here is the documentation for the FREQ procedure. All the valid syntax is explained. There is not a CLASS statement.

 

You can, however, run stratified analyses by using additional variables on the TABLES statement. Here is an example, also from the documentation.

View solution in original post

3 REPLIES 3
Rick_SAS
SAS Super FREQ

Here is the documentation for the FREQ procedure. All the valid syntax is explained. There is not a CLASS statement.

 

You can, however, run stratified analyses by using additional variables on the TABLES statement. Here is an example, also from the documentation.

PGStats
Opal | Level 21

If you simply want separate tests for each age category, sort your data and use a BY statement.

PG
SteveDenham
Jade | Level 19

Try

 

PROC freq data=mydata;
tables agec*trt /chisq cmh alpha=0.05;
RUN;

Steve Denham

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

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