根据向量生成重复序列
我正在尝试采用现有向量并将其每个元素重复六次。我觉得使用 rep()
应该很容易,但我总是碰壁。 基本上我想采用这个向量:
1027 1028 1030 1032 1037
并将其变成这样:
1027 1027 1027 1027 1027 1027 1028 1028 1028 1028 1028 1028 ...
I am trying to take an existing vector and repeat each element of it six times. I feel like this should be easy using rep()
but I keep hitting the wall.
Basically I would like to take this vector:
1027 1028 1030 1032 1037
And turn it into this:
1027 1027 1027 1027 1027 1027 1028 1028 1028 1028 1028 1028 ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用each参数:
times参数:
Use each argument:
times argument: