├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── marcelBatting.R ├── marcelPitching.R ├── marcelR-internal.R ├── marcelTeams.R ├── marcels.R └── utilities.R ├── README.md ├── data └── marcels.RData ├── inst ├── extdata │ ├── BattingMarcel2004.csv │ ├── PitchingMarcel2004.csv │ └── trades2017.csv └── scripts │ ├── compare_results.R │ ├── marcel_data_exporter.R │ └── test_wins.R ├── man ├── age_adjustment_reciprocal.Rd ├── apply_marcel_batting.Rd ├── apply_marcel_pitching.Rd ├── combine_batter_stints.Rd ├── combine_pitcher_stints.Rd ├── get_batting_stats.Rd ├── get_games_for_year.Rd ├── get_ipouts_for_year.Rd ├── get_pa_for_year.Rd ├── get_pitching_stats.Rd ├── get_primary_pos.Rd ├── get_seasonal_averages_batting.Rd ├── get_seasonal_averages_pitching.Rd ├── get_team_projected_batting.Rd ├── get_team_projected_pitching.Rd ├── get_team_projected_wins.Rd └── marcels.Rd └── marcelR.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/marcelBatting.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/R/marcelBatting.R -------------------------------------------------------------------------------- /R/marcelPitching.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/R/marcelPitching.R -------------------------------------------------------------------------------- /R/marcelR-internal.R: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /R/marcelTeams.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/R/marcelTeams.R -------------------------------------------------------------------------------- /R/marcels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/R/marcels.R -------------------------------------------------------------------------------- /R/utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/R/utilities.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/README.md -------------------------------------------------------------------------------- /data/marcels.RData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/data/marcels.RData -------------------------------------------------------------------------------- /inst/extdata/BattingMarcel2004.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/inst/extdata/BattingMarcel2004.csv -------------------------------------------------------------------------------- /inst/extdata/PitchingMarcel2004.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/inst/extdata/PitchingMarcel2004.csv -------------------------------------------------------------------------------- /inst/extdata/trades2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/inst/extdata/trades2017.csv -------------------------------------------------------------------------------- /inst/scripts/compare_results.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/inst/scripts/compare_results.R -------------------------------------------------------------------------------- /inst/scripts/marcel_data_exporter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/inst/scripts/marcel_data_exporter.R -------------------------------------------------------------------------------- /inst/scripts/test_wins.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/inst/scripts/test_wins.R -------------------------------------------------------------------------------- /man/age_adjustment_reciprocal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/man/age_adjustment_reciprocal.Rd -------------------------------------------------------------------------------- /man/apply_marcel_batting.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/man/apply_marcel_batting.Rd -------------------------------------------------------------------------------- /man/apply_marcel_pitching.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/man/apply_marcel_pitching.Rd -------------------------------------------------------------------------------- /man/combine_batter_stints.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/man/combine_batter_stints.Rd -------------------------------------------------------------------------------- /man/combine_pitcher_stints.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/man/combine_pitcher_stints.Rd -------------------------------------------------------------------------------- /man/get_batting_stats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/man/get_batting_stats.Rd -------------------------------------------------------------------------------- /man/get_games_for_year.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/man/get_games_for_year.Rd -------------------------------------------------------------------------------- /man/get_ipouts_for_year.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/man/get_ipouts_for_year.Rd -------------------------------------------------------------------------------- /man/get_pa_for_year.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/man/get_pa_for_year.Rd -------------------------------------------------------------------------------- /man/get_pitching_stats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/man/get_pitching_stats.Rd -------------------------------------------------------------------------------- /man/get_primary_pos.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/man/get_primary_pos.Rd -------------------------------------------------------------------------------- /man/get_seasonal_averages_batting.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/man/get_seasonal_averages_batting.Rd -------------------------------------------------------------------------------- /man/get_seasonal_averages_pitching.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/man/get_seasonal_averages_pitching.Rd -------------------------------------------------------------------------------- /man/get_team_projected_batting.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/man/get_team_projected_batting.Rd -------------------------------------------------------------------------------- /man/get_team_projected_pitching.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/man/get_team_projected_pitching.Rd -------------------------------------------------------------------------------- /man/get_team_projected_wins.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/man/get_team_projected_wins.Rd -------------------------------------------------------------------------------- /man/marcels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/man/marcels.Rd -------------------------------------------------------------------------------- /marcelR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdilday/marcelR/HEAD/marcelR.Rproj --------------------------------------------------------------------------------