Welcome!
In general, the function for running a different script would be source()
.
So, if I understood your question correctly, you should be able to have an R script runALL.R
source(script1.R)
source(script2.R)
source(script3.R)
Welcome!
In general, the function for running a different script would be source()
.
So, if I understood your question correctly, you should be able to have an R script runALL.R
source(script1.R)
source(script2.R)
source(script3.R)