Skip to contents

Uses the R package gt to create a pretty html table of the nflseedR simulation summary data frame.

Usage

# S3 method for class 'nflseedR_simulation'
summary(object, ...)

Arguments

object

an object for which a summary is desired.

...

additional arguments passed on to the methods (currently not used).

Output of below example

Examples

# \donttest{
library(nflseedR)
# set seed for recreation,
# internal parallelization requires a L'Ecuyer-CMRG random number generator
set.seed(19980310, kind = "L'Ecuyer-CMRG")

# Simulate the season 20 times in 1 round
sim <- nflseedR::simulate_nfl(
  nfl_season = 2021,
  fresh_season = TRUE,
  simulations = 20
)
#>  11:48:09 | Loading games data
#>  11:48:09 | Beginning simulation of 20 seasons in 1 round
#>  11:48:14 | Combining simulation data
#>  11:48:14 | Aggregating across simulations
#>  11:48:14 | DONE!

# Create Summary Tables
tbl <- summary(sim)

# The output of tbl is given in the above image.
# }