Skip to contents

[Experimental]

Usage

getPlayerStats(
  season_code,
  statistic_mode = c("perGame", "perMinute", "accumulated")
)

Arguments

season_code

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

statistic_mode

One or more aggregation modes of statistics.
Admitted values are perGame, perMinute and accumulated.

Value

Returns a summary tibble of players statistics for chosen seasons.

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: Stats

Examples


if (FALSE) {

getPlayerStats(season_code = "E2023", statistic_mode = "perGame")

}