RServe

Binary R server

  1. First you must install the Rserve package on R. Do this similarly to the previous section, by entering this command into the console on the R app:

 install.packages("Rserve")
  1. Now load the package into the R environment with this command:

 library(Rserve)
  1. Now Rserve is installed. next you will test to make sure it is working properly. Start the Rserve server in R with the following command:

 Rserve(args = "--no-save")
  1. That should run without an error, indicating the Rserve is properly installed and ready for use.

Last updated