GO | R Documentation |
A function that like source()
but recalls the last source file names by default.
go(..., add=FALSE, timer=FALSE)
... |
list of filenames as character strings. |
add |
add these names to the current list; if replace, then |
timer |
time the execution time of |
Jouni Kerman jouni@kerman.com kerman@stat.columbia.edu
go('myprog') # will run source('myprog.r')
go() # will run source('myprog.r') again
go('somelib',add=TRUE) # will run source('myprog.r') and source('somelib.r')
go('myprog','somelib') # same as above
go('mytest') # will run source('mytest') only
go() # runs source('mytest') again
G # short cut to call go()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.