Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
How to check if the regression model fits the data well?
Home
Data Science
How to check if the regression model fits the data well?
+2
votes
asked
May 28, 2021
in
Data Science
by
sharadyadav1986
How to check if the regression model fits the data well?
regression-model
data-well
model
data-model
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 28, 2021
by
sharadyadav1986
There are a couple of metrics that you can use:
R-squared/Adjusted R-squared: Relative measure of fit. This was explained in a previous answer
F1 Score: Evaluates the null hypothesis that all regression coefficients are equal to zero vs the alternative hypothesis that at least one doesn’t equal zero
RMSE: Absolute measure of fit.
...