如何使用包 rPython 将参数从 R 输入到 Python?
下面是一个天真的尝试
在 script.py 中:
print message
在 script.R 中:
require(rPython)
text = "Hello World"
python.load("script.py", message=text)
Error in python.load("script.py", message = text) :
unused argument (message = text)