I have created several data frames and I need to select some of them based on their name, for example only those with "ssp126" or "2011-2040", in this list below, and then combine them into single data frame.
> names(which(unlist(eapply(.GlobalEnv,is.data.frame))))
[1] "map_2071-2100_ssp370" "map_2041-2070_ssp585" "map_2011-2040_ssp585" "map_2041-2070_ssp370"
[9] "map_2011-2040_ssp126" "map_2041-2070_ssp126" "map_2071-2100_ssp126"
[13] "map_2011-2040_ssp370" "map_1951-1980" "map_2071-2100_ssp585"
[17] "map_1981-2010"
Someone have a suggestion? Thanks!