Displaying 1 result from an estimated 1 matches for "rep_vec".
2012 Jun 15
2
strings concatenation and organization (fast)
...ttern/order
of the sets should be considered random/unpredictable.
Sample data:
vec = c("1","2","3","-","-","-","4","5","6","1","2","3","-","-","-")
rep_vec = rep(vec,times=20)
nms = c("A","B","C","D")
I need to get this:
A B C D
"123" "---" "456" "123"
"---" "123" "---" "456"
"123" "---" "123&q...