Thanks and sorry for being so dumb but how do I get .x
If I try the following :-
ProcessList<- function(region,sVal){
path <- paste0(region,sVal)
}
ProcessAllLists <- function(AllRegions){
map(AllRegions,ProcessList(.x,"df1"))
}
ProcessAllLists()
I get an error
Error in paste0(region, sVal) : object '.x' not found
Called from: paste0(region, sVal)