how to use Monte Carlo method to sample data from N popolation with normal distribution?
That's a very brief problem description. So here is my very brief answer.
data want;
n=1000;
do i=1 to n;
y=rand('normal');
output;
end;
run;
If that's not what you are looking for, describe your problem in detail.
@ALEXMANI I see you've posted several topics about Monte Carlo simulation.
This paper by @JBrinkley provides a good intro to the topic and might help:
https://www.lexjansen.com/sesug/2018/SESUG2018_Paper-135_Final_PDF.pdf
And @Rick_SAS has a comprehensive series about simulation on his blog -- great reference.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.
Ready to level-up your skills? Choose your own adventure.