Hello,
I'm searching for solution to store two parts of numbers and join them together.
For example:
one_portion <- c(1, 3, 5, 7, 9)
second_portion <- c(3, 4, 5)
Now I want to achive something like this:
joined_portions = (1, 3, 3, 4, 5, 5, 7, 9)
How can I achieve this? I tried store numbers as vectors and lists, but cannot join them together to get result what I wanted.
Best Regards
Daniel