Simple Linear Regression Flashcards
What is Simple Linear Regression?
Simple Linear Regression models the relationship between one independent variable (X) and one dependent variable (Y) using a linear equation.
What is the mathematical equation of Simple Linear Regression?
The equation is Y = β0 + β1X + ε, where β0 is the intercept, β1 is the slope, and ε is the error term.
What is the role of the slope (β1) in Simple Linear Regression?
The slope represents the change in the dependent variable (Y) for a one-unit increase in the independent variable (X).
What is the role of the intercept (β0) in Simple Linear Regression?
The intercept is the value of Y when X is 0, representing the starting point of the regression line.
What method is commonly used to find the best-fit line in Simple Linear Regression?
The Ordinary Least Squares (OLS) method minimizes the sum of squared residuals to determine the best-fit line.
How do you implement Simple Linear Regression in Scikit-Learn?
from sklearn.linear_model import LinearRegression model = LinearRegression() model.fit(X_train, y_train) predictions = model.predict(X_test)
What metric is used to evaluate Simple Linear Regression?
R-squared (R²) measures how well the independent variable explains the variance in the dependent variable.
What are the assumptions of Simple Linear Regression?
Linearity, Independence of errors, Homoscedasticity, Normality of residuals, and No significant outliers.
What does a high R-squared value indicate?
A high R² value (close to 1) indicates that the model explains most of the variability in the dependent variable.
How do you visualize a Simple Linear Regression model?
Using a scatter plot with the regression line: ```
import matplotlib.pyplot as plt
plt.scatter(X, y, color=’blue’)
plt.plot(X, model.predict(X), color=’red’)
plt.show()
~~~