本文介绍了生成重复序列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要使用 R 生成以下格式的向量:
I need to generate a vector of the following format using R:
1:10, 1:10, 11:20, 11:20, ... 121:130, 121:130
有没有比创建 12 个向量然后每个向量重复两次更简单的方法?
Is there an easier way than creating 12 vectors and then repeating each one twice?
推荐答案
这是您想要的吗?
unlist(lapply(rep(seq(1, 121, by=10), each=2), function(x) seq(x, x+9)))
这篇关于生成重复序列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!