unexpected RMSE value

Issue #25 resolved
Deha U created an issue

Hi! I got an unexpected RMSE value from my scatterplot.

In the rdpscatterplotwidget.py it is written:

        rmse = np.sqrt(np.sum((y - yfit) ** 2))

I think it would be:

    rmse = np.sqrt(((y - yfit) ** 2).mean())

CMIIW

thank you.

Comments (3)

  1. Log in to comment