Returns the league table for each chosen matchday from transfermarkt
tm_matchday_table(country_name, start_year, matchday, league_url = NA)
the country of the league's players
the start year of the season (2020 for the 20/21 season)
the matchweek number. Can be a vector of matchdays
league url from transfermarkt.com. To be used when country_name not avalilable in main function
returns a dataframe of the table for a selected league and matchday
if (FALSE) {
tm_matchday_table(country_name="England", start_year="2020", matchday=1)
tm_matchday_table(country_name="England", start_year="2020", matchday=c(1:5))
}