3
Use the function lapply
and wish the results to return within their respective dataframe within the list. Consider the following function:
x<-lapply(list,function(x)paste(x$Sigla,x$Município,sep='')) # onde `Sigla` e `Município`são variáveis em comum em todos os dataframes
This returns me a list x
only with the results (concatenated).
How to adjust this function to get what you want?
I can’t post the dput
, because the list is too long.