Concat 命名向量列表

Concat named list of vectors

我想弄清楚如何转换命名列表,其中值也列在命名列表中,其中值是向量中的值串联的结果。

不知道我解释的对不对,照着做吧

x <- list(A = c("e", "f", "g"), B = c("a", "b", "c"), C = c("m", "l", "w"))

#$A
#[1] "e" "f" "g"
#$B
#[1] "a" "b" "c"
#$C
#[1] "m" "l" "w"

named_list_concat <- function(data){ ... }

named_list_concat(x)

#$A
#[1] "efg"
#$B
#[1] "abc"
#$C
#[1] "mlw"

一个碱基可能性:

lapply(x, function(x) paste(x, collapse = ""))

$A
[1] "efg"

$B
[1] "abc"

$C
[1] "mlw"

或者同样的东西的缩写形式:

lapply(x, paste, collapse = "")