R/get-player-misc.R

Defines functions getPlayerMisc

Documented in getPlayerMisc

#' Get player miscellaneous statistics
#'
#' `r lifecycle::badge('experimental')`
#'
#' @inheritParams .inheritParams
#'
#' @return Returns a summary tibble of miscellaneous players statistics for chosen seasons.
#'
#' Glossary of columns:
#'
#' | **Column name** | **Column extended name** | **Column description**                                                                  |
#' | --------------- | ------------------------ | --------------------------------------------------------------------------------------- |
#' | DD2             | Double-doubles           | Games with double-digit totals in two of: points, rebounds, assists, steals and blocks  |
#' | TD3             | Triple-doubles           | Games with double-digit totals in three of: points, rebounds, assists, steals and blocks|
#'
#' Reference webpage: [Stats](<https://www.euroleaguebasketball.net/euroleague/stats/expanded/?size=1000&viewType=miscellaneous&seasonCode=E2023&statisticMode=accumulated&seasonMode=Single&sortDirection=descending&statistic=gamesPlayed>)
#'
#' @examples
#'
#' \dontrun{
#'
#' getPlayerMisc(season_code = "E2023")
#'
#' }
#'
#' @name getPlayerMisc
#' @rdname getPlayerMisc
#' @export

getPlayerMisc <- function(season_code){
  .iterate(.getPlayerMisc, season_code)
}

Try the euroleaguer package in your browser

Any scripts or data that you put into this service are public.

euroleaguer documentation built on May 29, 2024, 10:22 a.m.