├── .DS_Store ├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── pkgdown.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── .DS_Store ├── cbbdata-package.R ├── cbd_add_net_quad.R ├── cbd_all_metrics.R ├── cbd_ap_rankings.R ├── cbd_bpi_ratings.R ├── cbd_create_account.R ├── cbd_kenpom_authorization.R ├── cbd_kenpom_ratings.R ├── cbd_kenpom_ratings_archive.R ├── cbd_login.R ├── cbd_match_teams.R ├── cbd_net_archive.R ├── cbd_teams.R ├── cbd_torvik_conf_factors.R ├── cbd_torvik_current_resume.R ├── cbd_torvik_game_box.R ├── cbd_torvik_game_factors.R ├── cbd_torvik_game_prediction.R ├── cbd_torvik_game_stats.R ├── cbd_torvik_ncaa_results.R ├── cbd_torvik_ncaa_sheets.R ├── cbd_torvik_player_game.R ├── cbd_torvik_player_season.R ├── cbd_torvik_player_split.R ├── cbd_torvik_ratings.R ├── cbd_torvik_ratings_archive.R ├── cbd_torvik_resume_database.R ├── cbd_torvik_season_prediction.R ├── cbd_torvik_season_schedule.R ├── cbd_torvik_season_simulation.R ├── cbd_torvik_similar_resumes.R ├── cbd_torvik_team_factors.R ├── cbd_torvik_team_history.R ├── cbd_torvik_team_schedule.R ├── cbd_torvik_team_split.R ├── utils-pipe.R └── utils.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── cbbdata.Rproj ├── data ├── dictionary_kenpom_ratings.csv ├── dictionary_torvik_conf_factors.csv ├── dictionary_torvik_current_resume.csv ├── dictionary_torvik_game_box.csv ├── dictionary_torvik_game_factors.csv ├── dictionary_torvik_game_stats.csv ├── dictionary_torvik_ncaa_results.csv ├── dictionary_torvik_player_game.csv ├── dictionary_torvik_player_season.csv ├── dictionary_torvik_ratings.csv ├── dictionary_torvik_team_split.csv └── last_sim_dates.rda ├── man ├── .DS_Store ├── cbbdata-package.Rd ├── cbd_add_net_quad.Rd ├── cbd_all_metrics.Rd ├── cbd_ap_rankings.Rd ├── cbd_bpi_ratings.Rd ├── cbd_create_account.Rd ├── cbd_kenpom_authorization.Rd ├── cbd_kenpom_ratings.Rd ├── cbd_kenpom_ratings_archive.Rd ├── cbd_login.Rd ├── cbd_match_teams.Rd ├── cbd_net_archive.Rd ├── cbd_teams.Rd ├── cbd_torvik_conf_factors.Rd ├── cbd_torvik_current_resume.Rd ├── cbd_torvik_game_box.Rd ├── cbd_torvik_game_factors.Rd ├── cbd_torvik_game_prediction.Rd ├── cbd_torvik_game_stats.Rd ├── cbd_torvik_ncaa_results.Rd ├── cbd_torvik_ncaa_sheets.Rd ├── cbd_torvik_player_game.Rd ├── cbd_torvik_player_season.Rd ├── cbd_torvik_player_split.Rd ├── cbd_torvik_ratings.Rd ├── cbd_torvik_ratings_archive.Rd ├── cbd_torvik_resume_database.Rd ├── cbd_torvik_season_prediction.Rd ├── cbd_torvik_season_schedule.Rd ├── cbd_torvik_season_simulation.Rd ├── cbd_torvik_similar_resumes.Rd ├── cbd_torvik_team_factors.Rd ├── cbd_torvik_team_history.Rd ├── cbd_torvik_team_schedule.Rd ├── cbd_torvik_team_split.Rd ├── figures │ ├── README-unnamed-chunk-5-1.png │ ├── README-unnamed-chunk-6-1.png │ ├── gt_theme.png │ ├── logo.png │ └── with_logos.png └── pipe.Rd ├── pkgdown └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico └── vignettes ├── .gitignore └── articles └── release.Rmd /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/.DS_Store -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: Andrew Weatherman 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/.DS_Store -------------------------------------------------------------------------------- /R/cbbdata-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbbdata-package.R -------------------------------------------------------------------------------- /R/cbd_add_net_quad.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_add_net_quad.R -------------------------------------------------------------------------------- /R/cbd_all_metrics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_all_metrics.R -------------------------------------------------------------------------------- /R/cbd_ap_rankings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_ap_rankings.R -------------------------------------------------------------------------------- /R/cbd_bpi_ratings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_bpi_ratings.R -------------------------------------------------------------------------------- /R/cbd_create_account.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_create_account.R -------------------------------------------------------------------------------- /R/cbd_kenpom_authorization.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_kenpom_authorization.R -------------------------------------------------------------------------------- /R/cbd_kenpom_ratings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_kenpom_ratings.R -------------------------------------------------------------------------------- /R/cbd_kenpom_ratings_archive.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_kenpom_ratings_archive.R -------------------------------------------------------------------------------- /R/cbd_login.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_login.R -------------------------------------------------------------------------------- /R/cbd_match_teams.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_match_teams.R -------------------------------------------------------------------------------- /R/cbd_net_archive.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_net_archive.R -------------------------------------------------------------------------------- /R/cbd_teams.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_teams.R -------------------------------------------------------------------------------- /R/cbd_torvik_conf_factors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_conf_factors.R -------------------------------------------------------------------------------- /R/cbd_torvik_current_resume.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_current_resume.R -------------------------------------------------------------------------------- /R/cbd_torvik_game_box.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_game_box.R -------------------------------------------------------------------------------- /R/cbd_torvik_game_factors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_game_factors.R -------------------------------------------------------------------------------- /R/cbd_torvik_game_prediction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_game_prediction.R -------------------------------------------------------------------------------- /R/cbd_torvik_game_stats.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_game_stats.R -------------------------------------------------------------------------------- /R/cbd_torvik_ncaa_results.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_ncaa_results.R -------------------------------------------------------------------------------- /R/cbd_torvik_ncaa_sheets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_ncaa_sheets.R -------------------------------------------------------------------------------- /R/cbd_torvik_player_game.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_player_game.R -------------------------------------------------------------------------------- /R/cbd_torvik_player_season.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_player_season.R -------------------------------------------------------------------------------- /R/cbd_torvik_player_split.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_player_split.R -------------------------------------------------------------------------------- /R/cbd_torvik_ratings.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_ratings.R -------------------------------------------------------------------------------- /R/cbd_torvik_ratings_archive.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_ratings_archive.R -------------------------------------------------------------------------------- /R/cbd_torvik_resume_database.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_resume_database.R -------------------------------------------------------------------------------- /R/cbd_torvik_season_prediction.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_season_prediction.R -------------------------------------------------------------------------------- /R/cbd_torvik_season_schedule.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_season_schedule.R -------------------------------------------------------------------------------- /R/cbd_torvik_season_simulation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_season_simulation.R -------------------------------------------------------------------------------- /R/cbd_torvik_similar_resumes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_similar_resumes.R -------------------------------------------------------------------------------- /R/cbd_torvik_team_factors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_team_factors.R -------------------------------------------------------------------------------- /R/cbd_torvik_team_history.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_team_history.R -------------------------------------------------------------------------------- /R/cbd_torvik_team_schedule.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_team_schedule.R -------------------------------------------------------------------------------- /R/cbd_torvik_team_split.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/cbd_torvik_team_split.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cbbdata.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/cbbdata.Rproj -------------------------------------------------------------------------------- /data/dictionary_kenpom_ratings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/data/dictionary_kenpom_ratings.csv -------------------------------------------------------------------------------- /data/dictionary_torvik_conf_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/data/dictionary_torvik_conf_factors.csv -------------------------------------------------------------------------------- /data/dictionary_torvik_current_resume.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/data/dictionary_torvik_current_resume.csv -------------------------------------------------------------------------------- /data/dictionary_torvik_game_box.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/data/dictionary_torvik_game_box.csv -------------------------------------------------------------------------------- /data/dictionary_torvik_game_factors.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/data/dictionary_torvik_game_factors.csv -------------------------------------------------------------------------------- /data/dictionary_torvik_game_stats.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/data/dictionary_torvik_game_stats.csv -------------------------------------------------------------------------------- /data/dictionary_torvik_ncaa_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/data/dictionary_torvik_ncaa_results.csv -------------------------------------------------------------------------------- /data/dictionary_torvik_player_game.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/data/dictionary_torvik_player_game.csv -------------------------------------------------------------------------------- /data/dictionary_torvik_player_season.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/data/dictionary_torvik_player_season.csv -------------------------------------------------------------------------------- /data/dictionary_torvik_ratings.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/data/dictionary_torvik_ratings.csv -------------------------------------------------------------------------------- /data/dictionary_torvik_team_split.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/data/dictionary_torvik_team_split.csv -------------------------------------------------------------------------------- /data/last_sim_dates.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/data/last_sim_dates.rda -------------------------------------------------------------------------------- /man/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/.DS_Store -------------------------------------------------------------------------------- /man/cbbdata-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbbdata-package.Rd -------------------------------------------------------------------------------- /man/cbd_add_net_quad.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_add_net_quad.Rd -------------------------------------------------------------------------------- /man/cbd_all_metrics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_all_metrics.Rd -------------------------------------------------------------------------------- /man/cbd_ap_rankings.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_ap_rankings.Rd -------------------------------------------------------------------------------- /man/cbd_bpi_ratings.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_bpi_ratings.Rd -------------------------------------------------------------------------------- /man/cbd_create_account.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_create_account.Rd -------------------------------------------------------------------------------- /man/cbd_kenpom_authorization.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_kenpom_authorization.Rd -------------------------------------------------------------------------------- /man/cbd_kenpom_ratings.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_kenpom_ratings.Rd -------------------------------------------------------------------------------- /man/cbd_kenpom_ratings_archive.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_kenpom_ratings_archive.Rd -------------------------------------------------------------------------------- /man/cbd_login.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_login.Rd -------------------------------------------------------------------------------- /man/cbd_match_teams.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_match_teams.Rd -------------------------------------------------------------------------------- /man/cbd_net_archive.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_net_archive.Rd -------------------------------------------------------------------------------- /man/cbd_teams.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_teams.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_conf_factors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_conf_factors.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_current_resume.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_current_resume.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_game_box.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_game_box.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_game_factors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_game_factors.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_game_prediction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_game_prediction.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_game_stats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_game_stats.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_ncaa_results.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_ncaa_results.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_ncaa_sheets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_ncaa_sheets.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_player_game.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_player_game.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_player_season.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_player_season.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_player_split.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_player_split.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_ratings.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_ratings.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_ratings_archive.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_ratings_archive.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_resume_database.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_resume_database.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_season_prediction.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_season_prediction.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_season_schedule.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_season_schedule.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_season_simulation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_season_simulation.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_similar_resumes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_similar_resumes.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_team_factors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_team_factors.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_team_history.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_team_history.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_team_schedule.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_team_schedule.Rd -------------------------------------------------------------------------------- /man/cbd_torvik_team_split.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/cbd_torvik_team_split.Rd -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/figures/README-unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/figures/README-unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /man/figures/gt_theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/figures/gt_theme.png -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/with_logos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/figures/with_logos.png -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/articles/release.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreweatherman/cbbdata/HEAD/vignettes/articles/release.Rmd --------------------------------------------------------------------------------