I have a time series of data points read from an instrument, I also get an estimate of the error ($\sigma$) for each of these readings. e.g.
$10.12 \pm 0.05$
$10.09 \pm 0.02$
$10.20 \pm 0.12$ etc.
To reduce the noise inherent in the data I'm binning (averaging) them with respect to time intervals, all fine and simple even with my basic maths knowledge. But what is the correct way of combining the errors readings?
I found the answer myself in the end on Wikipedia under weighted arithmetic mean I've also used a weighted mean instead of a simple mean using the reciprocal of sigma squared as the weighting factor for each value.