Nothing
#' Load Player Level Weekly Stats
#'
#' @param seasons a numeric vector of seasons to return, defaults to most recent season. If set to `TRUE`, returns all available data.
#' @param stat_type one of `"offense"`, `"defense"`, or `"kicking"`
#' @param file_type One of `c("rds", "qs", "csv", "parquet")`. Can also be set globally with
#' `options(nflreadr.prefer)`
#'
#' @examples
#' \dontshow{.for_cran()}
#' \donttest{
#' try({ # prevents cran errors
#' load_player_stats()
#' load_player_stats(stat_type = "kicking")
#' })
#' }
#'
#' @return A tibble of week-level player statistics that aims to match NFL official box scores.
#'
#' @seealso <https://nflreadr.nflverse.com/articles/dictionary_player_stats.html> for a web version of the data dictionary
#' @seealso [`dictionary_player_stats`] for the data dictionary
#' @seealso Issues with this data should be filed here: <https://github.com/nflverse/nflverse-pbp>
#'
#' @export
load_player_stats <- function(seasons = most_recent_season(),
stat_type = c("offense", "defense", "kicking"),
file_type = getOption("nflreadr.prefer", default = "rds")){
if(!isTRUE(seasons)) {stopifnot(is.numeric(seasons),
seasons >=1999,
seasons <= most_recent_season())}
file_type <- rlang::arg_match0(file_type, c("rds", "csv","qs", "parquet"))
stat_type <- rlang::arg_match0(stat_type, c("offense", "defense", "kicking"))
base_name <- switch(stat_type,
"offense" = "player_stats.",
"defense" = "player_stats_def.",
"kicking" = "player_stats_kicking.")
url <- paste0("https://github.com/nflverse/nflverse-data/releases/download/player_stats/",base_name,file_type)
out <- load_from_url(url, seasons = seasons, nflverse = TRUE)
out
}
# Load Team Level Weekly Stats
#
# @param seasons a numeric vector of seasons to return
# @param type one of `offense`, `defense`, or `special_teams`
#
# @examples
# \donttest{
# load_team_stats()
# }
#
# @return
#
# @export
# load_team_stats <- function(){}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.