Skip to contents

Returns the game results for a competition(s), ie League cups or international competitions from FBref. comp_name comes from https://github.com/JaseZiv/worldfootballR_data/tree/master/data/match_results_cups#readme

Usage

load_match_comp_results(comp_name)

Arguments

comp_name

the three character country code

Value

returns a dataframe with the results of the competition name

Examples

# \donttest{
try({
df <- load_match_comp_results(
comp_name = "Coppa Italia"
)
# for multiple competitions:
cups <- c("FIFA Women's World Cup",
          "FIFA World Cup")
df <- load_match_comp_results(
comp_name = cups
)
})
#> → Data last updated 2024-01-16 17:19:40.3440461158752 UTC
#> → Data last updated 2023-08-28 02:48:12.7885611057281 UTC
# }