I would like to turn vector
a <- 1:5
into a string
"1_2_3_4_5"
How to do this?
paste(a,sep="_")
does not work this way.
I would like to turn vector
a <- 1:5
into a string
"1_2_3_4_5"
How to do this?
paste(a,sep="_")
does not work this way.