So, I am keeping an average value using the incremental averaging approach. I have some "saves" of this average value, along with its samples count. Is there a way to calculate the avg for a timeframe between two of those "saves"?
E.g. let's say I have two "saves", on the first day of the month for Jan and Feb each.
for Jan: SamplesCount = $50$, AverageValue = $10$
for Feb: SamplesCount = $125$, AverageValue = $25$
What I want to know is the values for the Jan-Feb timeframe. The SamplesCount is simple, it would be $125-50=75$. But is there a way to get AverageValue for Jan-Feb?