Skip to contents

[Experimental]

Usage

getGameBoxScore(season_code, game_code)

Arguments

season_code

One or more season codes as obtained from getCompetitionHistory().
Examples are E2023 for Euroleague or U2023 for Eurocup 2023.

game_code

One or more game codes as obtained from getCompetitionGames().

Value

Returns a list of elements for the chosen games and seasons

  • Team. Name of the teams

  • Coach. Name of the coaches

  • EndOfQuarter. Team accumulated points by quarter

  • ByQuarter. Team points for each quarter

  • PlayerStats. Statistics for each player in the game

  • TeamStats. Aggregated statistics for each team in the game

Glossary of columns:

Column nameColumn extended name
GPGame player
GSGame started
MINMinutes played
PTSPoints scored
2PMTwo-pointers made
2PATwo-pointers attempted
2P%Two-point %
3PMThree-pointers made
3PAThree-pointers attempted
3P%Three-point %
FTMFree throws made
FTAFree throws attempted
FT%Free-throw %
OREBOffensive rebounds
DREBDefensive rebounds
TREBTotal rebounds
ASTAssists
STLSteals
TOTurnovers
BLKBlocks
BLKABlocks against
FCPersonal fouls committed
FDPersonal fouls drawn
PIRPerformance Index Rating

Reference webpage: BoxScore

Examples


if (FALSE) {

getGameBoxScore(season_code = c("E2023", "U2023"), game_code = 1)

}