Just to let everybody know the context, I will tell my aim prior my question. I´m trying to modelize, for soccer matches prediction, corners and goals. In order to modelize it, I´m trying with a discretized normal distribution, and as the title suggest, Poisson distribution. So, let´s assume that I collected the data, and my assumption is results fo over 3 months ago are not relevant, so I will have a vector like this one.
a=[6,3,12,4,7,8,6,8,9]
I know that I can use scipy to return the odds of a particular outcome, like for example 6 corners, this way.
>>> scipy.stats.distributions.poisson.pmf(6, mean)
And I guess I could add all prior numbers to get the odds for 6 or less corners, but isn´t there a way to calculate the odds for a whole range of numbers, in this case, from 0 to 6?
Besides, if anyone versed on mathematics or whatever want to share a better suited distribution or procedure, be my guest. I know that in order to use a fitting distribution model algorithm I should have far larger data than 10 matches, but thats with what I have to work. AS an afterthought, i´m considering using median instead of mean if the mean is too skewed, so you guays can share your opinions on that too.
Thanks in advance