BookmarkSubscribeRSS Feed
Saeed
Calcite | Level 5
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.
1 REPLY 1
ArtC
Rhodochrosite | Level 12
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]

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 1 reply
  • 806 views
  • 0 likes
  • 2 in conversation