Login
Remember
Register
Ask a Question
What are the assumptions required for linear regression? What if some of these assumptions are violated?
+2
votes
asked
May 28, 2021
in
Data Science
by
sharadyadav1986
What are the assumptions required for linear regression? What if some of these assumptions are violated?
linear-regression
assumptions
data-science
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
May 28, 2021
by
sharadyadav1986
The assumptions are as follows:
The sample data used to fit the model is representative of the population
The relationship between X and the mean of Y is linear
The variance of the residual is the same for any value of X (homoscedasticity)
Observations are independent of each other
For any value of X, Y is normally distributed.
Extreme violations of these assumptions will make the results redundant. Small violations of these assumptions will result in a greater bias or variance of the estimate.
...