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

Hi,

 

I am wondering about simulate a bernouilli variable with parameter h.

 

I know how to simulate a normale variable for example :

retain seed 7453293 ;

call rannor(seed,epsi);

X_t= epsi;

 

But I don't know how to simulate a bernouilli.

 Thank you for your help

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

The RAND function (DATA step) and the RANDGEN function (SAS/IML) supports about 25 distributions, including the Bernoulli distribution.

 

The code you included looks like you want the DATA step solution, even though you posted to the SAS/IML forum (??): The following DATA step generates 10 random Bernoulli variates, each which has a 0.3 probability of appearing:

data Bern;
call streaminit(7453293);
do i = 1 to 15;
   x = rand("Bernoulli", 0.3);
   output;
end;
run;

By the way, there are many reasons why you should transition to use RAND instead of the older RANUNI and RANNOR functions, which are deprecated.

 

View solution in original post

1 REPLY 1
Rick_SAS
SAS Super FREQ

The RAND function (DATA step) and the RANDGEN function (SAS/IML) supports about 25 distributions, including the Bernoulli distribution.

 

The code you included looks like you want the DATA step solution, even though you posted to the SAS/IML forum (??): The following DATA step generates 10 random Bernoulli variates, each which has a 0.3 probability of appearing:

data Bern;
call streaminit(7453293);
do i = 1 to 15;
   x = rand("Bernoulli", 0.3);
   output;
end;
run;

By the way, there are many reasons why you should transition to use RAND instead of the older RANUNI and RANNOR functions, which are deprecated.

 

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!

Multiple Linear Regression in SAS

Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.

Find more tutorials on the SAS Users YouTube channel.

From The DO Loop
Want more? Visit our blog for more articles like these.
Discussion stats
  • 1 reply
  • 912 views
  • 1 like
  • 2 in conversation