I use the lapply
function and want 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
with only the results (concatenated).
How do I adjust this function to get what I want?
I can not post dput
because the list is too large.