我喜欢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)
答案 0 :(得分:0)
我认为这就是你想要的:Add a series of elements in different locations within a vector
我不认为像append(L, elements, positions)
这样的函数存在,虽然它很酷。