I have
list1 <- c("A","B","C")
and
list2 <- c(1,2,3)
And I want a joined list:
list3 = c("A_1", "B_2", "C_3").
I've looked everywhere but cannot find the answer. I've tried mapply, combn, permn... All did not work. Any help is appreciated!