I'm having some problems plotting my data, and understanding what I can do with it
I have a dataset that looks something like:
| Event | Score | Prob |
+-------+-------+------+
| 1 | 5 | 30% |
| 2 | 2 | 90% |
| 3 | 1 | 20% |
| 4 | 9 | 30% |
| ... | | |
+-------+-------+------+
Each event has a probability of happening, and a score associated with it. If more than 1 event occurs, then the scores sum.
I would like to make a plot that shows the most 'likely' score that could be achieved, and a curve that shows the distribution of scores against total probability. I feel this should be possible as I have the probabilities for each event, however, I also feel like I am misunderstanding something.
Can anyone please advise me on what to do, or any resources I should read to understand my problem better? Thanks.