列出嵌套列表R中包含错误消息的所有索引

时间:2017-10-16 23:25:44

标签: r mclapply

我正在使用mclapply并行运行我的代码。下面是我的代码片段。当我设置mc.preschedule = FALSE时,它会存储错误并转到列表中的下一个项目。我想看看列表中的所有元素都有相关的错误消息。

OutputList = mclapply(Users.list,TestFunction,mc.cores = 25,mc.preschedule = FALSE)

以下是列表中某个项目的错误消息。

`Jack`
[1] "Error in TestFunction(DF, x) : \n  Nodes in query cannot be found in the input graph.\n\n"
attr(,"class")
[1] "try-error"
attr(,"condition")
<simpleError in TestFunction(DF, x): Nodes in query cannot be found in the input graph.

有没有办法列出包含任何错误消息的所有索引?

1 个答案:

答案 0 :(得分:0)

which(mapply(inherits, OutputList, 'try-error'))