Simple Linear Regression Flashcards

1
Q

What is Simple Linear Regression?

A

Simple Linear Regression models the relationship between one independent variable (X) and one dependent variable (Y) using a linear equation.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the mathematical equation of Simple Linear Regression?

A

The equation is Y = β0 + β1X + ε, where β0 is the intercept, β1 is the slope, and ε is the error term.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the role of the slope (β1) in Simple Linear Regression?

A

The slope represents the change in the dependent variable (Y) for a one-unit increase in the independent variable (X).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the role of the intercept (β0) in Simple Linear Regression?

A

The intercept is the value of Y when X is 0, representing the starting point of the regression line.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What method is commonly used to find the best-fit line in Simple Linear Regression?

A

The Ordinary Least Squares (OLS) method minimizes the sum of squared residuals to determine the best-fit line.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you implement Simple Linear Regression in Scikit-Learn?

A
from sklearn.linear_model import LinearRegression
model = LinearRegression()
model.fit(X_train, y_train)
predictions = model.predict(X_test)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What metric is used to evaluate Simple Linear Regression?

A

R-squared (R²) measures how well the independent variable explains the variance in the dependent variable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What are the assumptions of Simple Linear Regression?

A

Linearity, Independence of errors, Homoscedasticity, Normality of residuals, and No significant outliers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What does a high R-squared value indicate?

A

A high R² value (close to 1) indicates that the model explains most of the variability in the dependent variable.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How do you visualize a Simple Linear Regression model?

A

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()
~~~

How well did you know this?
1
Not at all
2
3
4
5
Perfectly