I have several data frames all with the same colnames. I want to merge two columns in each one of them to create a new column.
data frames looks like this:
I want the output to look like this:
Normally I would do this very easily for one data frame:
a$XY_ID <- paste(a$X,ak$Y,sep=":")
How to do this for all the dataframes in a list?
Thanks for the help!