Here is an idea: build a predictive model of an offensive coach that predicts the play he will call, given a game situation (and based on that, build a predictiveness quotient for a coach).
It doesn't work like that in practice. Football is very dependent on matchups. Coaches will vary gameplans from week-to-week to exploit weaknesses they see on film.
Every NFL play for the past 10 years in CSV format
31–40 of 105 posts
Re: Every NFL play for the past 10 years in CSV format
#32Here is an idea: build a predictive model of an offensive coach that predicts the play he will call, given a game situation (and based on that, build a predictiveness quotient for a coach).
It doesn't work like that in practice. Football is very dependent on matchups. Coaches will vary gameplans from week-to-week to exploit weaknesses they see on film.
Re: Every NFL play for the past 10 years in CSV format
#33Here is an idea: build a predictive model of an offensive coach that predicts the play he will call, given a game situation (and based on that, build a predictiveness quotient for a coach).
Re: Every NFL play for the past 10 years in CSV format
#34 SELECT off, COUNT(off) AS count
FROM [nfl.2012reg]
WHERE description CONTAINS "INTERCEPTED"
GROUP BY off
ORDER BY count DESC
(This counts the number of plays that resulted in an interception by the team that threw the interception, sorted from most to fewest INTs)Re: Every NFL play for the past 10 years in CSV format
#35From Line 42536 of the 2008 CSV file: 20090201_PIT@ARI,2,30,18,ARI,PIT,1,1,1,(:18) (Shotgun) K.Warner pass short middle intended for A.Boldin INTERCEPTED by J.Harrison at PIT 0. J.Harrison for 100 yards TOUCHDOWN. Super Bowl Record longest interception return yards. Penalty on ARZ-E.Brown Face Mask (15 Yards) declined. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,7,10,200…
Thanks!
Re: Every NFL play for the past 10 years in CSV format
#36I wrote a small wrapper around the 4th down calculator on that site, which should help you figure out if your team should go for it on 4th down: http://downanddistance.herokuapp.com/
Re: Every NFL play for the past 10 years in CSV format
#37From Line 42536 of the 2008 CSV file: 20090201_PIT@ARI,2,30,18,ARI,PIT,1,1,1,(:18) (Shotgun) K.Warner pass short middle intended for A.Boldin INTERCEPTED by J.Harrison at PIT 0. J.Harrison for 100 yards TOUCHDOWN. Super Bowl Record longest interception return yards. Penalty on ARZ-E.Brown Face Mask (15 Yards) declined. The Replay Assistant challenged the runner broke the plane ruling and the play was Upheld.,7,10,200…
Though perhaps not as open...
Re: Every NFL play for the past 10 years in CSV format
#38I'm frankly surprised that this information is allowed to be distributed. I spent awhile in the financial services industry, and while it was really easy to obtain "public" information like stock quote data, I recall that we weren't allowed to simply scrape data from public sites... we had to pay a license fee to get a feed of the data if we were planning on repackaging & distributing it. It seems to me that the NFL…
Re: Every NFL play for the past 10 years in CSV format
#39Re: Every NFL play for the past 10 years in CSV format
#40Amazing!!! Thanks to www.advancednflstats.com for doing all the leg-work. Highly recommend their site too. Their in-game win probability statistics are always a must-have for me on game-day ^_^
I really like his 4th Down analysis: http://www.advancednflstats.com/2009/09/4th-down-study-part-... The tl;dr version can be found at: http://www.advancednflstats.com/2010/05/4th-down-briefs.html The conclusion is that teams should go for it on 4th down much more often than they currently do. He also has a calculator where you can get the exact values: http://wp.advancednflstats.com/4thdncalc1.php
http://www.math.toronto.edu/mpugh/Teaching/Sci199_03/Footbal...
I also believe Belichek/Adams have funded some football economics research.