| I'll have a go at seeing what we can conclude from the data. Others, check my thinking please.
Now we have 1 death in 3m miles for Uber, versus 1.18 deaths in 100m miles for sober drivers. The expected rate for 100m miles for Uber is 33.333... But how confident can we be? To answer that let's compute a poisson confidence interval around that rate, as in https://stats.stackexchange.com/questions/10926/how-to-calcu.... Let's see what a 95% confidence interval for 1 death in 3m miles looks like: > poisson.test(1,conf.level = 0.95)$conf.int
[1] 0.02531781 5.57164339
attr(,"conf.level")
[1] 0.95
Multiply that by 33.333 to convert to deaths per 100m miles: > 33.333333*0.02531781
[1] 0.843927
> 33.333333*5.57164339
[1] 185.7214
So 95% confidence that the rate per 100m miles is from 0.84 to 185.72. That's pretty wide! And since the lower bound crosses 1.18, the difference is not significant at the .05 level (if we must make that particular comparison).
However, let's look at 90% CI: > poisson.test(1,conf.level = 0.9)$conf.int
[1] 0.05129329 4.74386452
attr(,"conf.level")
[1] 0.9
Which gives a CI of 1.71 to 158.13. So with 90% confidence we can say Uber is less safe than sober drivers. Ok.Now let's look at 93% CI: > poisson.test(1,conf.level = 0.93)$conf.int
[1] 0.03562718 5.17251332
attr(,"conf.level")
[1] 0.93
That gives a CI of 1.188 to 172.417. The lower bound being just a bit worse than sober drivers.So we can conclude with 93% certainty from this data that Uber is less safe than sober drivers. Probably a LOT less safe.
Although the CI is really wide, this is shocking data for Uber, in my opinion. |
> Uber is less safe than sober drivers
But the 1.18 deaths in 100m miles is for all drivers, not just the subset of sober drivers. Not quite sure why you are claiming it is only sober drivers.