
Get a Situation Report on System, nflverse Package Versions and Dependencies
Source:R/report.R
report.RdThis function was deprecated. Please use nflreadr::nflverse_sitrep.
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.
Arguments
- ...
Arguments passed on to
nflreadr::nflverse_sitreppkga character vector naming installed packages, or
NULL(the default) meaning all nflverse packages. The function checks internally if all packages are installed and informs if that is not the case.recursivea logical indicating whether dependencies of
pkgand their dependencies (and so on) should be included. Can also be a character vector listing the types of dependencies, a subset ofc("Depends", "Imports", "LinkingTo", "Suggests", "Enhances"). Character string"all"is shorthand for that vector, character string"most"for the same vector without"Enhances", character string"strong"(default) for the first three elements of that vector.redact_patha logical indicating whether options that contain "path" in the name should be redacted, default = TRUE
Details
See nflreadr::nflverse_sitrep for details.
Examples
# \donttest{
report(recursive = FALSE)
#> Warning: `report()` was deprecated in nflfastR 5.2.0.
#> ℹ Please use `nflreadr::nflverse_sitrep()` instead.
#> ── System Info ─────────────────────────────────────────────────────────────────
#> • R version 4.5.1 (2025-06-13) • Running under: Ubuntu 24.04.3 LTS
#> ── Package Status ──────────────────────────────────────────────────────────────
#> package installed cran dev behind
#> 1 nflfastR 5.1.0.9007 5.1.0 5.1.0.9007
#> 2 nflplotR 1.5.0.9002 1.5.0 1.5.0.9002
#> 3 nflreadr 1.5.0.9000 1.5.0 1.5.0.9000
#> 4 nflseedR 2.0.1 2.0.1 2.0.1
#> ── Package Options ─────────────────────────────────────────────────────────────
#> • No options set for above packages
#> ── Not Installed ───────────────────────────────────────────────────────────────
#> • nfl4th ()
#> • nflverse ()
#> ────────────────────────────────────────────────────────────────────────────────
nflverse_sitrep(pkg = "nflreadr", recursive = TRUE)
#> ── System Info ─────────────────────────────────────────────────────────────────
#> • R version 4.5.1 (2025-06-13) • Running under: Ubuntu 24.04.3 LTS
#> ── Package Status ──────────────────────────────────────────────────────────────
#> package installed cran dev behind
#> 1 nflreadr 1.5.0.9000 1.5.0 1.5.0.9000
#> ── Package Options ─────────────────────────────────────────────────────────────
#> • No options set for above packages
#> ── Package Dependencies ────────────────────────────────────────────────────────
#> • cachem (1.1.0) • lifecycle (1.0.4) • methods (4.5.1)
#> • cli (3.6.5) • memoise (2.0.1) • stats (4.5.1)
#> • curl (7.0.0) • rappdirs (0.3.3) • tools (4.5.1)
#> • data.table (1.17.8) • rlang (1.1.6) • utils (4.5.1)
#> • fastmap (1.2.0) • grDevices (4.5.1)
#> • glue (1.8.0) • graphics (4.5.1)
#> ────────────────────────────────────────────────────────────────────────────────
# }