I use a SAS Enterprise Guide (7.12) that accesses to a data on a server, and a local installation of "R Open". I am trying to run R codes using SAS/IML Studio as I have the impression that this can handle the local installation of R (which proc iml inside SAS EG cannot). I have checked that RLANG is enabled, i.e. by entering
proc options option=RLANG;
run;
I get :
RLANG Enables SAS to execute R language statements.
with no error. Unfortunately there is no R installed on the same server as SAS EG runs, so by submitting an R code I get the following error message :
»ERROR: SAS could not initialize the R language interface.
»ERROR: An installed version of R could not be found.
Edit : To answer one of the comments, I already have set R_HOME variable to my local R Open folder as follows
options set=R_HOME='C:\PROGRA~1\MICROS~4\ROPEN~1\R-34~1.2';
and I have tried the following as well:
options set=R_HOME='C:\Program Files\Microsoft\R Open\R-3.4.2';
and still no success.
Given this, is it possible at all to run R codes from SAS/IML Studio?
options set=R_HOME='C:\Program Files\R\R-3.1.2';
– IceCreamToucan