- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 08-23-2010 01:13 AM
(1048 views)
I want to strict my analysis to males and do not include females.
For example if I have 0=males and 1= females how can I restrict my analysis to males only. For example to compare heamoglobin mean levels across treatments (1= insulin, 2= diet) in men only.
For example if I have 0=males and 1= females how can I restrict my analysis to males only. For example to compare heamoglobin mean levels across treatments (1= insulin, 2= diet) in men only.
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Look up the WHERE statement/clause/option.
WHERE data set option.
[pre]
proc whatever data=mydat(where=(gender=0));
[/pre]
WHERE statement.
[pre]
proc whatever data=mydat;
where gender=0;
[/pre]
WHERE data set option.
[pre]
proc whatever data=mydat(where=(gender=0));
[/pre]
WHERE statement.
[pre]
proc whatever data=mydat;
where gender=0;
[/pre]