pyExec: Executes multiple lines of Python code from within R

Description Usage Arguments Details Examples

View source: R/PyExec.R

Description

The function pyExec allows to execute multiple lines of python code from within R.

Usage

1
pyExec(code)

Arguments

code

a string of Python code to be executed in Python.

Details

Since pyExec can execute multiple lines, it is the obvious choice for defining Python functions or running small scripts where no return value is needed.

Examples

1
2
3
4
5
6
7
pyExec('
print("The following line will not appear in the R terminal!")
"Hello" + " " + "R!"
print("NOTE: pyExecp would also show the line above!")
print("The following line will appear in the R terminal!")
print("Hello" + " " + "R!")
')

PythonInR documentation built on May 2, 2019, 5:17 p.m.