Rlang功能有License site限制,如果你安装的SAS9.3的License site允许你开放这个功能,请按带下步骤设置,看如下测试:
There are many things that R just does better. Hence, I am trying to set my system up so I can execute R commands from within
SAS using the [submit /R;] and [endsubmit;] commands. However I need some help getting my config files set up properly to do
this.
First Steps (to allow SAS to read the R language):
I checked to see if my system was set up to read the R language (code below).
proc options option=rlang;
run;
I got the following in my log:
SAS (r) Proprietary Software Release 9.3 TS1M0
NORLANG Do not support access to R language interfaces
This meant I needed to add the -RLANG option to the config file. I did that. Below is an example of my config file (C:\Program
Files\SASHome\SASFoundation\9.3\sasv9.cfg):
-RLANG
-config "C:\Program Files\SASHome\SASFoundation\9.3\nls\en\sasv9.cfg"
(NOTE: the -RLANG had to be above the config reference for this to be recognized properly.)
And the resulting output in my log after re-opening enterprise guide and re-running the proc options code above: