previous post - RPostgreSQL Data analytics on PostgreSQL data using R
Rserve - is a TCP/IP server which allows other programs to use facilities of R from various languages without the need to initialize R or link against R library. Every connection has a separate workspace and working directory. Client-side implementations are available for popular languages such as C/C++, PHP and Java. Rserve supports remote connection, authentication and file transfer.
> install.packages('Rserve')
> library(Rserve)
> Rserve()
Error
> Rserve()
Rserv started in daemon mode.
##> SOCK_ERROR: bind error #98(address already in use)
Rserv started in daemon mode.
##> SOCK_ERROR: bind error #98(address already in use)
Solution
boss@passive:~$ ps faux | grep Rserve
will list the Rserv started daemon.
will list the Rserv started daemon.
No comments:
Post a Comment