gpt4 book ai didi

python - 将 R 变量传递给带有网状结构的 python 脚本

转载 作者:行者123 更新时间:2023-12-04 17:44:56 24 4
gpt4 key购买 nike

我有一个 python 脚本,我想使用网状包从 R 中运行它。我想先在 R 中分配一些变量,然后将它们传递给脚本。不幸的是,当我运行脚本时,我惊讶地发现 python 无法识别变量。我在这里错过了什么?谢谢

Python 脚本(test.py):

print(x)

R代码:

library(reticulate)
x <- 5
source_python(test.py)

错误:

Error in py_run_file_impl(file, local, convert) : 
NameError: name 'x' is not defined

最佳答案

我想到的解决方案是只创建一个函数。所以如果在我的 python 代码之前是

z = x + 3

我的新 python 代码是:

def add_three(x):
z = x + 3
return z

然后我可以在 R 中运行:

x <- 5
source_python("test.py")
y <- add_three(x)

并将 y 设为 6。

关于python - 将 R 变量传递给带有网状结构的 python 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52526092/

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