i need to connect pyRserve in iPython, but there is an error when i try to connect it. This is the error.
conn = pyRserve.connect()
And this is what i get:
RConnectionRefused: Connection denied, server not reachable or not accepting connections.
In the pyrserve manual are and advice to correct this, but i don't understand what i need to do. This is the advice (Note)
Note When a remote connection to Rserve should be opened, and pyRserve cannot connect to it, most likely Rserve only listens to it’s own internal network connection. To force Rserve accepting connections from other machines create a file called /etc/Rserv.conf and add at least the following line: remote enable Then restart Rserve.
So, i need to know how to implement the note and connect the Rserve in python
Thanks everyone
In R (using 3.3.2)
After running Rserve() you should see the following which indicates R server is running: Starting Rserve... "C:\Users\bkeith\Desktop\R-33~1.2\library\Rserve\libs\x64\Rserve.exe"
In Python
Once this prints, you’re good to start using the library.
Don’t forget to close your connection, to check it you can use conn.isClosed:
Here’s some examples from the library:
Ex.1 – basic syntax
Ex.2 – list from python to R
Ex.3 – Function in R