同时在多个不同位置插入(推)多个元素

时间:2017-07-06 19:24:54

标签: r append

我喜欢R中的append函数:

L <- 1:4
append(L,5,3)
[1] 1 2 3 5 4

我想知道是否有一个功能像append一样,但是允许同时在多个位置插入多个元素

L <- 1:100
elements <- letters[1:5]
positions <- c(17,28,50,65,80)

类似的东西:

append(L, elements, positions)

1 个答案:

答案 0 :(得分:0)

我认为这就是你想要的:Add a series of elements in different locations within a vector

我不认为像append(L, elements, positions)这样的函数存在,虽然它很酷。