I have a list of sets of integers (run times in seconds, so all are greater than zero), with a varying amount in each set:
e.g.
test suite A: 12, 15, 16
test suite B: 120, 130, 125, 90, 110
test suite C: 3
I will be running test suites A, B and C together, and I want to predict how long it will take. Summing the mean values of suites A, B, C gives me an expected run-time, but doesn't say anything about how certain I can be of that number. Ideally, I'd like a variance (and therefore standard deviation) as well.
Given that I want to give each suite equal "weighting" in any such calculation, what's the most reasonable way to go about this? I've seen Adding/Combining Standard Deviations , which is similar, but different (they aren't summing the values in the sets, as I am).