We fit a linear regression model with the gameโs condition as a predictor of auction price. Results of this model are summarized below:
| Estimate | Std. Error | t value | Pr(\(>\)|t|) | |
| (Intercept) | 42.8711 | 0.8140 | 52.67 | \(\lt\)0.0001 |
| cond_new | 10.8996 | 1.2583 | 8.66 | \(\lt\)0.0001 |
| \(df=139\) | ||||
Write down the equation for the model, note whether the slope is statistically different from zero, and interpret the coefficient.
Solution.
The equation for the line may be written as
\begin{equation*}
\widehat{\text{price}} = 42.87 + 10.90 \times \text{cond\_new}
\end{equation*}
Examining the regression output, we can see that the p-value for
cond_new is very close to zero, indicating there is strong evidence that the coefficient is different from zero when using this simple one-variable model.The
cond_new is a two-level categorical variable that takes value 1 when the game is new and value 0 when the game is used. This means the 10.90 model coefficient predicts an extra $10.90 for those games that are new versus those that are used.




