diff options
-rw-r--r-- | .Rbuildignore | 2 | ||||
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | DESCRIPTION | 9 | ||||
-rw-r--r-- | NAMESPACE | 1 | ||||
-rw-r--r-- | R/sysid.R | 0 | ||||
-rw-r--r-- | man/sysid-package.Rd | 41 | ||||
-rw-r--r-- | sysid.Rproj | 17 |
7 files changed, 73 insertions, 0 deletions
diff --git a/.Rbuildignore b/.Rbuildignore new file mode 100644 index 0000000..91114bf --- /dev/null +++ b/.Rbuildignore @@ -0,0 +1,2 @@ +^.*\.Rproj$ +^\.Rproj\.user$ diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..807ea25 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.Rproj.user +.Rhistory +.RData diff --git a/DESCRIPTION b/DESCRIPTION new file mode 100644 index 0000000..a3e40d4 --- /dev/null +++ b/DESCRIPTION @@ -0,0 +1,9 @@ +Package: sysid +Type: Package +Title: What the package does (short line) +Version: 1.0 +Date: 2015-01-17 +Author: Who wrote it +Maintainer: Who to complain to <yourfault@somewhere.net> +Description: More about what it does (maybe more than one line) +License: What license is it under? diff --git a/NAMESPACE b/NAMESPACE new file mode 100644 index 0000000..d75f824 --- /dev/null +++ b/NAMESPACE @@ -0,0 +1 @@ +exportPattern("^[[:alpha:]]+") diff --git a/R/sysid.R b/R/sysid.R new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/R/sysid.R diff --git a/man/sysid-package.Rd b/man/sysid-package.Rd new file mode 100644 index 0000000..48648a3 --- /dev/null +++ b/man/sysid-package.Rd @@ -0,0 +1,41 @@ +\name{sysid-package} +\alias{sysid-package} +\alias{sysid} +\docType{package} +\title{ +What the package does (short line) +~~ package title ~~ +} +\description{ +More about what it does (maybe more than one line) +~~ A concise (1-5 lines) description of the package ~~ +} +\details{ +\tabular{ll}{ +Package: \tab sysid\cr +Type: \tab Package\cr +Version: \tab 1.0\cr +Date: \tab 2015-01-17\cr +License: \tab What license is it under?\cr +} +~~ An overview of how to use the package, including the most important functions ~~ +} +\author{ +Who wrote it + +Maintainer: Who to complain to <yourfault@somewhere.net> +~~ The author and/or maintainer of the package ~~ +} +\references{ +~~ Literature or other references for background information ~~ +} +~~ Optionally other standard keywords, one per line, from file KEYWORDS in the R ~~ +~~ documentation directory ~~ +\keyword{ package } +\seealso{ +~~ Optional links to other man pages, e.g. ~~ +~~ \code{\link[<pkg>:<pkg>-package]{<pkg>}} ~~ +} +\examples{ +~~ simple examples of the most important functions ~~ +} diff --git a/sysid.Rproj b/sysid.Rproj new file mode 100644 index 0000000..21a4da0 --- /dev/null +++ b/sysid.Rproj @@ -0,0 +1,17 @@ +Version: 1.0 + +RestoreWorkspace: Default +SaveWorkspace: Default +AlwaysSaveHistory: Default + +EnableCodeIndexing: Yes +UseSpacesForTab: Yes +NumSpacesForTab: 2 +Encoding: UTF-8 + +RnwWeave: Sweave +LaTeX: pdfLaTeX + +BuildType: Package +PackageUseDevtools: Yes +PackageInstallArgs: --no-multiarch --with-keep.source |