| source {base} | R Documentation |
Redirect Input
Description
source causes R to accept its input from the named file (the
name must be quoted).
Input is read from that file until the end of the file is reached.
parse is used to scan the files in, they are then
evaluated sequentially in the chosen environment.
Usage
source(file, local = FALSE, echo = debug, print.eval = echo,
debug = FALSE, max.deparse.length = 150)
Arguments
file |
the name of the file to read from (quoted). |
local |
if |
echo |
logical; if |
print.eval |
logical; if |
debug |
if |
max.deparse.length |
integer; is used only if |
See Also
demo which uses source;
eval, parse and scan.