Visualize College Basketball Player Headshots in ggplot2
Source:R/geom_cbb_headshots.R
      geom_cbb_headshots.Rdgeom_cbb_headshots creates a ggplot2 layer that plots college basketball player headshots
in place of points. The layer requires x and y aesthetics and a valid player ID from ESPN.
Additional parameters allow for highlighting specific players.
Usage
geom_cbb_headshots(
  mapping = NULL,
  data = NULL,
  stat = "identity",
  position = "identity",
  ...,
  na.rm = FALSE,
  show.legend = FALSE,
  inherit.aes = TRUE,
  highlight_players = NULL,
  highlight_method = "alpha",
  highlight_alpha = 0.5
)Arguments
- mapping
- Set of aesthetic mappings created by - ggplot2::aes()or- ggplot2::aes_(). If specified and- inherit.aes = TRUE(the default), it is combined with the default mapping at the top level of the plot. You must supply- mappingif there is no plot mapping.
- data
- The data to be displayed in this layer. If - NULL, the default, the data is inherited from the plot data as specified in the call to- ggplot().
- stat
- The statistical transformation to use on the data for this layer, as a string. 
- position
- Position adjustment, either as a string, or the result of a call to a position adjustment function. 
- ...
- Other arguments passed on to - layer().
- na.rm
- If - FALSE, the default, missing values are removed with a warning. If- TRUE, missing values are silently removed.
- show.legend
- Logical. Should this layer be included in the legends? - NA, the default, includes if any aesthetics are mapped.- FALSEnever includes, and- TRUEalways includes.
- inherit.aes
- If - FALSE, overrides the default aesthetics, rather than combining with them. This is most useful for helper functions that define both data and aesthetics and shouldn't inherit behaviour from the default plot specification, e.g.- borders().
- highlight_players
- Vector of player IDs to highlight. 
- highlight_method
- Method of highlighting ( - "alpha",- "color", or- "both").
- highlight_alpha
- Alpha value for highlighted players.