#' Box score data from the Australian Women's National Basketball League (WNBL).
#'
#' `box_scores` contains box scores data at the team-level (one row per competing team), from games played in the Australian Women's National Basketball League. The `box_scores` data set currently contains publicly available data from games played in the 2014/2015 season to the 2020 season, inclusive.
#'
#' @format A tibble with 1200 rows and 50 variables:
#' \describe{
#' \item{season}{Numeric. Season of competition. Note that WNBL seasons typically overlap year-end. For simplicity, the first year of competition is included in the `season` variable, e.g., "2014" represents the 2014 / 2015 season.}
#' \item{page_id}{Numeric. Unique identifier for each game. View the game stats in your browser by navigating to https://www.fibalivestats.com/u/wnbl/<page_id>/}
#' \item{team_name}{Character. Team name.}
#' \item{team_short_name}{Character. Team nickname.}
#' \item{home_away_flag}{Character. Identifying whether the team represented on each row was the home or away team.}
#' \item{team_name_opp}{Character. Opposition team name.}
#' \item{team_short_name_opp}{Character. Opposition team nickname.}
#' \item{points_total}{Numeric. Points scored by the team listed in `team_name`.}
#' \item{points_total_opp}{Numeric. Points scored by the opposition team listed in `team_name_opp`}
#' \item{points_margin}{Numeric. `points_total` minus `points_total_opp`.}
#' \item{team_result}{Character. Identifying whether the team represented on each row won ("W") the game, lost ("L") the game, or drew ("D") with the team listed in `team_name_opp`.}
#' \item{minutes}{Character. Total team minutes, in mm:ss.}
#' \item{field_goals_made}{Numeric. Number of successful field goals.}
#' \item{field_goals_attempted}{Numeric. Number of attempted field goals.}
#' \item{field_goals_percentage}{Numeric. `field_goals_made` divided by `field_goals_attempted` multiplied by 100.}
#' \item{three_pointers_made}{Numeric. Number of successful field goals.}
#' \item{three_pointers_attempted}{Numeric. Number of attempted field goals}
#' \item{three_pointers_percentage}{Numeric. `three_pointers_made` divided by `three_pointers_attempted` multiplied by 100.}
#' \item{two_pointers_made}{Numeric. Number of two-point field goals made.}
#' \item{two_pointers_attempted}{Numeric. Number of two-point field goals attempted.}
#' \item{two_pointers_percentage}{Numeric. `two_pointers_made` divided by `two_pointers_attempted` multiplied by 100.}
#' \item{free_throws_made}{Numeric. Number of free throws made.}
#' \item{free_throws_attempted}{Numeric. Number of free throws attempted.}
#' \item{free_throws_percentage}{Numeric. `free_throws_made` divided by `free_throws_attempted` multiplied by 100.}
#' \item{rebounds_defensive}{Numeric. Total number of defensive rebounds (individual + team).}
#' \item{rebounds_offensive}{Numeric. Total number of offensive rebounds (individual + team).}
#' \item{rebounds_total}{Numeric. Total number of rebounds, `rebounds_defensive` plus `rebounds_offensive`.}
#' \item{assists}{Numeric. Number of assists.}
#' \item{turnovers}{Numeric. Number of turnovers.}
#' \item{steals}{Numeric. Number of steals.}
#' \item{blocks}{Numeric. Number of blocks.}
#' \item{blocks_received}{Numeric. Number of blocks received.}
#' \item{fouls_personal}{Numeric. Number of personal fouls.}
#' \item{fouls_team}{Numeric. Number of team fouls.}
#' \item{fouls_on}{Numeric. Number of fouls on.}
#' \item{fouls_total}{Numeric. Number of total fouls.}
#' \item{points_from_turnovers}{Numeric. Number of points scored from turnovers.}
#' \item{points_second_chance}{Numeric. Number of second-chance points.}
#' \item{points_fast_break}{Numeric. Number of points from fast breaks.}
#' \item{bench_points}{Numeric. Number of points scored by bench players (i.e., non-starters).}
#' \item{points_in_the_paint}{Numeric. Number of points scored in the key area (colloquially, "in the paint").}
#' \item{time_leading}{Character. Time that the team listed in `team_name` spent in the lead during a game, expressed in mm:ss.}
#' \item{biggest_lead}{Numeric. Biggest lead achieved during a game by the team listed in `team_name`.}
#' \item{biggest_scoring_run}{Numeric. Biggest continuous run of scores achieved during a game by the team listed in `team_name`.}
#' \item{lead_changes}{Numeric. Number of lead changes during a game.}
#' \item{times_scores_level}{Numeric. Number of times scores were level between competing teams.}
#' \item{rebounds_team}{Numeric. Number of team rebounds, `rebounds_team_defensive` + `rebounds_team_offensive`.}
#' \item{rebounds_team_defensive}{Numeric. Number of team defensive rebounds.}
#' \item{rebounds_team_offensive}{Numeric. Number of team offensive rebounds.}
#' \item{turnovers_team}{Numeric. Number of team turnovers.}
#' }
#' @source Australian Women's National Basketball League website \url{https://www.wnbl.com.au}
"box_scores"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.