Skip to content

Commit

Permalink
DOC: further clarify the use of convert=FALSE for reticulate (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffgortmaker committed Dec 2, 2022
1 parent 5e35845 commit ddb1784
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ Other Languages

Once installed, PyBLP can be incorporated into projects written in many other languages with the help of various tools that enable interoperability with Python.

For example, the `reticulate <https://github.com/rstudio/reticulate>`_ package makes interacting with PyBLP in R straightforward (when supported, Python objects can be converted to their R counterparts with the ``py_to_r`` function)::
For example, the `reticulate <https://github.com/rstudio/reticulate>`_ package makes interacting with PyBLP in R straightforward (when supported, Python objects can be converted to their R counterparts with the ``py_to_r`` function, which needs to be used manually because we set ``convert=FALSE`` to get rid of errors about trying to automatically convert unsupported objects)::

library(reticulate)
pyblp <- import("pyblp", convert=FALSE)
Expand Down

0 comments on commit ddb1784

Please sign in to comment.