View source: R/fotmob_matches.R
| fotmob_get_match_team_stats | R Documentation |
Returns match top team stats from fotmob.com
fotmob_get_match_team_stats(match_ids)
match_ids |
a vector of strings or numbers representing matches |
returns a dataframe of match top team stats
try({
library(dplyr)
library(tidyr)
results <- fotmob_get_matches_by_date(date = "20210926")
match_ids <- results %>%
dplyr::select(primary_id, ccode, league_name = name, match_id) %>%
dplyr::filter(league_name == "Premier League", ccode == "ENG") %>%
dplyr::pull(match_id)
match_ids # 3609987 3609979
details <- fotmob_get_match_team_stats(match_ids)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.