Skip to content

Commit 1715a9d

Browse files
committed
initial commit of repo
0 parents  commit 1715a9d

7 files changed

+75
-0
lines changed

.Rbuildignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
^.*\.Rproj$
2+
^\.Rproj\.user$

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.Rproj.user
2+
.Rhistory
3+
.RData

DESCRIPTION

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Package: sageAbundance
2+
Type: Package
3+
Title: Fits population model for sagebrush based on remote sensing data.
4+
Version: 0.1
5+
Date: 2015-05-12
6+
Author: Andrew Tredennick
7+
Maintainer: Andrew Tredennick <atredenn@gmail.com>
8+
Description: Uses `rstan` to fit a population model based on remote sensing
9+
pixels and then uses that model to simulate the population under
10+
different climate change scenarios.
11+
License: MIT

NAMESPACE

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
exportPattern("^[[:alpha:]]+")

R/sageAbundance.R

Whitespace-only changes.

man/sageAbundance-package.Rd

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
\name{sageAbundance-package}
2+
\alias{sageAbundance-package}
3+
\alias{sageAbundance}
4+
\docType{package}
5+
\title{
6+
What the package does (short line)
7+
~~ package title ~~
8+
}
9+
\description{
10+
More about what it does (maybe more than one line)
11+
~~ A concise (1-5 lines) description of the package ~~
12+
}
13+
\details{
14+
\tabular{ll}{
15+
Package: \tab sageAbundance\cr
16+
Type: \tab Package\cr
17+
Version: \tab 1.0\cr
18+
Date: \tab 2015-05-12\cr
19+
License: \tab What license is it under?\cr
20+
}
21+
~~ An overview of how to use the package, including the most important functions ~~
22+
}
23+
\author{
24+
Who wrote it
25+
26+
Maintainer: Who to complain to <yourfault@somewhere.net>
27+
~~ The author and/or maintainer of the package ~~
28+
}
29+
\references{
30+
~~ Literature or other references for background information ~~
31+
}
32+
~~ Optionally other standard keywords, one per line, from file KEYWORDS in the R ~~
33+
~~ documentation directory ~~
34+
\keyword{ package }
35+
\seealso{
36+
~~ Optional links to other man pages, e.g. ~~
37+
~~ \code{\link[<pkg>:<pkg>-package]{<pkg>}} ~~
38+
}
39+
\examples{
40+
~~ simple examples of the most important functions ~~
41+
}

sageAbundance.Rproj

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
Version: 1.0
2+
3+
RestoreWorkspace: Default
4+
SaveWorkspace: Default
5+
AlwaysSaveHistory: Default
6+
7+
EnableCodeIndexing: Yes
8+
UseSpacesForTab: Yes
9+
NumSpacesForTab: 2
10+
Encoding: UTF-8
11+
12+
RnwWeave: knitr
13+
LaTeX: pdfLaTeX
14+
15+
BuildType: Package
16+
PackageUseDevtools: Yes
17+
PackageInstallArgs: --no-multiarch --with-keep.source

0 commit comments

Comments
 (0)