Multiple linear regression model:
\[Points_i = \beta_0 + \beta_1(Shots_i) + \beta_2(Assists_i) + \beta_3(Minutes_i) + \epsilon_i\]
##
## Call:
## lm(formula = points ~ shots_attempted + assists + minutes_played,
## data = players)
##
## Residuals:
## Min 1Q Median 3Q Max
## -8.5753 -2.0616 -0.0408 1.9100 6.8501
##
## Coefficients:
## Estimate Std. Error t value Pr(>|t|)
## (Intercept) 12.74684 2.64123 4.826 1.57e-05 ***
## shots_attempted 0.82003 0.16177 5.069 6.97e-06 ***
## assists 0.41213 0.23509 1.753 0.0862 .
## minutes_played -0.14288 0.07025 -2.034 0.0478 *
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Residual standard error: 3.129 on 46 degrees of freedom
## Multiple R-squared: 0.4875, Adjusted R-squared: 0.4541
## F-statistic: 14.59 on 3 and 46 DF, p-value: 8.238e-07
Interpretation: Each additional shot attempt increases expected points by approximately 0.8, holding other variables constant.