Learn R Programming

worldfootballR (version 0.6.2)

load_match_comp_results: 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)

Value

returns a dataframe with the results of the competition name

Arguments

comp_name

the three character country code

Examples

Run this code
# \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
)
})
# }

Run the code above in your browser using DataLab