ffs_build_schedules: Generate fantasy schedules

View source: R/7_schedule.R

ffs_build_schedulesR Documentation

Generate fantasy schedules

Description

This function generates random head to head schedules for a given number of seasons, teams, and weeks.

Usage

ffs_build_schedules(
  n_teams = NULL,
  n_seasons = 100,
  n_weeks = 14,
  franchises = NULL,
  seed = NULL
)

Arguments

n_teams

number of teams in simulation

n_seasons

number of seasons to simulate, default = 100

n_weeks

number of weeks per season, default = 14

franchises

optional: a dataframe of franchises as created by ffs_franchises() - overrides the n_teams argument and will attach actual franchise IDs to the schedule output.

seed

an integer to control reproducibility

Details

It starts with the circle method for round robin scheduling, grows or shrinks the schedule to match the required number of weeks, and then shuffles both the order that teams are assigned in and the order that weeks are generated. This doesn't "guarantee" unique schedules, but there are n_teams! x n_weeks! permutations of the schedule so it's very very likely that the schedules are unique (3x10^18 possible schedules for a 12 team league playing 13 weeks).

Value

a dataframe of schedules

See Also

vignette("custom") for example usage

Examples


ffs_build_schedules(n_teams = 12, n_seasons = 1, n_weeks = 14)



ffsimulator documentation built on Feb. 16, 2023, 5:37 p.m.