I have 2 vectors and want to distribute one across the other to form a third vector like:
V1 = (a,b,c) V2 = (d,e,f)
Result:
V3
In R: as.vector(sapply(V1, function(x) paste0(x, V2)))
as.vector(sapply(V1, function(x) paste0(x, V2)))