Displaying 1 result from an estimated 1 matches for "bytwo".
Did you mean:
mytwo
2005 Dec 10
2
append
Dear R users:
> append(1:5, 0:1, after=2)
[1] 1 2 0 1 3 4 5
If I want to repeat the appended value every 2 like the following:
[1] 1 2 0 1 3 4 0 1 5
How should I modify?
Thank you for any help.