gpt4 book ai didi

r - 在字符向量列表中查找模式

转载 作者:行者123 更新时间:2023-12-02 06:53:29 26 4
gpt4 key购买 nike

有些向量具有不同长度的字符,例如:

f1 <- c("YTOI", "JKLO", "POLI")
f2 <- c("KOPL", "KOPL", "KOPL")
f3 <- c("JNLI", "NJLI", "IUYP")
f4 <- c("FIPN", "JHPL", "UIPE")

它们在列表中为 fe <- list(f1,f2,f3,f4) .条目的长度不一定都是 3 - 可能会有所不同。

如何找到所有条目都相同的条目(索引)?

最佳答案

使用lengths():

which(lengths(sapply(fe, unique)) == 1)

Note:

One raison d'être of lengths(x) is its use as a more efficient version of sapply(x, length) and similar *apply calls to length.

关于r - 在字符向量列表中查找模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36930509/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com