Evaluate a Python script within the Python main module, then make all public (non-module) objects within the main Python module available within the specified R environment.
source_python(file, envir = parent.frame(), convert = TRUE)Source file
The environment to assign Python objects into (for example,
parent.frame() or globalenv()). Specify NULL to not assign Python
objects.
TRUE to automatically convert Python objects to their R
equivalent. If you pass FALSE you can do manual conversion using the
py_to_r() function.
To prevent assignment of objects into R, pass NULL for the envir
parameter.