将函数应用于不同列表中的元素时出现问题

Problem when applying a function to elements from different lists

我想使用两个列表中的元素计算 setdiff

为此,我创建了一个函数,它在我提供参数时可以正常工作,但在我尝试使用 mapply.

时会失败
# The lists have the following structure
list_A <- list(
  vec_A1 = list(v1="1",v2="2",v3="3"),
  vec_A2 = list(v1="3",v2="4",v3="5")
  )

list_B <- list(
  mat_B1 = matrix(as.character(1:3),nrow = 3,ncol = 1),
  mat_B2 = matrix(as.character(3:5),nrow = 3,ncol = 1)  
)

myfun <- function(vec,mat){
  vec = unlist(vec) # Create a vector from the list's elements
  mat = mat[[1]] # Extract the required matrix
  x = apply(mat,1,base::setdiff,x=vec) %>% t # Compare the vector with each matrix row
  return(x)
}

# It gives my desired output when applied over single elements from the lists
myfun(list_A[1],list_B[1])
myfun(list_A[2],list_B[2])

# But fails when using mapply
mapply(myfun,list_A,list_B, SIMPLIFY = F)

期望的输出是

     [,1] [,2]
[1,] "2"  "3" 
[2,] "1"  "3" 
[3,] "1"  "2" 

     [,1] [,2]
[1,] "4"  "5" 
[2,] "3"  "5" 
[3,] "3"  "4" 

但是通过 mapply 我得到了

 Error in apply(mat, 1, base::setdiff, x = vec) : 
  dim(X) must have a positive length

有什么关于我遗漏的提示吗?

提前致谢。

我认为您只是混淆了 [[[。试试这个:

myfun <- function(vec,mat){
    vec = unlist(vec) # Create a vector from the list's elements
    #mat = mat[[1]] # Extract the required matrix
    x = apply(mat,1,base::setdiff,x=vec) %>% t # Compare the vector with each matrix row
    return(x)
}

# It gives my desired output when applied over single elements from the lists
myfun(list_A[[1]],list_B[[1]])
myfun(list_A[[2]],list_B[[2]])

# But fails when using mapply
mapply(myfun,list_A,list_B, SIMPLIFY = F)