BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
spirto
Quartz | Level 8

Hello everyone, I know how to run R code inside the IML submit block but is there a way to run an entire .R file within the submit block?

 

Currently my R file has 500+ lines of code and I would rather call the .R instead of pasting all those lines inside the submit block

 

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

Is this an R question or a SAS question?  I would  use the source() function, which is the same as in base R:

 

proc iml;
submit / R;
source("c:/Temp/abc.R")
endsubmit;

 

 

View solution in original post

2 REPLIES 2
Rick_SAS
SAS Super FREQ

Is this an R question or a SAS question?  I would  use the source() function, which is the same as in base R:

 

proc iml;
submit / R;
source("c:/Temp/abc.R")
endsubmit;

 

 

spirto
Quartz | Level 8

Thanks Rick! I did not know about the source function in R

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

Register now!

From The DO Loop
Want more? Visit our blog for more articles like these.
Discussion stats
  • 2 replies
  • 1034 views
  • 0 likes
  • 2 in conversation