I have been having trouble following all the montecarlo tutorials as they are seem to start to advanced for me to follow. I have a few months of python experience. So far I have been unable to find any on the basics. Any tips or links to the basics of montecarlo and python would be great.
Im looking to make a simple montecarlo simulation. One simulation would involve selecting a random outcome for event 1 from the distribution and then allocating a score. Then another random outcome for event 2 and so on. So 1 run of the sim would give me 3 scores. Thanks in advance for any help with this
I will be trying to rum a sim 10000 times approx on a bigger dataset. Should I be trying to do this in numpy?
Probability distribution
outcome 1 outcome 2 outcome 3 outcome 4 outcome 5
event 1 0.1 0.2 0.5 0.6 1
event 2 0.1 0.3 0.4 0.7 1
event 3 0.1 0.5 0.6 0.7 1
Scores
outcome 1 outcome 2 outcome 3 outcome 4 outcome 5
score 1 100 400 200 600 100
score 2 200 600 300 700 500
score 3 400 100 500 300 200