I had to normalize my data using this equation :
$m ↦ (m - r_{min}) / (r_{max} - r_{min}) * (t_{max} - t_{min}) + t_{min}$
as seen here: scale a number between a range
If I calculate the mean of these data and I want then to calculate the standard error, how do i do?
Do I only take into account the multiplication/division? when I do the standard error with the data taking into account only multiplication/division factor (m/(rmax-rmin)*(tmax-tmin)) I end up with negative values and have a bigger standard error in comparison to the value I have with raw data.
Could someone help me with this please?
Best Jean