Suppose I have the following vectors:
n <- c(1:5)
c <- c("A","B","C","D","E")
I build the following array with them:
m <- matrix(c(n,c), ncol = 2)
What is the best way to get a vector like this:
"1 - A", "2 - B", "3 - C", "4...
asked by
17.01.2017 / 20:28