Fix RMSE indicate the accuracy not the precision

This commit is contained in:
Mickaël Véril 2020-11-19 15:04:04 +01:00
parent d0f860572a
commit 50e1d0025e

View File

@ -794,13 +794,13 @@ So with $\nExnn$ the size of the vector $\vec{\err^x_\meth}$
\begin{gather}
MSE_\meth = \overline{{\vec{\err_\meth}}} = \frac{1}{\nExnn}\sum_{x=1}^\nExnn\err_\meth^x \\
MAE_\meth = \overline{\abs{\vec{\err_\meth}}} \\
RMSE_\meth = \sqrt{\overline{\vec{\err_\meth}^2}} \\
\end{gather}
These statistics data inform about the accuracy of the methods compared to the reference.
\begin{gather}
RMSE_\meth = \sqrt{\overline{\vec{\err_\meth}^2}} \\
SDE_\meth = \sqrt{\frac{1}{\nExnn}\sum_{x=1}^\nExnn(\err_x-MAE)^2}
\end{gather}
These statistics data inform about the precision of the methods compared to the reference.
This statistics data inform about the precision of the methods compared to the reference.
On the website the statistics are forwarded in a table and in a box plot graph.
%------------------------------------------------