Paste together two character vectors of different lengths

后端 未结 3 1847
日久生厌
日久生厌 2020-12-31 21:01

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\",         


        
3条回答
  •  一整个雨季
    2020-12-31 21:52

    Since it's two element array, I would do

     c(paste(groups[1],label),paste(groups[2],label))
    

提交回复
热议问题