- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Am I able to use an "if" command while generating a two-way table using proc freq? Say for example I have information on treatment versus control and gender, that is, male vs female and want to find out the proportion of males in treatment and the proportion of males in control. Is there a way to set my table statement to something like:
tables treatment * sex (if sex=1);
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
WHERE not if, but it applies to the whole proc.
proc freq data=sashelp.class;
table age*sex;
where sex='F';
run;
You can also use a BY statement or just look at the column percents/totals in the PROC FREQ output. There are summaries for the overall table, for each row and column in the default output.
proc sort data=sashelp.class out=class;
by sex;
proc freq data=class;
by sex;
table age*sex;
run;
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Is this no longer applicable when using proc surveyfreq instead of just proc freq?
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
@amajeau wrote:
Is this no longer applicable when using proc surveyfreq instead of just proc freq?
What's this? Your question said proc freq..
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
With surveyfreq if you use the where clause you remove some information and really wouldn't want to have a table statement with
tables age*sex.
Are perhaps looking to do domain analysis of age? You may want to look at SURVEYMEANS and use a Domain Sex statement.