Hello,
I'm wondering if I can create a mater r code ( master.R) and call certain lines from different places inside master.R. For example, using the master.R:
line1
...
line60
source ( "/changes.R") # only run this script using lines between 1:100
line61
....
line1000
source ( "/changes.R") # only run this script using lines between 101:200
....
# end of master.R
Is it possible?
Thanks for your time and interest.