我很困惑如何在R中生成一个系列(如此1,2,2,3,3,3,4,4,4,4
)
我使用for loop
和rep
这样的函数,
for (i in 1:10)
{rep(i,i)}
但我无法将它们粘贴在一起。
答案 0 :(得分:6)
rep(1:4, 1:4)
[1] 1 2 2 3 3 3 4 4 4 4
同样对于另一个系列我们得到
rep(1:5, 1:5) * (-1)^rep(0:4, 1:5)
[1] 1 -2 -2 3 3 3 -4 -4 -4 -4 5 5 5 5 5