get_overrides <- function(df){
variables <-
df %>%
as_tibble() %>%
select(ends_with('override')) %>%
names() %>%
str_remove('_override')
df %>%
mutate(dplyover::over(all_of(variables),
~ .('{.x}_override') + .('{.x}')
)
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.