epl.colors {colorr} | R Documentation |
EPL colors
Description
Function returns a vector of character strings from a selected EPL team's color palette. The team options are c("arsenal", "bournemouth", "burnley", "chelsea", "crystal_palace", "everton", "hull", "leicester", "liverpool", "man_city", "man_united", "middlesbrough", "southampton", "stoke_city", "sunderland", "swansea_city", "tottenham", "watford", "west_bromich_albion", "west_ham").
Usage
epl.colors(set = c("arsenal", "bournemouth", "burnley", "chelsea",
"crystal_palace", "everton", "hull", "leicester", "liverpool", "man_city",
"man_united", "middlesbrough", "southampton", "stoke_city", "sunderland",
"swansea_city", "tottenham", "watford", "west_bromich_albion", "west_ham"))
Arguments
set |
Character string denoting an EPL team's color palette. |
Value
Vector of character strings from the selected EPL team's color palette.
Author(s)
Charles Crabtree ccrabtr@umich.edu
Examples
## Not run:
# Manchester United colors
(pal = epl.colors("man_united"))
pie(rep(1, length(pal)), labels = sprintf("%d (%s)", seq_along(pal), pal), col = pal)
# Tottenham colors
(pal = epl.colors("tottenham"))
pie(rep(1, length(pal)), labels = sprintf("%d (%s)", seq_along(pal), pal), col = pal)
## End(Not run)
[Package colorr version 1.0.0 Index]