- R square = (1- (Sum of Squares of Error/Sum of Squares of Total))
- SST - Variance of dependent variable
- SSE - Variance of Actual vs Predicted Values
- Adjusted R Square = (1-((n-1)/(n-p-1)))(1-RSquare)
- P - Number of independent variables
- n - records in dataset
- For every record predicted compute error
- Square it and find mean
- RMSE error should be same for training and testing dataset
- Model can't explain the dataset
- R Square value very less
- Add more Independent variable
- RMSE High for test dataset, RMSE low for training dataset
- Cut down Independent variable
- Conduct P test to validate null hypothesis is valid
- Subset Selection Technique
- Cross Validation Technique
- Z test / P Test
No comments:
Post a Comment