3
I need to do this sequence in a repeating structure to use with a larger N, but I’m not getting it done, does anyone have any idea how to do this?
n=8
names <- c (seq(1 , n), seq(2,n+1 ), seq (3,n+2), seq(4 ,n+3), seq(5,n+5 ),seq(6,n+5),seq(7, n+6 ), seq (8,n+7))
Thanks in advance..
I think your code is wrong, wouldn’t it
seq(5,n+4)
? It makes more sense by the logic of the other sequences.– Molx