如何使用参数从R调用python脚本

时间:2017-01-13 15:55:12

标签: python r rpython

我有一个python脚本,它需要5个参数(一个文件名,3个int值和2个浮点值)。我需要从R调用这个python脚本。我该怎么做。我正在尝试使用rPython,但它不允许我传递参数

library("rPython")
python.load("python scriptname")

我不知道如何传递参数

从命令行,我运行我的python脚本,如:

python scriptname filename 10 20 0.1 5000 30

2 个答案:

答案 0 :(得分:18)

您可以调用系统命令

system('python scriptname')

要异步运行脚本,可以将wait标志设置为false。

system('python scriptname filename 10 20 0.1 5000 30', wait=FALSE)

在命令行中传递的参数。您将不得不在python代码中使用sys.argv来访问变量

#test.py
import sys

arg1 = sys.argv[1]
arg2 = sys.argv[2]
print arg1, arg2

下面的R命令会输出'hello world'

system('python test.py hello world', wait=FALSE)

答案 1 :(得分:8)

在之前的回答中有一个小错字。正确的代码如下:

 system('python test.py hello world', wait = FALSE)

等待 FALSE (不等待= Flase或wait = False)