BA 4 - Single Variable Linear Regression Flashcards

1
Q

Regression, linear regression, single variable linear regression

A

Regression - examines the relationship among variables

Linear regression - examines linear relationships among variables

Single variable linear regression - seeks to identify a linear relationship between two variables

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

Uses of regression

A

Primary uses:

i. Studying the magnitude and structure of a relationship between two variables; and
ii. Forecasting a variable based on its relationship with another variable.

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

Regression equation

A

y^ = a + bx

y is the dependent variable, x is the independent variable, a is the y-intercept, b is the slope

true eq: y = alpha + (beta)x + epsilon

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

Point forecast

A

The value of y determined by entering the particular value of x into the regression equation

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

Prediction interval

A

Interval around the point forecast likely to contain the actual value of y.

The width of the prediction interval is based on the:

i. sd of the regression;
ii. the desired level of confidence; and
iii. the location of the x-value in relation to the historical values of the independent variable.

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

R^2

A

R^2 = (Regression sum of squares)/(Total sum of squares)

i.e. variation explained by the regression line divided by the total variation.

0 =< R^2 =< 1

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

p-value

A

result of the hypothesis test on whether there is a significant linear relationship - i.e. whether the slope of the regression line is zero
H0: beta = 0; Ha: beta =/= 0

If p<= 0.5 and if the confidence interval doesn’t contain zero we fail to accept H0.

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

Residual, regression and total sum of squares

A

Residual - variation unexplained by the regression equation

Regression - variation explained by the regression equation

Total - variation around the mean line

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

To check in residual plot

A

Residuals should be randomly spread above and below the x-axis.
Pattern implies other factors are at play.

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

To know if SVLR is the right fit

A

R^2
p-value
residual plot

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

Regression analysis with categorical variables

A

Use a dummy variable

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

[EXCEL] Value of y

A

=CELL1+CELL2*x

for y=a + bx

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

[EXCEL] To calculate point forecasts

A

=SUMPRODUCT(array1,[array2],[array3]…)

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

[EXCEL] To forecast value

A

=FORECAST(x, known_ys, known_xs)

dependent array, independent array

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

[EXCEL] Regression models with dummy variables

A

=IF(logical_test,[value_if_true],[value_if_false])

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