# Validation
#' Find actual vote shares in test data
find_actual_vote_shares_national <- function(prediction_master){
prediction_master %>%
filter(region_2 == "National") %>%
distinct(country, leader, votes_share) %>%
arrange(country)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.