来自R的python脚本的参数

时间:2016-11-21 10:02:34

标签: python r

我必须将一些值传递给python脚本并从R中获取一些值。我目前在R中使用rPython库。我能够使用python.get(var_name)从脚本中获取值。如何将值发送到python脚本?
除了rPython之外,还可以帮助我做到这一点。

1 个答案:

答案 0 :(得分:1)

python.assign似乎是你需要的功能。

来自RPy​​thon的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