Simulates a match using default player skills (useful for testing).
Usage
quick_match_simulation(
model,
format = "t20",
team1_skill = 0,
team2_skill = 0,
mode = "categorical"
)Examples
if (FALSE) { # \dontrun{
model <- load_full_model("shortform")
result <- quick_match_simulation(model, format = "t20")
result <- quick_match_simulation(model, format = "odi",
team1_skill = 0.5, team2_skill = -0.3)
} # }
