Translate NBA/WNBA team abbreviations into logos and render these images in column labels of 'gt' tables.
Usage
gt_nba_cols_label(
gt_object,
columns = gt::everything(),
...,
height = 30,
league = c("NBA", "WNBA")
)
Arguments
- gt_object
A table object that is created using the
gt::gt()
function.- columns
The columns for which the image translation should be applied. Argument has no effect if
locations
is notNULL
.- ...
Currently not in use
- height
The absolute height (px) of the image in the table cell.
- league
One of
"NBA"
,"WNBA"
See also
The logo rendering functions gt_nba_logos()
and gt_wnba_logos()
.
Examples
# \donttest{
label_df <- data.frame(
"ATL" = c("ATL", "NBA"),
"CHI" = c("CHI", "NBA"),
"DAL" = c("DAL", "WNBA"),
"IND" = c("IND", "WNBA")
)
# create gt table and translate player IDs and team abbreviations
# into headshots, logos, and wordmarks
table <- gt::gt(label_df) |>
nbaplotR::gt_nba_cols_label(columns = c("ATL", "CHI"), league = "NBA") |>
nbaplotR::gt_nba_cols_label(columns = c("DAL", "IND"), league = "WNBA")
# }