I am working on a uni project and have downloaded tweets using rtweet. What I have is, one data frame per country on the WHOlist with tweets over one week, and one data frame that contains information on WHO_region, population, total confirmed cases, total deaths, area/km² and density/km² per country.
I want to combine the information from both data frames.
I have tried this
Azerbaijan_data <- mutate(Azerbaijan_data,WHO_region = "Europe", country = "Azerbaijan", population = "10125041", area_km²= "82658", density_km²= "122.66")
but the deaths and cases columns have date specific observations and adding them manually will take far too long.
I was hoping there is a way to automate the process. I would really appreciate it, if someone could help me out.