├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── classStructure.R ├── pythonInterface.R └── pythonProxyClasses.R ├── README.md ├── XRPython.Rproj ├── inst ├── doc │ └── Chapter_XRPython.pdf ├── examples │ └── extendProxyClass.R ├── python │ └── RPython.py ├── shakespeareTest │ ├── plays │ │ └── hamlet.xml │ └── python │ │ ├── speechListSearch.py │ │ ├── thePlay.py │ │ └── titles.py ├── tests │ ├── fib1.py │ ├── fib2.py │ ├── mustbe.R │ ├── testImport.R │ └── testPythonDef.R └── tools │ ├── dictDoc.txt │ ├── listDoc.txt │ ├── listMethods.R │ ├── setupClasses.R │ └── setupRoxygen.R └── man ├── Modules.Rd ├── PythonClassDef-class.Rd ├── PythonFunction-class.Rd ├── PythonInterface-class.Rd ├── PythonObject-class.Rd ├── RPython.Rd ├── XRPython-package.Rd ├── convert.Rd ├── dict_Python-class.Rd ├── from_Python-class.Rd ├── functions.Rd ├── ipython.Rd ├── isinstance.Rd ├── list_Python-class.Rd ├── noscalar.Rd ├── okPython.Rd ├── pythonTask.Rd ├── setPythonClass.Rd └── setupStep.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/classStructure.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/R/classStructure.R -------------------------------------------------------------------------------- /R/pythonInterface.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/R/pythonInterface.R -------------------------------------------------------------------------------- /R/pythonProxyClasses.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/R/pythonProxyClasses.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/README.md -------------------------------------------------------------------------------- /XRPython.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/XRPython.Rproj -------------------------------------------------------------------------------- /inst/doc/Chapter_XRPython.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/inst/doc/Chapter_XRPython.pdf -------------------------------------------------------------------------------- /inst/examples/extendProxyClass.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/inst/examples/extendProxyClass.R -------------------------------------------------------------------------------- /inst/python/RPython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/inst/python/RPython.py -------------------------------------------------------------------------------- /inst/shakespeareTest/plays/hamlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/inst/shakespeareTest/plays/hamlet.xml -------------------------------------------------------------------------------- /inst/shakespeareTest/python/speechListSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/inst/shakespeareTest/python/speechListSearch.py -------------------------------------------------------------------------------- /inst/shakespeareTest/python/thePlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/inst/shakespeareTest/python/thePlay.py -------------------------------------------------------------------------------- /inst/shakespeareTest/python/titles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/inst/shakespeareTest/python/titles.py -------------------------------------------------------------------------------- /inst/tests/fib1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/inst/tests/fib1.py -------------------------------------------------------------------------------- /inst/tests/fib2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/inst/tests/fib2.py -------------------------------------------------------------------------------- /inst/tests/mustbe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/inst/tests/mustbe.R -------------------------------------------------------------------------------- /inst/tests/testImport.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/inst/tests/testImport.R -------------------------------------------------------------------------------- /inst/tests/testPythonDef.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/inst/tests/testPythonDef.R -------------------------------------------------------------------------------- /inst/tools/dictDoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/inst/tools/dictDoc.txt -------------------------------------------------------------------------------- /inst/tools/listDoc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/inst/tools/listDoc.txt -------------------------------------------------------------------------------- /inst/tools/listMethods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/inst/tools/listMethods.R -------------------------------------------------------------------------------- /inst/tools/setupClasses.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/inst/tools/setupClasses.R -------------------------------------------------------------------------------- /inst/tools/setupRoxygen.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/inst/tools/setupRoxygen.R -------------------------------------------------------------------------------- /man/Modules.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/Modules.Rd -------------------------------------------------------------------------------- /man/PythonClassDef-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/PythonClassDef-class.Rd -------------------------------------------------------------------------------- /man/PythonFunction-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/PythonFunction-class.Rd -------------------------------------------------------------------------------- /man/PythonInterface-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/PythonInterface-class.Rd -------------------------------------------------------------------------------- /man/PythonObject-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/PythonObject-class.Rd -------------------------------------------------------------------------------- /man/RPython.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/RPython.Rd -------------------------------------------------------------------------------- /man/XRPython-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/XRPython-package.Rd -------------------------------------------------------------------------------- /man/convert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/convert.Rd -------------------------------------------------------------------------------- /man/dict_Python-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/dict_Python-class.Rd -------------------------------------------------------------------------------- /man/from_Python-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/from_Python-class.Rd -------------------------------------------------------------------------------- /man/functions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/functions.Rd -------------------------------------------------------------------------------- /man/ipython.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/ipython.Rd -------------------------------------------------------------------------------- /man/isinstance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/isinstance.Rd -------------------------------------------------------------------------------- /man/list_Python-class.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/list_Python-class.Rd -------------------------------------------------------------------------------- /man/noscalar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/noscalar.Rd -------------------------------------------------------------------------------- /man/okPython.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/okPython.Rd -------------------------------------------------------------------------------- /man/pythonTask.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/pythonTask.Rd -------------------------------------------------------------------------------- /man/setPythonClass.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/setPythonClass.Rd -------------------------------------------------------------------------------- /man/setupStep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnmchambers/XRPython/HEAD/man/setupStep.Rd --------------------------------------------------------------------------------