Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to calculate RMSE in QlikSense

How do I calculate RMSE in QlikSense

5 Replies
mvanlutterveld
Partner - Creator II
Partner - Creator II

Hi,

If you mean with RMSE the root mean square error, there’s no such ready-for-use function in Qlik Sense. Qlik Sense has got many statistical functions (check the help) that should enable you in calculating the RMSE. Check Wikipedia here and here for more background of the RMSE.

I'm aware I didn't really answer your question but I hope this will help a bit.

Cheers, Michiel

Not applicable
Author

Yeah, I meant root mean square error. I tried googling and wiki but wasn't able to come up with a formula

undergrinder
Specialist II
Specialist II

Hi Shivam,

This link may help you:

Root Mean Squared Error | Kaggle

2016-06-23 13_45_36-Root Mean Squared Error _ Kaggle.png

G.

mvanlutterveld
Partner - Creator II
Partner - Creator II

Well it's not Qlik Sense but I think this post can help you

jonathandienst
Partner - Champion III
Partner - Champion III

Something along these lines:

=sqrt(Sum(sqr(val1 - val2)) / Count(val1))


Where val1, val2 are the y and y' values. This assumes that val1 and val2 are properly associated with a 1:1 relationship. Substitute the correct field names for your document.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein