py_save_object {reticulate} | R Documentation |
Save and Load Python Objects
Description
Save and load Python objects.
Usage
py_save_object(object, filename, pickle = "pickle", ...)
py_load_object(filename, pickle = "pickle", ..., convert = TRUE)
Arguments
object |
A Python object. |
filename |
The output file name. Note that the file extension |
pickle |
The "pickle" implementation to use. Defaults to |
... |
Optional arguments, to be passed to the |
convert |
Bool. Whether the loaded pickle object should be converted to an R object. |
Details
Python objects are serialized using the pickle
module – see
https://docs.python.org/3/library/pickle.html for more details.
[Package reticulate version 1.38.0 Index]