I was wondering if anyone could help me concencate two vectors of strings:
For example: hello and hi, that repeat 130 times in a dataframe.
When in the dataframe column I would like for the order to be hello, (130 times) followed by hi (also 130 times), then hello (130 more times), then hi (130 times) again. So they should appear 4 times total (2 times each in order)
This is what I tried so far but it does not seem to work
hello <- c(rep( "hello", 130))
hi<- c(rep( "hi", 130))
style <- c(hello, hi, hello, hi)