I would like to take a data frame with characters and numbers, and concatenate all of the elements of the each row into a single string, which would be stored as a single el
For those using library(tidyverse), you can simply use the unite function.
new.df<-df%>% unite(together, letters, numbers, sep="")
This will give you a new column called "together" with A1, B2, etc