我必须将一些值传递给python脚本并从R中获取一些值。我目前在R中使用rPython库。我能够使用python.get(var_name)
从脚本中获取值。如何将值发送到python脚本?
除了rPython之外,还可以帮助我做到这一点。
答案 0 :(得分:1)
python.assign似乎是你需要的功能。
来自RPython的package documentation:
Description
Functions that assign and get Python variables from R.
Usage
python.assign(var.name, value, ...)
python.get(var.name)
Arguments
var.name a character string containing a valid python variable name
value an R object whose equivalent wants to be assigned to the variable in python
... other arguments passed to the internal toJSON function cal