Generate a repeating sequence

后端 未结 6 1370
情深已故
情深已故 2021-01-14 01:27

I need to generate a vector of the following format using R:

1:10, 1:10, 11:20, 11:20, ... 121:130, 121:130

Is there an easier way than cre

6条回答
  •  情书的邮戳
    2021-01-14 01:41

    Another way:

    x <- matrix(1:130, 10, 13)
    c(rbind(x, x))
    

    Possible more efficient version:

    x <- 1:130
    dim(x) <- c(10,13)
    c(rbind(x, x))
    

提交回复
热议问题