Open vasili111 opened 4 years ago
My best guess would be
confidence=0.95
errors=final_predictions-y_test
stats.t.interval(confidence,len(errors)-1,loc=errors.mean(),scale=stats.sem(errors))
So a simplified version of the RMSE case.
@Rosseel
Thank you. Why errors are not squared here as with RMSE?
First of all thank you for creating wonderful book! I find it very well written and easy to follow.
My question is: At page 80 there is a method for estimation confidence intervals for RMSE but not for MAE. I find MAE helpful too, because it is more easy to explain it to layman person than RSME. How can I estimate confidence intervals for MAE?
Thank you.