将列表列表转换为字符向量

时间:2016-01-06 01:37:03

标签: r string list character sapply

我有一个字符列表列表。例如:

l <- list(list("A"),list("B"),list("C","D"))

因此,您可以看到一些元素是长度&gt;的列表。 1。

我想将此列表列表转换为字符向量,但我希望列表的长度为&gt; 1在字符向量中显示为单个元素。

unlist函数没有实现这一点,而是:

> unlist(l)
[1] "A" "B" "C" "D"

还有什么比:

更快
sapply(l,function(x) paste(unlist(x),collapse=""))

获得我想要的结果:

"A"  "B"  "CD"

2 个答案:

答案 0 :(得分:19)

您可以跳过取消列表步骤。您已经发现paste0需要collapse = TRUE来“绑定”向量的顺序元素:

> sapply( l, paste0, collapse="")
[1] "A"  "B"  "CD"

答案 1 :(得分:6)

如果您不介意采用多线方法,请参阅@ thela的建议的变体:&lt; p>

x <- lengths(l)                                     ## Get the lengths of each list
l[x > 1] <- lapply(l[x > 1], paste0, collapse = "") ## Paste only those together
unlist(l, use.names = FALSE)                        ## Unlist the result
# [1] "A"  "B"  "CD"

或者,如果您不介意使用套餐,请查看&#34; stringi&#34;包,特别是stri_flatten,正如@Jota所建议的那样。

以下是效果比较:

l <- list(list("A"), list("B"), list("B"), list("B"), list("B"),
          list("C","D"), list("E","F", "G", "H"), 
          as.list(rep(letters,10)), as.list(rep(letters,2)))
l <- unlist(replicate(1000, l, FALSE), recursive = FALSE)

funop <- function() sapply(l,function(x) paste(unlist(x),collapse=""))
fun42 <- function() sapply(l, paste0, collapse="")
funv  <- function() vapply(l, paste0, character(1L), collapse = "")
funam <- function() {
  x <- lengths(l)
  l[x > 1] <- lapply(l[x > 1], paste0, collapse = "")
  unlist(l, use.names = FALSE)
}
funj <- function() sapply(l, stri_flatten)
funamj <- function() {
  x <- lengths(l)
  l[x > 1] <- lapply(l[x > 1], stri_flatten)
  unlist(l, use.names = FALSE)
}

library(microbenchmark)
microbenchmark(funop(), fun42(), funv(), funam(), funj(), times = 20)
# Unit: milliseconds
#      expr      min       lq     mean   median       uq      max neval   cld
#   funop() 78.21822 84.79588 85.30055 85.36399 86.90540 90.48321    20     e
#   fun42() 56.16938 57.35735 61.60008 58.04969 65.82836 81.46482    20    d 
#    funv() 54.64101 56.23245 60.07896 57.26049 63.96815 78.58043    20    d 
#   funam() 45.89760 46.89890 48.99810 47.29617 48.28764 56.92544    20   c  
#    funj() 28.73405 29.94041 32.00676 30.56711 31.11448 39.93765    20  b   
#  funamj() 18.64829 19.01328 21.05989 19.12468 19.52516 32.87569    20 a 

注意:此方法的相对效率取决于具有length(x) > 1的列表项的数量。如果他们中的大多数都是> 1,那么就采用@ 42 - &#39}的方法。如果要将长字符向量粘贴在一起,stri_flatten只能提高效果,就像上面基准测试中使用的样本列表一样,否则,它无助于提供。