gpt4 book ai didi

list - 使用snowfall::sfLapply 时正在处理哪个列表元素?

转载 作者:行者123 更新时间:2023-12-04 08:29:51 36 4
gpt4 key购买 nike

假设我们有一个列表( mylist )用作 lapply 的输入对象功能。有没有办法知道 mylist 中的哪个元素正在评估?该方法应该适用于 lapplysnowfall::sfApply (和可能的其他人也申请家庭成员)。
chat , Gavin Simpson 建议了以下方法。这适用于 lapply但对于 sfApply 来说不是那么多.我想避免额外的包或摆弄列表。有什么建议?

mylist <- list(a = 1:10, b = 1:10)
foo <- function(x) {
deparse(substitute(x))
}
bar <- lapply(mylist, FUN = foo)

> bar
$a
[1] "X[[1L]]"

$b
[1] "X[[2L]]"
这是没有切割它的并行版本。
library(snowfall)
sfInit(parallel = TRUE, cpus = 2, type = "SOCK") # I use 2 cores

sfExport("foo", "mylist")
bar.para <- sfLapply(x = mylist, fun = foo)

> bar.para
$a
[1] "X[[1L]]"

$b
[1] "X[[1L]]"

sfStop()

最佳答案

我认为您将不得不在该聊天 session 中使用 Shane 的解决方案/建议。将您的对象存储在一个列表中,这样顶部列表的每个组件都包含一个具有该列表组件中包含的名称或 ID 或实验的组件,以及一个包含您要处理的对象的组件:

obj <- list(list(ID = 1, obj = 1:10), list(ID = 2, obj = 1:10), 
list(ID = 3, obj = 1:10), list(ID = 4, obj = 1:10),
list(ID = 5, obj = 1:10))

所以我们有以下结构:
> str(obj)
List of 5
$ :List of 2
..$ ID : num 1
..$ obj: int [1:10] 1 2 3 4 5 6 7 8 9 10
$ :List of 2
..$ ID : num 2
..$ obj: int [1:10] 1 2 3 4 5 6 7 8 9 10
$ :List of 2
..$ ID : num 3
..$ obj: int [1:10] 1 2 3 4 5 6 7 8 9 10
$ :List of 2
..$ ID : num 4
..$ obj: int [1:10] 1 2 3 4 5 6 7 8 9 10
$ :List of 2
..$ ID : num 5
..$ obj: int [1:10] 1 2 3 4 5 6 7 8 9 10

具有类似于以下函数中的第一行的内容,然后是您的
foo <- function(x) {
writeLines(paste("Processing Component:", x$ID))
sum(x$obj)
}

这将做到这一点:
> res <- lapply(obj, foo)
Processing Component: 1
Processing Component: 2
Processing Component: 3
Processing Component: 4
Processing Component: 5

这可能适用于降雪。

关于list - 使用snowfall::sfLapply 时正在处理哪个列表元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4164960/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com