I have two different character vectors in R, that I want to combine to use for column names:
groups <- c(\"Group A\", \"Group B\") label <- c(\"Time\",
Since it's two element array, I would do
c(paste(groups[1],label),paste(groups[2],label))