Marco
Marco

Reputation: 9624

accessing R from SAS

I have both SAS (9.3) and R (2.14.0) installed on the same PC and I'd like to submit R statements within SAS using submit / R; and endsubmit;.

However:

SAS option RLANG is valid only at startup of the SAS System. The SAS option is
ignored.

Can you explain me how to circumvent this obstacle ?

Upvotes: 8

Views: 1807

Answers (2)

Mark A.
Mark A.

Reputation: 71

To avoid having this option removed when Hot Fixes or updates are applied, the line can be added to sasv9_local.cfg.

Upvotes: 3

Hong Ooi
Hong Ooi

Reputation: 57697

Put the following at the top of your SASV9.CFG file:

-RLANG

Upvotes: 15

Related Questions