library(tidyverse)
# manifesto <- read_dta("C:/Users/vladtarko/Dropbox/public/databases/Manifesto Project/MPDataset_MPDS2019a_stata14.dta")
manifesto <- manifesto %>%
mutate(year = lubridate::year(edate)) %>%
rename("ccode" = "country",
"country" = "countryname") %>%
select(country, ccode, year, everything())
# save(manifesto, file="data/manifesto.rda")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.