requireR {requireR} | R Documentation |
Loads given files and modularizes the given function
requireR(...)
... |
A set of filenames, and/or ending with the modularizable function. |
## Not run: #hello.R requireR(function() { "hello" }) #world.R requireR(function() { "world" }) requireR( "hello.R", "world.R", function(hello, world) { paste(hello, world) }) ## End(Not run)