gpt4 book ai didi

r - 你如何在 R 中引用函数的环境?

转载 作者:行者123 更新时间:2023-12-01 08:05:10 25 4
gpt4 key购买 nike

我收到以下错误,因为我认为我正在做的 clusterExport()(parallel 包)指的是错误的环境:

Error in get(name, envir = envir) : object 'simulatedExpReturn' not found

我在一个函数中得到这个,特别是在这部分的 clusterExport() 行:

  simulatedExpReturn = list()

# Calculate the number of cores
no_cores <- detectCores()

# Initiate cluster
cl <- makeCluster(no_cores)

clusterExport(cl, c("simulatedExpReturn",
"covariance",
"numAssets",
"assetNames",
"numTimePoints-lag",
"stepSize"), envir = environment(Michaud1998MonteCarlo))

协方差numAssetsassetNamesnumTimePoints-lagstepSize都传递到函数中。我也试过 envir = envirenvir = .GlobalEnv 都没有用。

如何解决这个问题?

最佳答案

这是一个范围问题,clusterExport 函数正在指定环境中搜索您的对象,并将它们导出到每个处理器的子环境。它不会搜索您定义了 simulatedExpReturn.GlobalEnv

这就是以下返回 1 而不是空列表的原因:

> Michaud1998MonteCarlo <- new.env()
> simulatedExpReturn = list()
> assign("simulatedExpReturn", 1, envir = Michaud1998MonteCarlo)
>
> # Calculate the number of cores
> no_cores <- detectCores()
>
> # Initiate cluster
> cl <- makeCluster(no_cores)
>
> clusterExport(cl, c("simulatedExpReturn"), envir = Michaud1998MonteCarlo)
> clusterCall(cl, function() simulatedExpReturn)
[[1]]
[1] 1

[[2]]
[1] 1

[[3]]
[1] 1

[[4]]
[1] 1

要解决,只需在运行 clusterExport 之前将值分配给环境:

assign("simulatedExpReturn", list(), envir = Michaud1998MonteCarlo)

关于r - 你如何在 R 中引用函数的环境?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32785191/

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