The R Project SVN R

Rev

Rev 230 | Rev 2444 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

\name{source}
\title{Redirect Input}
\usage{
source(file, local = FALSE, echo = debug, print.eval = echo,
       debug = FALSE, max.deparse.length = 150)
}
\alias{source}
\arguments{
  \item{file}{the name of the file to read from (quoted).}
  \item{local}{if \code{local} is \code{FALSE}, the statements scanned
    are evaluated in the global environment, otherwise in the local
    calling source.}
  \item{echo}{logical; if \code{TRUE}, each expression is printed after
    parsing, before evaluation.}
  \item{print.eval}{logical; if \code{TRUE}, the result of
    \code{eval(i)} is printed for each expression \code{i}; defaults to
    \code{echo}.}
  \item{debug}{if \code{TRUE}, more diagnostics are printed during
    parsing and evaluation of input, including extra info for
    \bold{each} expression.}
  \item{max.deparse.length}{integer; is used only if \code{echo} is
    \code{TRUE} and gives the maximal length of the ``echo'' of a single
    expression.}
}
\description{
  \code{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.
  \code{\link{parse}} is used to scan the files in, they are then
  evaluated sequentially in the chosen environment.
}
\seealso{
  \code{\link{demo}} which uses \code{source};
  \code{\link{eval}}, \code{\link{parse}} and \code{\link{scan}}.
}
\keyword{file}
\keyword{programming}