Root mean square (RMS) error formula

G

Guest

Hello,

does anyone know what the formula for calculating root mean square (RMS)
error is? Can this be done in Excel?

Thanks,
 
H

Harlan Grove

Lea Olsen said:
does anyone know what the formula for calculating root mean square (RMS)
error is? Can this be done in Excel?

RMS is just the (population) standard deviation of your residuals. If you
have actual data, Y, and fitted estimates of those data points, Z, your RMS
is given by the array formulas

=SQRT(DEVSQ(Y-Z)/COUNT(Y))

or

=STDEVP(Y-Z)

The former is less susceptible to truncation error.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top