load_match_comp_results: Load match competition results

View source: R/load_fb.R

load_match_comp_resultsR Documentation

Load match competition results

Description

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


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
)
})


worldfootballR documentation built on Nov. 26, 2022, 9:05 a.m.