The R Project SVN R

Rev

Rev 85554 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 85554 Rev 85586
Line 10... Line 10...
10
  Use packages in R scripts by loading their namespace and attaching a
10
  Use packages in R scripts by loading their namespace and attaching a
11
  package environment including (a subset of) their exports to the
11
  package environment including (a subset of) their exports to the
12
  search path.
12
  search path.
13
}
13
}
14
\usage{
14
\usage{
15
use(package, lib.loc = NULL, include.only)
15
use(package, include.only)
16
}
16
}
17
\arguments{
17
\arguments{
18
  \item{package}{a character string given the name of a package.}
18
  \item{package}{a character string given the name of a package.}
19
  \item{lib.loc}{a character vector describing the location of \R
-
 
20
    library trees to search through, or \code{NULL}.  The default value
-
 
21
    of \code{NULL} corresponds to all libraries currently known to
-
 
22
    \code{\link{.libPaths}()}.
-
 
23
    Non-existent library trees are silently ignored.}
-
 
24
  \item{include.only}{character vector of names of objects to
19
  \item{include.only}{character vector of names of objects to
25
    include in the attached environment frame.  If missing, all exports
20
    include in the attached environment frame.  If missing, all exports
26
    are included.}
21
    are included.}
27
}
22
}
28
\details{
23
\details{