Say i got an R dataframe A like so:
a b
1 nbc dkf
2 lei ao
How do I get a new dataframe B:
a b
1 gfr ais
2 ykl db
If I have two vectors that contain the starting characters and the ending characters like so:
start = c(a,b,c,d,e,f,l,k,i,n,o)
end = c(d,f,r,a,k,s,y,i,l,g,b)