Package 'nflverse'

Title: Easily Install and Load the 'nflverse'
Description: The 'nflverse' is a set of packages dedicated to data of the National Football League. This package is designed to make it easy to install and load multiple 'nflverse' packages in a single step. Learn more about the 'nflverse' at <https://nflverse.nflverse.com/>.
Authors: Sebastian Carl [aut, cre], Ben Baldwin [aut], Lee Sharpe [aut], Tan Ho [aut] , John Edwards [aut]
Maintainer: Sebastian Carl <[email protected]>
License: MIT + file LICENSE
Version: 1.0.3
Built: 2024-09-07 03:05:14 UTC
Source: https://github.com/nflverse/nflverse

Help Index


The 'nflverse' - A set of packages dedicated to data of the National Football League.

Description

logo

The 'nflverse' is a set of packages dedicated to data of the National Football League. This package is designed to make it easy to install and load multiple 'nflverse' packages in a single step. Learn more about the 'nflverse' at https://nflverse.nflverse.com/.

Author(s)

Maintainer: Sebastian Carl [email protected]

Authors:

See Also

Useful links:


List all packages in the nflverse

Description

List all packages in the nflverse

Usage

nflverse_packages(include_self = FALSE)

Arguments

include_self

Include nflverse in the list?

Value

A vector of type "character".

Examples

nflverse_packages()

Get a Situation Report on System, nflverse Package Versions and Dependencies

Description

This function gives a quick overview of the versions of R and the operating system as well as the versions of nflverse packages, options, and their dependencies. It's primarily designed to help you get a quick idea of what's going on when you're helping someone else debug a problem.

Details

See nflreadr::nflverse_sitrep for details.


Update nflverse Packages

Description

Check all nflverse packages for available cran updates.

Usage

nflverse_update(recursive = FALSE, repos = getOption("repos"), devel = FALSE)

Arguments

recursive

If TRUE, will also list all strong dependencies of nflverse packages.

repos

the repositories to use to check for updates. Defaults to getOptions("repos").

devel

If TRUE the function will look for prebuilt development versions on https://nflverse.r-universe.dev/ so it is possible to install development versions without GitHub.

Value

Returns NULL invisibly. Called for side effects.

Examples

try(
nflverse_update()
)
try(
nflverse_update(devel = TRUE)
)