Assuming I have a dataset of temperature data sampled every 5 minutes and I want to find out its mean. If we assume that the data was sampled from a discrete process we can use the arithmetic mean:
$\frac{1}{n}\sum_{i=1}^{n}{x_i}$
However, if we assume that the underlying process in continuous, the mean would be the definite integral:
$\frac{1}{t_n-t_o}\int_{t_1}^{t_n}{f(t) dt}$
where $t$ represents the time and $f(t)$ the corresponding temperature at that time.
My question is, assuming I can approximate $f(t)$ quite good, is it more reasonable to assume a continuous process and calculate the mean accordingly or to assume a discrete process and use the arithmetic mean.