I'm in the situation where I would like to create an object from a character vector. For example:
v <- c("ind1_2015", "ind1_2016", "ind1_2017")
for (ind in v) {
ind <- readRDS(paste0(ind, ".RDS"))
}
so at the end I would like to have 3 data frames, each one called ind1_2015, ind1_2016 and ind1_2017. How can I achieve this?