Description Usage Arguments Details Value References Examples
Functions that assign and get Python variables from R.
1 2 | python.assign(var.name, value, ...)
python.get(var.name)
|
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 |
These functions can assign values to variables in Python as well as get their values back to R. Objects are serialized as json strings while being transferred between R and Python.
Function python.get
returns a R version of the Python variable py.var
.
http://code.google.com/p/simplejson
1 2 3 4 5 6 7 | a <- 1:4
python.assign( "a", a )
python.exec( "b = len( a )" )
python.get( "b" )
python.exec( "import math" )
python.get( "math.pi" )
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.