Close Navigation
Learn more about IBKR accounts
How to Run Python from R Studio – Part II

How to Run Python from R Studio – Part II

Posted August 23, 2021
Kris Longmore
Robot Wealth

See Part I for instructions on how to use reticulate package and its integration with R Studio to run Python code.

Importing Python modules

Importing Python modules with reticulate::import() produces the same behaviour:

np <- import("numpy")
np$array(list(c(1, 2, 3), c(4, 5, 6)))
##      [,1] [,2] [,3]
## [1,]    1    2    3
## [2,]    4    5    6

Notice that my numpy array is created using R list objects in a manner analogous to Python lists: np.array([[1, 2, 3], [4, 5, 6]]).

REPL-ing Python in R Studio

You can also open an interactive Python session within R by calling reticulate::repl_python(). Any objects created within the Python session are available in the R session via the py object.

Conclusion

With reticulate you can run your Python scripts in RStudio. It embeds a Python session within an R session, and allows you to pass objects between the two sessions.

Visit Robot Wealth website for additional insighthttps://robotwealth.com/using-python-from-the-comfort-of-r-studio/

Past performance is not indicative of future results.

Any stock, options or futures symbols displayed are for illustrative purposes only and are not intended to portray recommendations.

Disclosure: Interactive Brokers

Information posted on IBKR Campus that is provided by third-parties does NOT constitute a recommendation that you should contract for the services of that third party. Third-party participants who contribute to IBKR Campus are independent of Interactive Brokers and Interactive Brokers does not make any representations or warranties concerning the services offered, their past or future performance, or the accuracy of the information provided by the third party. Past performance is no guarantee of future results.

This material is from Robot Wealth and is being posted with its permission. The views expressed in this material are solely those of the author and/or Robot Wealth and Interactive Brokers is not endorsing or recommending any investment or trading discussed in the material. This material is not and should not be construed as an offer to buy or sell any security. It should not be construed as research or investment advice or a recommendation to buy, sell or hold any security or commodity. This material does not and is not intended to take into account the particular financial conditions, investment objectives or requirements of individual customers. Before acting on this material, you should consider whether it is suitable for your particular circumstances and, as necessary, seek professional advice.

IBKR Campus Newsletters

This website uses cookies to collect usage information in order to offer a better browsing experience. By browsing this site or by clicking on the "ACCEPT COOKIES" button you accept our Cookie Policy.