The R Project SVN R

Rev

Rev 72099 | Rev 84750 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 72099 Rev 73109
Line 14... Line 14...
14
}
14
}
15
\usage{
15
\usage{
16
package.skeleton(name = "anRpackage", list,
16
package.skeleton(name = "anRpackage", list,
17
                 environment = .GlobalEnv,
17
                 environment = .GlobalEnv,
18
                 path = ".", force = FALSE,
18
                 path = ".", force = FALSE,
19
                 code_files = character())
19
                 code_files = character(), encoding = "unknown")
20
}
20
}
21
\arguments{
21
\arguments{
22
  \item{name}{character string: the package name and directory name for
22
  \item{name}{character string: the package name and directory name for
23
    your package.}
23
    your package.}
24
  \item{list}{character vector naming the \R objects to put in the
24
  \item{list}{character vector naming the \R objects to put in the
Line 28... Line 28...
28
    \sQuote{Details}.}
28
    \sQuote{Details}.}
29
  \item{path}{path to put the package directory in.}
29
  \item{path}{path to put the package directory in.}
30
  \item{force}{If \code{FALSE} will not overwrite an existing directory.}
30
  \item{force}{If \code{FALSE} will not overwrite an existing directory.}
31
  \item{code_files}{a character vector with the paths to R code files to
31
  \item{code_files}{a character vector with the paths to R code files to
32
    build the package around.  See \sQuote{Details}.}
32
    build the package around.  See \sQuote{Details}.}
-
 
33
  \item{encoding}{optionally a \code{\link{character}} string with an
-
 
34
    encoding for an optional \code{Encoding:} line in
-
 
35
    \file{DESCRIPTION} when non-ASCII characters will be used; typically
-
 
36
    one of \code{"latin1"}, \code{"latin2"}, or \code{"UTF-8"}; see the
-
 
37
    WRE manual.}
33
}
38
}
34
\value{
39
\value{
35
  Used for its side-effects.
40
  Used for its side-effects.
36
}
41
}
37
\details{
42
\details{