Linear Regression
What type of problem does Linear Regression solve?
In the equation Y = β₀ + β₁X, what represents the intercept?
Which metric measures the average squared difference between actual and predicted values?
What is the range of the R² score?
Which library in Python is commonly used for implementing Linear Regression models?
Prior to training, why do we split data into training and testing sets?
What must be done to categorical variables before using them in Linear Regression?
"Homoscedasticity" refers to:
If the correlation coefficient (r) is 0.9, what does it indicate?
What is the purpose of the fit() method in Scikit-learn?