├── .Rproj.user ├── 4AB85078 │ ├── pcs │ │ ├── debug-breakpoints.pper │ │ ├── files-pane.pper │ │ ├── source-pane.pper │ │ ├── windowlayoutstate.pper │ │ └── workbench-pane.pper │ ├── persistent-state │ ├── rmd-outputs │ ├── saved_source_markers │ └── sources │ │ └── prop │ │ ├── 1AD71A40 │ │ └── INDEX └── shared │ └── notebooks │ ├── patch-chunk-names │ └── paths ├── .gitattributes ├── .github └── workflows │ └── main.yaml ├── .gitignore ├── Data ├── fight_data.csv ├── fight_data_raw.csv └── moneyline.csv ├── README.md ├── Scraper.R ├── UFC_Data.Rproj ├── hex-ufc-data.png ├── joining_moneylines.Rmd └── logs.txt /.Rproj.user/4AB85078/pcs/debug-breakpoints.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/.Rproj.user/4AB85078/pcs/debug-breakpoints.pper -------------------------------------------------------------------------------- /.Rproj.user/4AB85078/pcs/files-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/.Rproj.user/4AB85078/pcs/files-pane.pper -------------------------------------------------------------------------------- /.Rproj.user/4AB85078/pcs/source-pane.pper: -------------------------------------------------------------------------------- 1 | { 2 | "activeTab": -1 3 | } -------------------------------------------------------------------------------- /.Rproj.user/4AB85078/pcs/windowlayoutstate.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/.Rproj.user/4AB85078/pcs/windowlayoutstate.pper -------------------------------------------------------------------------------- /.Rproj.user/4AB85078/pcs/workbench-pane.pper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/.Rproj.user/4AB85078/pcs/workbench-pane.pper -------------------------------------------------------------------------------- /.Rproj.user/4AB85078/persistent-state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/.Rproj.user/4AB85078/persistent-state -------------------------------------------------------------------------------- /.Rproj.user/4AB85078/rmd-outputs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.Rproj.user/4AB85078/saved_source_markers: -------------------------------------------------------------------------------- 1 | {"active_set":"","sets":[]} -------------------------------------------------------------------------------- /.Rproj.user/4AB85078/sources/prop/1AD71A40: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/.Rproj.user/4AB85078/sources/prop/1AD71A40 -------------------------------------------------------------------------------- /.Rproj.user/4AB85078/sources/prop/INDEX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/.Rproj.user/4AB85078/sources/prop/INDEX -------------------------------------------------------------------------------- /.Rproj.user/shared/notebooks/patch-chunk-names: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.Rproj.user/shared/notebooks/paths: -------------------------------------------------------------------------------- 1 | E:/School/R Work/UFC_Data/.github/workflows/main.yaml="332B0B1A" 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/.gitignore -------------------------------------------------------------------------------- /Data/fight_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/Data/fight_data.csv -------------------------------------------------------------------------------- /Data/fight_data_raw.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/Data/fight_data_raw.csv -------------------------------------------------------------------------------- /Data/moneyline.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/Data/moneyline.csv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/README.md -------------------------------------------------------------------------------- /Scraper.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/Scraper.R -------------------------------------------------------------------------------- /UFC_Data.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/UFC_Data.Rproj -------------------------------------------------------------------------------- /hex-ufc-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/hex-ufc-data.png -------------------------------------------------------------------------------- /joining_moneylines.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/joining_moneylines.Rmd -------------------------------------------------------------------------------- /logs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew-couch/UFC_Data/HEAD/logs.txt --------------------------------------------------------------------------------