-
Notifications
You must be signed in to change notification settings - Fork 2
/
final_project.Rmd
662 lines (539 loc) · 24.2 KB
/
final_project.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
---
title: "final_project"
author: "Diassa Diakite,Mohamed Mabizari"
date: "2/24/2020"
output: html_document
---
*link to github repository:* https://github.com/ddiakite1/final_project.git
## About
Growing up, football has always been a big part of our lives. In an attempt to win games, teams
use differing amounts of run and pass plays. Over time, you can see that running the ball and passing
the ball have varying success rates year by year at each level of football. In this project we will study the trends in teams being more likely to run/pass the ball, and look to find which has had more success.
There are five major conferences in college football, often referred to as the 'Power 5'. These
five conferences are as follows: the Southeastern Conference (SEC), the Big Ten Conference (B1G 10),
the Big 12 Conference (BIG 12), the Pacific-12 Conference (PAC 12), and the Atlantic Coast Conference (ACC). From these five conferences come majority of the powerhouse teams in college football, as well as the most popular teams. Within each conference, teams play each other and a conference champion is
determined by a conference championship game. As of 2014, there is a four team playoff system to
determine the sole national champion. By exploring data from 2010 to present date in each of these
power five conferences, I will be able to determine which play styles work best in each conference as
well as on a countrywide scale, and I can draw comparisons and contrasts between conferences.
As for data, we collected it from multiple different sports-reference.com subpages.
The datasests that I retrieved from sports-reference.com were downloaded as excel files, read using the readxl library within r.
Creators
Diassa Diakité
My name is Diassa Diakité and I am an undergraduate at Harvard studying Government with a specialization in Data Science. I can be reached at ddiakite@college.harvard.edu
Mohamed Mabizari
My name is Mohamed Mabizari and I am an undergraduate at Harvard studying Sociology with a secondary in Computer Science. I can be reached at mmabizari@college.harvard.edu
## Setup Chunk
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
library(readxl)
library(janitor)
library(plotly)
library(rgl)
library(car)
library(gt)
library(shinythemes)
library(tidyverse)
```
## Data
### SEC Data
```{r, echo = FALSE, message = FALSE, cache=TRUE}
# message=FALSE so messages on updated column names does not come up
# echo = FALSE so that all of the code is not shown in the html
# load in SEC 2019 data
sec19 <- read_excel("SEC/sec19.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2019) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# load in SEC 2018 data
sec18 <- read_excel("SEC/sec18.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2018) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create SEC dataset
sec <- sec19 %>%
full_join(sec18, by = NULL)
# load in SEC 2017 data
sec17 <- read_excel("SEC/sec17.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2017) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create SEC dataset
sec <- sec %>%
full_join(sec17, by = NULL)
# load in SEC 2016 data
sec16 <- read_excel("SEC/sec16.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2016) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create SEC dataset
sec <- sec %>%
full_join(sec16, by = NULL)
# load in SEC 2015 data
sec15 <- read_excel("SEC/sec15.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2015) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create SEC dataset
sec <- sec %>%
full_join(sec15, by = NULL)
# load in SEC 2014 data
sec14 <- read_excel("SEC/sec14.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2014) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create SEC dataset
sec <- sec %>%
full_join(sec14, by = NULL)
# load in SEC 2013 data
sec13 <- read_excel("SEC/sec13.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2013) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create SEC dataset
sec <- sec %>%
full_join(sec13, by = NULL)
# load in SEC 2012 data
sec12 <- read_excel("SEC/sec12.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2012) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create SEC dataset
sec <- sec %>%
full_join(sec12, by = NULL)
# load in SEC 2011 data
sec11 <- read_excel("SEC/sec11.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2011) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create SEC dataset
sec <- sec %>%
full_join(sec11, by = NULL)
# load in SEC 2010 data
sec10 <- read_excel("SEC/sec10.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2010) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create SEC dataset
sec <- sec %>%
full_join(sec10, by = NULL) %>% mutate(conference = "SEC")
```
### B1G 10 Data
```{r, echo = FALSE, message = FALSE, cache=TRUE}
# message=FALSE so messages on updated column names does not come up
# echo = FALSE so that all of the code is not shown in the html
# load in B1G 10 2019 data
b1g19 <- read_excel("B1G10/b1g19.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2019) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# load in B1G 2018 data
b1g18 <- read_excel("B1G10/b1g18.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2018) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create B1G dataset
b1g <- b1g19 %>%
full_join(b1g18, by = NULL)
# load in B1G 2017 data
b1g17 <- read_excel("B1G10/b1g17.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2017) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create B1G dataset
b1g <- b1g %>%
full_join(b1g17, by = NULL)
# load in B1G 2016 data
b1g16 <- read_excel("B1G10/b1g16.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2016) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create B1G dataset
b1g <- b1g %>%
full_join(b1g16, by = NULL)
# load in B1G 2015 data
b1g15 <- read_excel("B1G10/b1g15.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2015) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create B1G dataset
b1g <- b1g %>%
full_join(b1g15, by = NULL)
# load in B1G 2014 data
b1g14 <- read_excel("B1G10/b1g14.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2014) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create B1G dataset
b1g <- b1g %>%
full_join(b1g14, by = NULL)
# load in B1G 2013 data
b1g13 <- read_excel("B1G10/b1g13.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2013) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create B1G dataset
b1g <- b1g %>%
full_join(b1g13, by = NULL)
# load in B1G 2012 data
b1g12 <- read_excel("B1G10/b1g12.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2012) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create B1G dataset
b1g <- b1g %>%
full_join(b1g12, by = NULL)
# load in B1G 2011 data
b1g11 <- read_excel("B1G10/b1g11.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2011) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create B1G dataset
b1g <- b1g %>%
full_join(b1g11, by = NULL)
# load in B1G 2010 data
b1g10 <- read_excel("B1G10/b1g10.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2010) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create B1G dataset
b1g <- b1g %>%
full_join(b1g10, by = NULL) %>% mutate(conference = "B1G 10")
```
### BIG 12 Data
```{r, echo = FALSE, message = FALSE, cache=TRUE}
# message=FALSE so messages on updated column names does not come up
# echo = FALSE so that all of the code is not shown in the html
# load in Big 12 2019 data
b1219 <- read_excel("BIG12/b1219.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2019) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# load in BIG12 2018 data
b1218 <- read_excel("BIG12/b1218.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2018) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create BIG12 dataset
b12 <- b1219 %>%
full_join(b1218, by = NULL)
# load in BIG12 2017 data
b1217 <- read_excel("BIG12/b1217.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2017) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create BIG12 dataset
b12 <- b12 %>%
full_join(b1217, by = NULL)
# load in BIG12 2016 data
b1216 <- read_excel("BIG12/b1216.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2016) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create BIG12 dataset
b12 <- b12 %>%
full_join(b1216, by = NULL)
# load in BIG12 2015 data
b1215 <- read_excel("BIG12/b1215.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2015) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create BIG12 dataset
b12 <- b12 %>%
full_join(b1215, by = NULL)
# load in BIG12 2014 data
b1214 <- read_excel("BIG12/b1214.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2014) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create BIG12 dataset
b12 <- b12 %>%
full_join(b1214, by = NULL)
# load in BIG12 2013 data
b1213 <- read_excel("BIG12/b1213.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2013) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create BIG12 dataset
b12 <- b12 %>%
full_join(b1213, by = NULL)
# load in BIG12 2012 data
b1212 <- read_excel("BIG12/b1212.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2012) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create BIG12 dataset
b12 <- b12 %>%
full_join(b1212, by = NULL)
# load in BIG12 2011 data
b1211 <- read_excel("BIG12/b1211.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2011) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create BIG12 dataset
b12 <- b12 %>%
full_join(b1211, by = NULL)
# load in BIG12 2010 data
b1210 <- read_excel("BIG12/b1210.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2010) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create BIG12 dataset
b12 <- b12 %>%
full_join(b1210, by = NULL) %>% mutate(conference = "BIG 12")
```
### PAC 12 Data
```{r, echo = FALSE, message = FALSE, cache=TRUE}
# message=FALSE so messages on updated column names does not come up
# echo = FALSE so that all of the code is not shown in the html
# load in PAC12 2019 data
pac19 <- read_excel("PAC12/pac19.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2019) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# load in PAC12 2018 data
pac18 <- read_excel("PAC12/pac18.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2018) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create PAC12 dataset
pac <- pac19 %>%
full_join(pac18, by = NULL)
# load in PAC12 2017 data
pac17 <- read_excel("PAC12/pac17.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2017) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create PAC12 dataset
pac <- pac %>%
full_join(pac17, by = NULL)
# load in PAC12 2016 data
pac16 <- read_excel("PAC12/pac16.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2016) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create PAC12 dataset
pac <- pac %>%
full_join(pac16, by = NULL)
# load in PAC12 2015 data
pac15 <- read_excel("PAC12/pac15.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2015) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create PAC12 dataset
pac <- pac %>%
full_join(pac15, by = NULL)
# load in PAC12 2014 data
pac14 <- read_excel("PAC12/pac14.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2014) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create PAC12 dataset
pac <- pac %>%
full_join(pac14, by = NULL)
# load in PAC12 2013 data
pac13 <- read_excel("PAC12/pac13.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2013) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create PAC12 dataset
pac <- pac %>%
full_join(pac13, by = NULL)
# load in PAC12 2012 data
pac12 <- read_excel("PAC12/pac12.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2012) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create PAC12 dataset
pac <- pac %>%
full_join(pac12, by = NULL)
# load in PAC12 2011 data
pac11 <- read_excel("PAC12/pac11.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2011) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create PAC12 dataset
pac <- pac %>%
full_join(pac11, by = NULL)
# load in PAC12 2010 data
pac10 <- read_excel("PAC12/pac10.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2010) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create PAC12 dataset
pac <- pac %>%
full_join(pac10, by = NULL) %>% mutate(conference = "PAC 12")
```
### ACC Data
```{r, echo = FALSE, message = FALSE, cache=TRUE}
# message=FALSE so messages on updated column names does not come up
# echo = FALSE so that all of the code is not shown in the html
# load in ACC 2019 data
acc19 <- read_excel("ACC/acc19.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2019) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# load in ACC 2018 data
acc18 <- read_excel("ACC/acc18.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2018) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create ACC dataset
acc <- acc19 %>%
full_join(acc18, by = NULL)
# load in ACC 2017 data
acc17 <- read_excel("ACC/acc17.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2017) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create ACC dataset
acc <- acc %>%
full_join(acc17, by = NULL)
# load in ACC 2016 data
acc16 <- read_excel("ACC/acc16.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2016) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create ACC dataset
acc <- acc %>%
full_join(acc16, by = NULL)
# load in ACC 2015 data
acc15 <- read_excel("ACC/acc15.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2015) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create ACC dataset
acc <- acc %>%
full_join(acc15, by = NULL)
# load in ACC 2014 data
acc14 <- read_excel("ACC/acc14.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2014) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create ACC dataset
acc <- acc %>%
full_join(acc14, by = NULL)
# load in ACC 2013 data
acc13 <- read_excel("ACC/acc13.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2013) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create ACC dataset
acc <- acc %>%
full_join(acc13, by = NULL)
# load in ACC 2012 data
acc12 <- read_excel("ACC/acc12.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2012) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create ACC dataset
acc <- acc %>%
full_join(acc12, by = NULL)
# load in ACC 2011 data
acc11 <- read_excel("ACC/acc11.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2011) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create ACC dataset
acc <- acc %>%
full_join(acc11, by = NULL)
# load in ACC 2010 data
acc10 <- read_excel("ACC/acc10.xls",skip=1) %>%
clean_names() %>%
mutate(year = 2010) %>%
mutate(w_pct = w/(w+l), c_w_pct = c_w/(c_w+c_l)) %>%
select(year, w, l, w_pct, c_w, c_l, c_w_pct, school, p_cmp, p_att, p_pct, p_yds, p_td, r_att, r_yds, r_avg, r_td, fum, int)
# full_join to create ACC dataset
acc <- acc %>%
full_join(acc10, by = NULL) %>% mutate(conference = "ACC")
```
## Data Fun
```{r, include = FALSE, message=FALSE}
# message=FALSE so messages on updated column names does not come up
# echo = FALSE so that all of the code is not shown in the html
# All CFB stats
p5 <- full_join(sec,
full_join(b1g,
full_join(b12,
full_join(pac, acc, by=NULL), by=NULL), by=NULL), by=NULL) %>%
rename(rushATT = r_att, rushYDS = r_yds, passATT = p_att, passYDS = p_yds,
passCMP = p_cmp, passPCT = p_pct, rushTD = r_td, passTD = p_td)
p5sum <- p5 %>% group_by(year, conference) %>%
summarise(rushATT = mean(rushATT), rushYDS = mean(rushYDS), passATT = mean(passATT),
passYDS = mean(passYDS), passCMP = mean(passCMP), passPCT = mean(passPCT),
rushTD = mean(rushTD), passTD = mean(passTD))
saveRDS(p5, file = "p5.RDS")
saveRDS(p5sum, file = "p5sum.RDS")
#GT Tables Creation
statistic <- c("Rushing Attempts", "Rushing Yards", "Passing Attempts", "Passing Yards", "Pass Completions", "Passing Completion Percentage", "Rushing Touchdowns", "Passing Touchdowns")
p5Cor <- c(cor(p5$rushATT, p5$w_pct), cor(p5$rushYDS, p5$w_pct), cor(p5$passATT, p5$w_pct),
cor(p5$passYDS, p5$w_pct), cor(p5$passCMP, p5$w_pct), cor(p5$passPCT, p5$w_pct),
cor(p5$rushTD, p5$w_pct), cor(p5$passTD, p5$w_pct))
confCorfile <- p5 %>% filter(conference=="SEC")
confCorgtfile <- c(cor(confCorfile$rushATT, confCorfile$c_w_pct),
cor(confCorfile$rushYDS, confCorfile$c_w_pct),
cor(confCorfile$passATT, confCorfile$c_w_pct),
cor(confCorfile$passYDS, confCorfile$c_w_pct),
cor(confCorfile$passCMP, confCorfile$c_w_pct),
cor(confCorfile$passPCT, confCorfile$c_w_pct),
cor(confCorfile$rushTD, confCorfile$c_w_pct),
cor(confCorfile$passTD, confCorfile$c_w_pct))
confCorgt <- data.frame(statistic, confCorgtfile) %>% arrange(desc(confCorgtfile)) %>% gt() %>%
tab_header(title = "Correlation To Conference Win Percentage",
subtitle = "In the Southeastern Conference") %>%
cols_label(statistic = "Statistical Category", confCorgtfile = "Correlation Coefficient")
p5Corgt <- data.frame(statistic, p5Cor) %>% arrange(desc(p5Cor)) %>% gt() %>%
tab_header(title = "Correlation To Win Percentage",
subtitle = "In All Power 5 Conferences") %>%
cols_label(statistic = "Statistical Category", p5Cor = "Correlation Coefficient")
saveRDS(p5Corgt, file = "p5Corgt.RDS")
```