How to input arguments from R to Python with the package rPython?
Below is a naive attempt
In script.py:
print message
In 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)