join_form_and_fixture_history <- function() {
get_prem_form() %>%
left_join(
get_prem_fixture_history(),
by = c("fixture" = "fixture",
"date" = "date",
"team" = "team",
"home" = "home")) %>%
select(-fthg.y, -ftag.y) %>%
rename(fthg = fthg.x, ftag = ftag.x)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.