Solved – accuracy of a regression prediction model

accuracypredictionregression

I developed two prediction models using non-linear regression analysis to predict a set of values using sigmoidal and power functions. I was wondering how I can evaluate the accuracy of these individual models (Sigmoid predictions vs Power predictions) besides RMSE? Also, are there any other hypothesis tests such as Chi-Square Goodness of Fit Test that I can use to evaluate the prediction accuracy of these models?

Best Answer

There are many measures of point prediction accuracy, like the , the , or the . You may want to browse through our questions with these tags. Why use a certain measure of forecast error (e.g. MAD) as opposed to another (e.g. MSE)? is likely helpful, as may be What are the shortcomings of the Mean Absolute Percentage Error (MAPE)? and Mean absolute error OR root mean squared error?

This page and discusses some of these KPIs in the context of time series forecasting.

Related Question