I'm running into a problem running the following code:
brazil <- brazil %>% mutate (
ID = paste0(country, block, respondentID)
)
where I get the error:
Error in mutate(., ID = paste0(country, block, respondentID), BlockID = paste0(country, : could not find function "mutate"
Even though Tidyverse is installed, checked library, etc. Is there something basic I'm missing?