Connecting R and Python
[This article was first published on Statistics Blog » r, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
There are a few ways to do this, but the only one that worked for me was to use Rserve and rconnect. In R, do this:
1 2 3 | install.packages("Rserve") library(Rserve) Rserve(debug = FALSE, port=6311, args=NULL) |
Then you can connect in Python very easily. Here is a test in Python:
1 2 | rcmd = pyRserve.rconnect(host='localhost', port=6311) print(rcmd('rnorm(100)')) |
To leave a comment for the author, please follow the link and comment on their blog: Statistics Blog » r.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.