I have two distributions (sets of values) and wish to know the probability that one set "fits" into another. Something like this:
dist = [355, 221, 302, ...]
values = [550, 537, 404, ...]
odds = odds_all_values_in_dist(dist,values)
I didn't try anything (as I don't know probability theory good enough) and I've hardly used scipy at all. Also I don't know what distribution might be suitable, the data points are "number of clicks per day" (sort of).
Edit: dist
are clicks/day last month, values
are clicks/day current month. Hope this helps clarify what I'm trying to achieve despite my lack of knowledge in probability theory and math. :)
Edit 2: This month there has been a 50% increase in clicks. Given the number of clicks per day in the previous and current month, what are the odds that this increase is due to chance?