statsmodels.tools.eval_measures.rmse¶
-
statsmodels.tools.eval_measures.rmse(x1, x2, axis=
0)[source]¶ root mean squared error
- Parameters:¶
- Returns:¶
rmse – root mean squared error along given axis.
- Return type:¶
ndarray or float
Notes
If
x1andx2have different shapes, then they need to broadcast. This usesnumpy.asanyarrayto convert the input. Whether this is the desired result or not depends on the array subclass, for example numpy matrices will silently produce an incorrect result.