Skip to contents

Returns data frame of player bios from transfermarkt.com

Usage

tm_player_bio(player_urls)

Arguments

player_urls

player url(s) from transfermarkt

Value

returns a dataframe of player bios

Examples

if (FALSE) {
try({
player_url <- "https://www.transfermarkt.com/eden-hazard/profil/spieler/50202"
tm_player_bio(player_url)
tm_player_bio(player_urls = c("https://www.transfermarkt.com/eden-hazard/profil/spieler/50202",
                              "https://www.transfermarkt.com/sergio-ramos/profil/spieler/25557",
                              "https://www.transfermarkt.com/ivo-grbic/profil/spieler/226073"))
})
}