source {base} | R Documentation |
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.
source(file, local = FALSE, echo = debug, print.eval = echo,
debug = FALSE, max.deparse.length = 150)
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 |
demo
which uses source
;
eval
, parse
and scan
.