├── 1_rebuild_db.R ├── 2_scrape_new_games.R ├── R ├── epa_predict.R ├── espn_wp.R ├── let_russ_cook.R ├── nfc_west_starting_qbs.R ├── nfl_draft_espn_dk.R ├── on_off_nflreadr.R ├── pass_rate_over_expected.R ├── preseason_predictiveness.R └── wilson_game_pass_freq.R ├── README.md ├── base_code.R ├── darko └── 2_ourlads_projections.R ├── data ├── Scrambles 1999-2004 UPDATE for NFLfastR.xlsx ├── coverage_sample.rds └── dk_draft_2022.csv ├── helpers.R ├── img └── lrc_SEA.png └── pff ├── 0_scrape.R ├── 6a_ourlads_scrape.R ├── 99_passblock_piece.R └── data └── ourlads.csv /1_rebuild_db.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/1_rebuild_db.R -------------------------------------------------------------------------------- /2_scrape_new_games.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/2_scrape_new_games.R -------------------------------------------------------------------------------- /R/epa_predict.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/R/epa_predict.R -------------------------------------------------------------------------------- /R/espn_wp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/R/espn_wp.R -------------------------------------------------------------------------------- /R/let_russ_cook.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/R/let_russ_cook.R -------------------------------------------------------------------------------- /R/nfc_west_starting_qbs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/R/nfc_west_starting_qbs.R -------------------------------------------------------------------------------- /R/nfl_draft_espn_dk.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/R/nfl_draft_espn_dk.R -------------------------------------------------------------------------------- /R/on_off_nflreadr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/R/on_off_nflreadr.R -------------------------------------------------------------------------------- /R/pass_rate_over_expected.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/R/pass_rate_over_expected.R -------------------------------------------------------------------------------- /R/preseason_predictiveness.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/R/preseason_predictiveness.R -------------------------------------------------------------------------------- /R/wilson_game_pass_freq.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/R/wilson_game_pass_freq.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # nfl_data_pipeline 2 | Create db for data 3 | -------------------------------------------------------------------------------- /base_code.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/base_code.R -------------------------------------------------------------------------------- /darko/2_ourlads_projections.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/darko/2_ourlads_projections.R -------------------------------------------------------------------------------- /data/Scrambles 1999-2004 UPDATE for NFLfastR.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/data/Scrambles 1999-2004 UPDATE for NFLfastR.xlsx -------------------------------------------------------------------------------- /data/coverage_sample.rds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/data/coverage_sample.rds -------------------------------------------------------------------------------- /data/dk_draft_2022.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/data/dk_draft_2022.csv -------------------------------------------------------------------------------- /helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/helpers.R -------------------------------------------------------------------------------- /img/lrc_SEA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/img/lrc_SEA.png -------------------------------------------------------------------------------- /pff/0_scrape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/pff/0_scrape.R -------------------------------------------------------------------------------- /pff/6a_ourlads_scrape.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/pff/6a_ourlads_scrape.R -------------------------------------------------------------------------------- /pff/99_passblock_piece.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/pff/99_passblock_piece.R -------------------------------------------------------------------------------- /pff/data/ourlads.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guga31bb/nfl_data_pipeline/HEAD/pff/data/ourlads.csv --------------------------------------------------------------------------------