#' Get game types
#' @param data tibble from `read_data`
#'
get_game_types <- function(data) {
data %>%
dplyr::pull(GameType) %>%
unique() %>%
sort()
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.