Skip to content

Commit 2265989

Browse files
committed
getting ready for cran
1 parent b350c71 commit 2265989

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+113
-78
lines changed

.Rbuildignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@
99
^CODE_OF_CONDUCT.md$
1010
^CONTRIBUTING.md$
1111
^docs$
12-
^build.R$
12+
^build.R$
13+
^cran-comments\.md$

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: ssdtools
2-
Version: 0.0.1.9003
2+
Version: 0.0.2
33
Date: 2018-10-04
44
Title: Species Sensitivity Distributions
55
Description: Fits and plots species sensitivity distributions using

NEWS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# ssdtools 0.0.2
2+
3+
* Added contributors
4+
* Added hex
5+
16
# ssdtools 0.0.1
27

38
* Initial Release

R/hc.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ ssd_hc.fitdist <- function(x, hc = 5L, nboot = 1001, level = 0.95, ...) {
3939
#' @describeIn ssd_hc Hazard Concentration
4040
#' @export
4141
#' @examples
42+
#' \dontrun{
4243
#' ssd_hc(fluazinam_lnorm)
44+
#' }
4345
ssd_hc.fitdistcens <- function(x, hc = 5L, nboot = 1001, level = 0.95, ...) {
4446
check_vector(hc, c(1L,99L), length = 1)
4547
predict(x, percent = hc, nboot = nboot, level = level)

R/predict.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,9 @@ predict.fitdist <- function(object, percent = 1:99,
5151
#' @inheritParams predict.fitdists
5252
#' @export
5353
#' @examples
54+
#' \dontrun{
5455
#' predict(fluazinam_lnorm, percent = c(5L, 50L))
56+
#' }
5557
predict.fitdistcens <- function(object, percent = 1:99,
5658
nboot = 1001, level = 0.95, ...) {
5759
check_vector(percent, c(1L, 99L), length = c(1, Inf),

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ ssd_hc(boron_dists)
111111
#> # A tibble: 1 x 5
112112
#> percent est se lcl ucl
113113
#> <int> <dbl> <dbl> <dbl> <dbl>
114-
#> 1 5 1.25 0.747 0.603 3.18
114+
#> 1 5 1.25 0.717 0.619 3.13
115115
```
116116

117117
Model-averaged predictions complete with confidence intervals can be
@@ -154,7 +154,7 @@ See the `data-raw` folder for more information.
154154
To cite package 'ssdtools' in publications use:
155155
156156
Joe Thorley and Carl Schwarz (2018). ssdtools: Species
157-
Sensitivity Distributions. R package version 0.0.1.9002.
157+
Sensitivity Distributions. R package version 0.0.1.9003.
158158
https://github.com/bcgov/ssdca
159159
160160
A BibTeX entry for LaTeX users is
@@ -163,7 +163,7 @@ A BibTeX entry for LaTeX users is
163163
title = {ssdtools: Species Sensitivity Distributions},
164164
author = {Joe Thorley and Carl Schwarz},
165165
year = {2018},
166-
note = {R package version 0.0.1.9002},
166+
note = {R package version 0.0.1.9003},
167167
url = {https://github.com/bcgov/ssdca},
168168
}
169169
```

cran-comments.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
## Test environments
2+
3+
* local OS X install, R 3.5.1
4+
* ubuntu 12.04 (on travis-ci), R 3.5.1
5+
* win-builder (devel and release)
6+
7+
## R CMD check results
8+
9+
0 errors | 0 warnings | 1 note
10+
11+
* This is a new release.
12+
13+
## Reverse dependencies
14+
15+
This is a new release, so there are no reverse dependencies.

docs/CODE_OF_CONDUCT.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/CONTRIBUTING.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/LICENSE-text.html

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)