├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── FreeCompetitions.R ├── FreeJoinPlayerNickname.R ├── FreeMatches.R ├── GetPlayerFootedness.R ├── JoinPlayerNickName.R ├── MultiCompEvents.R ├── MultiCompLineups.R ├── MultiCompMatches.R ├── StatsBombFree360Events.R ├── StatsBombFreeEvents.R ├── StatsBombFreeLineups.R ├── all_player_matches.R ├── allclean.R ├── allevents.R ├── allevents_360.R ├── alllineups.R ├── annotate_pitchSB.R ├── cleanlineups.R ├── cleanlocations.R ├── competitions.R ├── defensiveinfo.R ├── formatelapsedtime.R ├── free_allevents.R ├── free_allevents_360.R ├── freezeframeinfo.R ├── get.360matchFree.R ├── getOpposingTeam.R ├── get_events_360.R ├── getevents.R ├── getgamestate.R ├── getlineups.R ├── getlineupsFree.R ├── getmatchFree.R ├── getmatches.R ├── getminutesplayed.R ├── getpositioncategory.R ├── goalkeeperinfo.R ├── matchesvector.R ├── player_all_matches.R ├── player_match.R ├── player_match_multicomp.R ├── player_season.R ├── player_season_multicomp.R ├── possessioninfo.R ├── removeallexcept.R ├── shotinfo.R ├── team_all_matches.R ├── team_match.R ├── team_match_multicomp.R ├── team_season.R ├── team_season_multicomp.R └── theme_SB.R ├── README.md ├── StatsBombR.Rproj ├── man ├── FreeCompetitions.Rd ├── FreeJoinPlayerNickname.Rd ├── FreeMatches.Rd ├── GetPlayerFootedness.Rd ├── JoinPlayerNickName.Rd ├── MultiCompEvents.Rd ├── MultiCompMatches.Rd ├── StatsBombFreeEvents.Rd ├── StatsBombFreeLineups.Rd ├── allclean.Rd ├── allevents.Rd ├── alllineups.Rd ├── annotate_pitchSB.Rd ├── cleanlineups.Rd ├── cleanlocations.Rd ├── competitions.Rd ├── defensiveinfo.Rd ├── formatelapsedtime.Rd ├── freezeframeinfo.Rd ├── getOpposingTeam.Rd ├── getevents.Rd ├── getgamestate.Rd ├── getlineups.Rd ├── getlineupsFree.Rd ├── getmatchFree.Rd ├── getmatches.Rd ├── getminutesplayed.Rd ├── getpositioncategory.Rd ├── goalkeeperinfo.Rd ├── matchesvector.Rd ├── player_all_matches.Rd ├── player_match.Rd ├── player_match_multicomp.Rd ├── player_season.Rd ├── possessioninfo.Rd ├── shotinfo.Rd ├── team_all_matches.Rd ├── team_match.Rd ├── team_match_multicomp.Rd ├── team_season.Rd └── theme_SB.Rd └── team_match.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/FreeCompetitions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/FreeCompetitions.R -------------------------------------------------------------------------------- /R/FreeJoinPlayerNickname.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/FreeJoinPlayerNickname.R -------------------------------------------------------------------------------- /R/FreeMatches.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/FreeMatches.R -------------------------------------------------------------------------------- /R/GetPlayerFootedness.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/GetPlayerFootedness.R -------------------------------------------------------------------------------- /R/JoinPlayerNickName.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/JoinPlayerNickName.R -------------------------------------------------------------------------------- /R/MultiCompEvents.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/MultiCompEvents.R -------------------------------------------------------------------------------- /R/MultiCompLineups.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/MultiCompLineups.R -------------------------------------------------------------------------------- /R/MultiCompMatches.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/MultiCompMatches.R -------------------------------------------------------------------------------- /R/StatsBombFree360Events.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/StatsBombFree360Events.R -------------------------------------------------------------------------------- /R/StatsBombFreeEvents.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/StatsBombFreeEvents.R -------------------------------------------------------------------------------- /R/StatsBombFreeLineups.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/StatsBombFreeLineups.R -------------------------------------------------------------------------------- /R/all_player_matches.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/all_player_matches.R -------------------------------------------------------------------------------- /R/allclean.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/allclean.R -------------------------------------------------------------------------------- /R/allevents.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/allevents.R -------------------------------------------------------------------------------- /R/allevents_360.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/allevents_360.R -------------------------------------------------------------------------------- /R/alllineups.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/alllineups.R -------------------------------------------------------------------------------- /R/annotate_pitchSB.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/annotate_pitchSB.R -------------------------------------------------------------------------------- /R/cleanlineups.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/cleanlineups.R -------------------------------------------------------------------------------- /R/cleanlocations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/cleanlocations.R -------------------------------------------------------------------------------- /R/competitions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/competitions.R -------------------------------------------------------------------------------- /R/defensiveinfo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/defensiveinfo.R -------------------------------------------------------------------------------- /R/formatelapsedtime.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/formatelapsedtime.R -------------------------------------------------------------------------------- /R/free_allevents.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/free_allevents.R -------------------------------------------------------------------------------- /R/free_allevents_360.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/free_allevents_360.R -------------------------------------------------------------------------------- /R/freezeframeinfo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/freezeframeinfo.R -------------------------------------------------------------------------------- /R/get.360matchFree.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/get.360matchFree.R -------------------------------------------------------------------------------- /R/getOpposingTeam.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/getOpposingTeam.R -------------------------------------------------------------------------------- /R/get_events_360.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/get_events_360.R -------------------------------------------------------------------------------- /R/getevents.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/getevents.R -------------------------------------------------------------------------------- /R/getgamestate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/getgamestate.R -------------------------------------------------------------------------------- /R/getlineups.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/getlineups.R -------------------------------------------------------------------------------- /R/getlineupsFree.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/getlineupsFree.R -------------------------------------------------------------------------------- /R/getmatchFree.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/getmatchFree.R -------------------------------------------------------------------------------- /R/getmatches.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/getmatches.R -------------------------------------------------------------------------------- /R/getminutesplayed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/getminutesplayed.R -------------------------------------------------------------------------------- /R/getpositioncategory.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/getpositioncategory.R -------------------------------------------------------------------------------- /R/goalkeeperinfo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/goalkeeperinfo.R -------------------------------------------------------------------------------- /R/matchesvector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/matchesvector.R -------------------------------------------------------------------------------- /R/player_all_matches.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/player_all_matches.R -------------------------------------------------------------------------------- /R/player_match.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/player_match.R -------------------------------------------------------------------------------- /R/player_match_multicomp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/player_match_multicomp.R -------------------------------------------------------------------------------- /R/player_season.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/player_season.R -------------------------------------------------------------------------------- /R/player_season_multicomp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/player_season_multicomp.R -------------------------------------------------------------------------------- /R/possessioninfo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/possessioninfo.R -------------------------------------------------------------------------------- /R/removeallexcept.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/removeallexcept.R -------------------------------------------------------------------------------- /R/shotinfo.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/shotinfo.R -------------------------------------------------------------------------------- /R/team_all_matches.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/team_all_matches.R -------------------------------------------------------------------------------- /R/team_match.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/team_match.R -------------------------------------------------------------------------------- /R/team_match_multicomp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/team_match_multicomp.R -------------------------------------------------------------------------------- /R/team_season.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/team_season.R -------------------------------------------------------------------------------- /R/team_season_multicomp.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/team_season_multicomp.R -------------------------------------------------------------------------------- /R/theme_SB.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/R/theme_SB.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/README.md -------------------------------------------------------------------------------- /StatsBombR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/StatsBombR.Rproj -------------------------------------------------------------------------------- /man/FreeCompetitions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/FreeCompetitions.Rd -------------------------------------------------------------------------------- /man/FreeJoinPlayerNickname.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/FreeJoinPlayerNickname.Rd -------------------------------------------------------------------------------- /man/FreeMatches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/FreeMatches.Rd -------------------------------------------------------------------------------- /man/GetPlayerFootedness.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/GetPlayerFootedness.Rd -------------------------------------------------------------------------------- /man/JoinPlayerNickName.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/JoinPlayerNickName.Rd -------------------------------------------------------------------------------- /man/MultiCompEvents.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/MultiCompEvents.Rd -------------------------------------------------------------------------------- /man/MultiCompMatches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/MultiCompMatches.Rd -------------------------------------------------------------------------------- /man/StatsBombFreeEvents.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/StatsBombFreeEvents.Rd -------------------------------------------------------------------------------- /man/StatsBombFreeLineups.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/StatsBombFreeLineups.Rd -------------------------------------------------------------------------------- /man/allclean.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/allclean.Rd -------------------------------------------------------------------------------- /man/allevents.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/allevents.Rd -------------------------------------------------------------------------------- /man/alllineups.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/alllineups.Rd -------------------------------------------------------------------------------- /man/annotate_pitchSB.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/annotate_pitchSB.Rd -------------------------------------------------------------------------------- /man/cleanlineups.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/cleanlineups.Rd -------------------------------------------------------------------------------- /man/cleanlocations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/cleanlocations.Rd -------------------------------------------------------------------------------- /man/competitions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/competitions.Rd -------------------------------------------------------------------------------- /man/defensiveinfo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/defensiveinfo.Rd -------------------------------------------------------------------------------- /man/formatelapsedtime.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/formatelapsedtime.Rd -------------------------------------------------------------------------------- /man/freezeframeinfo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/freezeframeinfo.Rd -------------------------------------------------------------------------------- /man/getOpposingTeam.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/getOpposingTeam.Rd -------------------------------------------------------------------------------- /man/getevents.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/getevents.Rd -------------------------------------------------------------------------------- /man/getgamestate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/getgamestate.Rd -------------------------------------------------------------------------------- /man/getlineups.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/getlineups.Rd -------------------------------------------------------------------------------- /man/getlineupsFree.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/getlineupsFree.Rd -------------------------------------------------------------------------------- /man/getmatchFree.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/getmatchFree.Rd -------------------------------------------------------------------------------- /man/getmatches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/getmatches.Rd -------------------------------------------------------------------------------- /man/getminutesplayed.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/getminutesplayed.Rd -------------------------------------------------------------------------------- /man/getpositioncategory.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/getpositioncategory.Rd -------------------------------------------------------------------------------- /man/goalkeeperinfo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/goalkeeperinfo.Rd -------------------------------------------------------------------------------- /man/matchesvector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/matchesvector.Rd -------------------------------------------------------------------------------- /man/player_all_matches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/player_all_matches.Rd -------------------------------------------------------------------------------- /man/player_match.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/player_match.Rd -------------------------------------------------------------------------------- /man/player_match_multicomp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/player_match_multicomp.Rd -------------------------------------------------------------------------------- /man/player_season.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/player_season.Rd -------------------------------------------------------------------------------- /man/possessioninfo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/possessioninfo.Rd -------------------------------------------------------------------------------- /man/shotinfo.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/shotinfo.Rd -------------------------------------------------------------------------------- /man/team_all_matches.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/team_all_matches.Rd -------------------------------------------------------------------------------- /man/team_match.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/team_match.Rd -------------------------------------------------------------------------------- /man/team_match_multicomp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/team_match_multicomp.Rd -------------------------------------------------------------------------------- /man/team_season.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/team_season.Rd -------------------------------------------------------------------------------- /man/theme_SB.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/man/theme_SB.Rd -------------------------------------------------------------------------------- /team_match.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/statsbomb/StatsBombR/HEAD/team_match.Rd --------------------------------------------------------------------------------