SAS Programming

DATA Step, Macro, Functions and more
BookmarkSubscribeRSS Feed
pearsoninst
Pyrite | Level 9
Thanks Reinhard, i corrected it .
3 REPLIES 3
pearsoninst
Pyrite | Level 9
/*Question:50 students 40 male ,10 Female you select 5 person what is the probability 4 will be male */
/*x = success.N = Population . R = Number of total x in N (Out of total population 50 ,Male is 40 and Female is 10. n = select */ data prob; /* PDF ('HYPER', x, N, R, n <, o>) */ Proba = PDF('HYPER',4,50,40,5); proc Print; run; /* 5 selected 4 will be female */ data prob; /* PDF ('HYPER', x, N, R, n */ Proba = PDF('HYPER',4,50,10,5); proc Print; run;
FreelanceReinh
Jade | Level 19

The question in line 1 is: "... what is the probability 4 will be male".

The answer (0.431337...) could be obtained with this one-liner:

%put %sysfunc(pdf(HYPE,4,50,40,5));

But in fact I, too, would be more interested in the question you switched to: what the chances are that "4 will be female.Smiley Happy (The result is less pleasing, though: only 0.003964...)

 

Did you perhaps intend to calculate PDF('HYPER',4,50,40,5) in the first of the two data steps?

Rick_SAS
SAS Super FREQ

I'm not sure wqhat your question is.  If you want to learn about how to simulate data from the hypergeometric distribution in SAS, see the article "Balls and urns: Discrete probability functions in SAS"

 

If you want to ask about how to compute probabilities for various scenarios, see "Four essential functions for statistical programmers."

sas-innovate-white.png

Join us for our biggest event of the year!

Four days of inspiring keynotes, product reveals, hands-on learning opportunities, deep-dive demos, and peer-led breakouts. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 2313 views
  • 1 like
  • 3 in conversation