Quantcast
Channel: PirateGrunt » NFL
Viewing all articles
Browse latest Browse all 3

NFL Code on Github

0
0

I’ve made some revisions and simplifications to the code to compile NFL data. It’s now all out on Github for anyone to play with in advance of the Superbowl. In the meantime, here’s a lovely picture comparing every team’s offense- as measured by total offensive yards- against their defenders.

Note the anemic Chicago offense.

https://github.com/PirateGrunt/NFL

library(ggplot2)
p = ggplot(dfTeamVsTeam, aes(x = as.factor(ThisTeam), y = as.factor(Opponent), fill = ThisTeamTotalYards))
p = p + geom_tile() +  scale_fill_gradient(low="red", high="blue")
p = p + labs(title = "Total yardage", x = "Offense", y = "Defense")
p = p + theme(panel.grid.major = element_blank())
print(p)

TeamVsTeam



Viewing all articles
Browse latest Browse all 3

Latest Images

Trending Articles





Latest Images