提问人:Aaron Statham 提问时间:9/30/2009 最后编辑:HenrikAaron Statham 更新时间:5/9/2023 访问量:93206
在给定索引处将元素插入到向量中
Insert elements into a vector at given indexes
问:
我有一个逻辑向量,我希望在特定索引处插入新元素。我在下面想出了一个笨拙的解决方案,但有没有更简洁的方法?
probes <- rep(TRUE, 15)
ind <- c(5, 10)
probes.2 <- logical(length(probes)+length(ind))
probes.ind <- ind + 1:length(ind)
probes.original <- (1:length(probes.2))[-probes.ind]
probes.2[probes.ind] <- FALSE
probes.2[probes.original] <- probes
print(probes)
给
[1] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
和
print(probes.2)
给
[1] TRUE TRUE TRUE TRUE TRUE FALSE TRUE TRUE TRUE TRUE TRUE FALSE
[13] TRUE TRUE TRUE TRUE TRUE
所以它有效,但看起来很丑 - 有什么建议吗?
答:
这有点棘手。这是一种方法。它遍历列表,每次都插入,因此效率不高。
probes <- rep(TRUE, 15)
probes.ind <- ind + 0:(length(ind)-1)
for (i in probes.ind) {
probes <- c(probes[1:i], FALSE, probes[(i+1):length(probes)])
}
> probes
[1] TRUE TRUE TRUE TRUE TRUE FALSE TRUE TRUE TRUE TRUE TRUE FALSE
[13] TRUE TRUE TRUE TRUE TRUE
如果 ind 有重复的元素,这甚至应该有效,尽管 ind 确实需要排序才能使探测器 .ind 构造正常工作。
这个怎么样:
> probes <- rep(TRUE, 15)
> ind <- c(5, 10)
> probes.ind <- rep(NA, length(probes))
> probes.ind[ind] <- FALSE
> new.probes <- as.vector(rbind(probes, probes.ind))
> new.probes <- new.probes[!is.na(new.probes)]
> new.probes
[1] TRUE TRUE TRUE TRUE TRUE FALSE TRUE TRUE TRUE TRUE TRUE FALSE
[13] TRUE TRUE TRUE TRUE TRUE
评论
你可以用索引做一些魔术:
首先使用输出值创建向量:
probs <- rep(TRUE, 15)
ind <- c(5, 10)
val <- c( probs, rep(FALSE,length(ind)) )
# > val
# [1] TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
# [13] TRUE TRUE TRUE FALSE FALSE
现在把戏。每个旧元素都获得排名,每个新元素获得半排名
id <- c( seq_along(probs), ind+0.5 )
# > id
# [1] 1.0 2.0 3.0 4.0 5.0 6.0 7.0 8.0 9.0 10.0 11.0 12.0 13.0 14.0 15.0
# [16] 5.5 10.5
然后使用按正确的顺序排序:order
val[order(id)]
# [1] TRUE TRUE TRUE TRUE TRUE FALSE TRUE TRUE TRUE TRUE TRUE FALSE
# [13] TRUE TRUE TRUE TRUE TRUE
评论
这些都是非常有创意的方法。我认为使用索引绝对是要走的路(Marek 的解决方案非常好)。
我只想提一下,有一个函数可以大致做到这一点:.append()
probes <- rep(TRUE, 15)
probes <- append(probes, FALSE, after=5)
probes <- append(probes, FALSE, after=11)
或者你可以用你的索引递归方式来做到这一点(你需要在每次迭代中增加“after”值):
probes <- rep(TRUE, 15)
ind <- c(5, 10)
for(i in 0:(length(ind)-1))
probes <- append(probes, FALSE, after=(ind[i+1]+i))
顺便说一句,这个问题以前在R-Help上也被问过。正如 Barry 所说:
“实际上,我想说的是没有办法做到这一点,因为我认为你实际上不能插入到一个向量中 - 你必须创建一个产生插入错觉的新向量!”
评论
after = 0
ind
for(i in length(ind):1) append(..., after=ind[i])
probes <- rep(TRUE, 1000000)
ind <- c(50:100)
val <- rep(FALSE,length(ind))
new.probes <- vector(mode="logical",length(probes)+length(val))
new.probes[-ind] <- probes
new.probes[ind] <- val
一些时间安排: 我的方法 用户系统已过 0.03 0.00 0.03
马立克方法 用户系统已过 0.18 0.00 0.18
R 追加 for 循环 用户系统已过 1.61 0.48 2.10
评论
ind <- ind + 0:(length(ind)-1)
new.probes
val
new.probes
new.probes <- rep(FALSE,length(probes)+length(val))
ind <- ind + seq_len(length(ind))
1:length(ind)
logical(length(probes)+length(val))
rep(FALSE, length(probes)+length(val))
vector(mode=...
或者,您可以使用 miscTools 包中的 insertRow 函数来完成。
probes <- rep(TRUE, 15)
ind <- c(5,10)
for (i in ind){
probes <- as.vector(insertRow(as.matrix(probes), i, FALSE))
}
评论
我想出了一个很好的答案,它很容易理解,而且运行起来相当快,建立在上面 Wojciech 的答案之上。我将在这里的示例中调整该方法,但它可以很容易地泛化为几乎任何数据类型,以实现任意缺失点模式(如下所示)。
probes <- rep(TRUE, 15)
ind <- c(5,10)
probes.final <- rep(FALSE, length(probes)+length(ind))
probes.final[-ind] <- probes
我需要的数据是定期采样的,但许多样本被丢弃,生成的数据文件仅包含保留的数据戳和测量值。我需要生成一个包含所有时间戳的向量,以及一个为抛出的时间戳插入 NA 的数据向量。我使用了从这里偷来的“不在”功能,让它更简单一些。
`%notin%` <- Negate(`%in%`)
dat <- rnorm(50000) # Data given
times <- seq(from=554.3, by=0.1, length.out=70000] # "Original" time stamps
times <- times[-sample(2:69999, 20000)] # "Given" times with arbitrary points missing from interior
times.final <- seq(from=times[1], to=times[length(times)], by=0.1)
na.ind <- which(times.final %notin% times)
dat.final <- rep(NA, length(times.final))
dat.final[-na.ind] <- dat
嗯,嗨,我也有同样的疑问,但我听不懂人们的回答,因为我还在学习语言。所以我试着自己做,我想它有效!我创建了一个向量,我想在第 3、5 和 6 个索引后插入值 100。这就是我写的。
vector <- c(0:9)
indexes <- c(6, 3, 5)
indexes <- indexes[order(indexes)]
i <- 1
j <- 0
while(i <= length(indexes)){
vector <- append(vector, 100, after = indexes[i] + j)
i <-i + 1
j <- j + 1
}
vector
向量“索引”必须按升序排列才能正常工作。这就是为什么我把它们放在第三行的原因。 变量“j”是必需的,因为在每次迭代时,新向量的长度都会增加,原始值也会移动。 如果您希望将新值并排插入,只需重复索引的编号即可。例如,通过分配索引 <- c(3, 5, 5, 5, 6),您应该得到向量 == 0 1 2 100 3 4 100 100 100 5 100 6 7 8 9
使用 Wojciech Sobala 的解决方案,我制作了一个适用于任何数据模式的通用函数:
insertValuesAtIdx <- function(vec,values,idx)
{
res<-vector(mode=mode(vec),length = length(vec)+length(idx))
res[-idx]<-vec
res[idx]<-values
return(res)
}
insertValuesAtIdx(LETTERS,"a",c(4,6))
insertValuesAtIdx(1:100,c(1000,1001,1002),c(4,6,56))
评论