| Sign Up | Google+
 

Beating save percentage to death: Logistic Regression.

Stay connected for news and updates

I reran my Even Strength Save Data using logistic regression. The results again show a significant difference between goalies.

First, I converted the data to sparse format (each line is a single observation). There are over 600k shots in the database. When I tried to run a logistic regression on the sparse data R politely coughed up a hairball and died. Unable to allocate a 1.6Gb data vector? Weak!

 

So I went back to the dense data and constructed the logits (ln(p/(1-p)) myself. I first corrected the observed save percentages for year.

 

> LinearModel.1 <- lm(CalcLogit ~ last.first, data=Dataset, weights=ESA)

> anova(LinearModel.1)

 

Analysis of Variance Table

Response: CalcLogit

                       Df  Sum Sq  Mean Sq F value  Pr(>F)

last.first 231 6041.3  26.153   1.6455  6.833e-07 ***

Residuals  693 11014.5 15.894

 

Even with the inherent selection bias, the weighted analysis shows a difference that is highly statistically significant. The difference in goalies accounts for about 35% of the variability seen in the calculated logits.

 

One problem with logistic regression is the difficulty in translating regression results into effects sizes. Beyond that is the question of practical significance in the differences.

 

Conclusion

Using weighted logistic regression, there is a statistically significant differences between NHL goalies in even strength save percentages over the period 1997-2010.

                                                                                                                                                                                                               

Recent Posts

The Next Read

There are 0 Comments. Add Yours. Loading

Shortcuts to mastering the comment thread. Use wisely.

C - Next Comment
X - Mark as Read

R - Reply
Z - Mark Read & Next

Shift + C - Previous
Shift + A - Mark All Read

Comment Settings

Live comment alert: Hide it!

Comments for this post are closed.

tracking_pixel_5351_tracker