├── .gitignore ├── README.md ├── data ├── final_output.csv ├── grounds.csv ├── json │ ├── all_matches.json │ ├── matches-first-class.json │ ├── matches-list-a.json │ ├── matches-odi.json │ ├── matches-t20.json │ ├── matches-t20i.json │ └── matches-test.json ├── rankings_odi.csv └── rankings_test.csv ├── figs ├── winbyCountry.pdf ├── winbyDL.pdf ├── winbyDayNight.pdf ├── winbyMonthEngland.pdf ├── winbyRank.pdf └── winbyType.pdf ├── scripts ├── 01a_download_match_data.py ├── 01b_download_grounds_data.py ├── 02_parse_cric.py ├── 03_parse_rankings.py ├── 04_merge_ranking_grounds_data.R ├── 05_cricket.R └── requirements.txt ├── streamlit ├── requirements.txt └── streamlit_app.py └── write_up ├── cricket.pdf ├── cricket.tex └── luckybib.bib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/README.md -------------------------------------------------------------------------------- /data/final_output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/data/final_output.csv -------------------------------------------------------------------------------- /data/grounds.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/data/grounds.csv -------------------------------------------------------------------------------- /data/json/all_matches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/data/json/all_matches.json -------------------------------------------------------------------------------- /data/json/matches-first-class.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/data/json/matches-first-class.json -------------------------------------------------------------------------------- /data/json/matches-list-a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/data/json/matches-list-a.json -------------------------------------------------------------------------------- /data/json/matches-odi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/data/json/matches-odi.json -------------------------------------------------------------------------------- /data/json/matches-t20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/data/json/matches-t20.json -------------------------------------------------------------------------------- /data/json/matches-t20i.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/data/json/matches-t20i.json -------------------------------------------------------------------------------- /data/json/matches-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/data/json/matches-test.json -------------------------------------------------------------------------------- /data/rankings_odi.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/data/rankings_odi.csv -------------------------------------------------------------------------------- /data/rankings_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/data/rankings_test.csv -------------------------------------------------------------------------------- /figs/winbyCountry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/figs/winbyCountry.pdf -------------------------------------------------------------------------------- /figs/winbyDL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/figs/winbyDL.pdf -------------------------------------------------------------------------------- /figs/winbyDayNight.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/figs/winbyDayNight.pdf -------------------------------------------------------------------------------- /figs/winbyMonthEngland.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/figs/winbyMonthEngland.pdf -------------------------------------------------------------------------------- /figs/winbyRank.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/figs/winbyRank.pdf -------------------------------------------------------------------------------- /figs/winbyType.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/figs/winbyType.pdf -------------------------------------------------------------------------------- /scripts/01a_download_match_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/scripts/01a_download_match_data.py -------------------------------------------------------------------------------- /scripts/01b_download_grounds_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/scripts/01b_download_grounds_data.py -------------------------------------------------------------------------------- /scripts/02_parse_cric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/scripts/02_parse_cric.py -------------------------------------------------------------------------------- /scripts/03_parse_rankings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/scripts/03_parse_rankings.py -------------------------------------------------------------------------------- /scripts/04_merge_ranking_grounds_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/scripts/04_merge_ranking_grounds_data.R -------------------------------------------------------------------------------- /scripts/05_cricket.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/scripts/05_cricket.R -------------------------------------------------------------------------------- /scripts/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/scripts/requirements.txt -------------------------------------------------------------------------------- /streamlit/requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | seaborn 3 | matplotlib 4 | -------------------------------------------------------------------------------- /streamlit/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/streamlit/streamlit_app.py -------------------------------------------------------------------------------- /write_up/cricket.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/write_up/cricket.pdf -------------------------------------------------------------------------------- /write_up/cricket.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/write_up/cricket.tex -------------------------------------------------------------------------------- /write_up/luckybib.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outside-edge/toss-up/HEAD/write_up/luckybib.bib --------------------------------------------------------------------------------