1

我在不同的列表中有项目,我想计算每个列表中的项目并将其输出到表中。但是,当列表中有不同的项目时,我遇到了困难。太说明了我的问题:

item_1 <- c("A","A","B")
item_2 <- c("A","B","B","B","C")
item_3 <- c("C","A")
item_4 <- c("D","A", "A")
item_5 <- c("B","D")


list_1 <- list(item_1, item_2, item_3)
list_2 <- list(item_4, item_5)

table_1 <- table(unlist(list_1))
table_2 <- table(unlist(list_2))

> table_1

A B C 
4 4 2 
> table_2

A B D 
2 1 2 

我从 cbind 得到的是:

> cbind(table_1, table_2)

  table_1 table_2
A       4       2
B       4       1
C       2       2

这显然是错误的。我需要的是:

  table_1 table_2
A       4       2
B       4       1
C       2       0
D       0       2

提前致谢

4

3 回答 3

3

如果可能的话,在开始时使用可能会更好factors,例如:

L <- list(list_1 = list_1, 
          list_2 = list_2)
RN <- unique(unlist(L))
do.call(cbind, 
        lapply(L, function(x)
          table(factor(unlist(x), RN))))
#   list_1 list_2
# A      4      2
# B      4      1
# C      2      0
# D      0      2

但是,根据您所拥有的,类似以下的功能可能会很有用。我添加了注释以帮助解释每个步骤中发生的情况。

myFun <- function(..., fill = 0) {
  ## Get the names of the ...s. These will be our column names
  CN <- sapply(substitute(list(...))[-1], deparse)
  ## Put the ...s into a list
  Lst <- setNames(list(...), CN)
  ## Get the relevant row names
  RN <- unique(unlist(lapply(Lst, names), use.names = FALSE))
  ## Create an empty matrix. `fill` can be anything--it's set to 0
  M <- matrix(fill, length(RN), length(CN),
              dimnames = list(RN, CN))
  ## Use match to identify the correct row to fill in
  Row <- lapply(Lst, function(x) match(names(x), RN))
  ## use matrix indexing to fill in the unlisted values of Lst
  M[cbind(unlist(Row), 
          rep(seq_along(Lst), vapply(Row, length, 1L)))] <-
    unlist(Lst, use.names = FALSE)
  ## Return your matrix
  M
}

应用于您的两个表,结果是这样的:

myFun(table_1, table_2)
#   table_1 table_2
# A       4       2
# B       4       1
# C       2       0
# D       0       2

这是一个将另一个添加table到问题中的示例。它还演示了NA用作fill值的用法。

set.seed(1) ## So you can get the same results as me
table_3 <- table(sample(LETTERS[3:6], 20, TRUE) )
table_3
# 
# C D E F 
# 2 7 9 2

myFun(table_1, table_2, table_3, fill = NA)
#   table_1 table_2 table_3
# A       4       2      NA
# B       4       1      NA
# C       2      NA       2
# D      NA       2       7
# E      NA      NA       9
# F      NA      NA       2
于 2014-09-03T08:25:57.007 回答
1

要解决您现有的问题,您可以将两个表放入一个列表中,然后将缺失值添加回名称中。这里,nm是每个表唯一的表名向量,是表tbs的列表,我们可以使用sapply追加和重新排序缺失值。

> nm <- unique(unlist(mget(paste("item", 1:5, sep = "_"))))
> tbs <- list(t1 = table_1, t2 = table_2)
> sapply(tbs, function(x) {
      x[4] <- 0L
      names(x)[4] <- nm[!nm %in% names(x)]
      x[nm]
  })
  t1 t2
A  4  2
B  4  1
C  2  0
D  0  2

当您有未知数并且可以保留NA值时,一般解决方案是

> sapply(tbs, function(x) {
      length(x) <- length(nm)
      x <- x[match(nm, names(x))]
      setNames(x, nm)
  })
  t1 t2
A  4  2
B  4  1
C  2 NA
D NA  2

items但是你可以通过直接从to完全避免这种情况table。您将这些项目放入列表中,然后在下一步中将它们取消列出。有一个useNA论点是table即使它们为零也会保持因子水平。

> t1 <- table(c(item_1, item_2, item_3), useNA = "always")
> t2 <- table(c(item_4, item_5), useNA = "always")
> table(c(item_4, item_5), useNA = "always")

   A    B    D <NA> 
   2    1    2    0 
于 2014-09-03T08:50:39.797 回答
0

快速解决您的问题是将表制作成数据框,然后将它们合并:

    d1 <- data.frame(value=names(table_1), table_1=as.numeric(table_1))
    d2 <- data.frame(value=names(table_2), table_2=as.numeric(table_2))
    merge(d1,d2, all=TRUE)

这将在您可能需要 0 的地方创建 NA。这可以用

    M <- merge(d1,d2, all=TRUE) 
    M[is.na(M)] <- 0
于 2014-09-03T08:18:52.793 回答