Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 R 中有这个向量:
x<-c(2, 4, 6,5)
我想创建一个更大的向量,其中包含从 1 到 . 中每个元素的编号列表x。这就是我需要的:
x
xyz<-c(1,2,1,2,3,4,1,2,3,4,5,6,1,2,3,4,5)
我不知道该怎么做。我可以打印出来
for (i in 1:4) print (1:x[i])
但是当我尝试将它们变成向量时
for (i in 1:4) xyz<-c((1:x[i]))
似乎不起作用。有人可以帮忙吗?