Skip to content

Commit d5806d7

Browse files
authored
Merge pull request #402 from bcgov/joss-paper
2 parents 4011ab2 + da9725f commit d5806d7

24 files changed

+39
-25
lines changed

DESCRIPTION

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ Suggests:
8888
magrittr,
8989
mle.tools,
9090
patchwork,
91-
R.rsp,
9291
readr,
9392
reshape2,
9493
rmarkdown,
@@ -102,11 +101,10 @@ LinkingTo:
102101
RcppEigen,
103102
TMB
104103
VignetteBuilder:
105-
knitr,
106-
R.rsp
104+
knitr
107105
Config/testthat/edition: 3
108106
Encoding: UTF-8
109107
Language: en-US
110108
LazyData: true
111109
Roxygen: list(markdown = TRUE)
112-
RoxygenNote: 7.3.2
110+
RoxygenNote: 7.3.2.9000

_pkgdown.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,10 @@ reference:
127127
articles:
128128
- title: All vignettes
129129
contents:
130-
- model-averaging
131-
- distributions
130+
- articles/model-averaging
131+
- articles/distributions
132132
- articles/confidence-intervals
133-
- customising-plots
134-
- additional-technical-details
133+
- articles/customising-plots
134+
- articles/small-sample-bias
135+
- articles/additional-technical-details
135136
- faqs

cran-comments.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22

33
0 errors | 0 warnings | 1 note
44

5-
> checking installed package size ... NOTE
6-
> installed size is 21.2Mb
7-
> sub-directories of 1Mb or more:
8-
> doc 3.6Mb
9-
> libs 16.9Mb
5+
> ❯ checking installed package size ... NOTE
6+
> installed size is 18.0Mb
7+
> sub-directories of 1Mb or more:
8+
> libs 16.9Mb
109
11-
The large size of these sub-directories is necessary.
10+
The large size of this sub-directory is necessary as it contains a .dll for the TMB model fitting functions.

paper/paper.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ authors:
1212
orcid: 0000-0002-3178-7243
1313
affiliation: "4, 5"
1414
- name: Carl Schwarz
15+
orcid: 0000-0002-8525-862X
1516
affiliation: 6
1617
affiliations:
1718
- index: 1

ssdtools.Rproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ LaTeX: pdfLaTeX
1616
BuildType: Package
1717
PackageUseDevtools: Yes
1818
PackageInstallArgs: --no-multiarch --with-keep.source
19-
PackageRoxygenize: rd,collate,namespace
19+
PackageRoxygenize: rd,collate,namespace,vignette

vignettes/articles/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.html
2+
*.R

vignettes/additional-technical-details.Rmd renamed to vignettes/articles/additional-technical-details.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Additional Technical Details"
33
author: "ssdtools Team"
44
date: '`r format(Sys.time(), "%Y-%m-%d", tz = "UTC")`'
5-
bibliography: references.bib
5+
bibliography: ../references.bib
66
mathfont: Courier
77
latex_engine: MathJax
88
output: rmarkdown::html_vignette

vignettes/customising-plots.Rmd renamed to vignettes/articles/customising-plots.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Customising Plots"
33
author: "ssdtools Team"
44
date: '`r format(Sys.time(), "%Y-%m-%d", tz = "UTC")`'
5-
bibliography: references.bib
5+
bibliography: ../references.bib
66
mathfont: Courier
77
latex_engine: MathJax
88
output: rmarkdown::html_vignette

vignettes/distributions.Rmd renamed to vignettes/articles/distributions.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Distributions in ssdtools"
33
author: "ssdtools Team"
44
date: '`r format(Sys.time(), "%Y-%m-%d", tz = "UTC")`'
5-
bibliography: references.bib
5+
bibliography: ../references.bib
66
mathfont: Courier
77
latex_engine: MathJax
88
output: rmarkdown::html_vignette
File renamed without changes.
File renamed without changes.
File renamed without changes.

vignettes/model-averaging.Rmd renamed to vignettes/articles/model-averaging.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Model Averaging SSDs"
33
author: "ssdtools Team"
44
date: '`r format(Sys.time(), "%Y-%m-%d", tz = "UTC")`'
5-
bibliography: references.bib
5+
bibliography: ../references.bib
66
mathfont: Courier
77
latex_engine: MathJax
88
output: rmarkdown::html_vignette
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: "Small Sample Bias in Estimates"
3+
mathfont: Courier
4+
latex_engine: MathJax
5+
output: rmarkdown::html_vignette
6+
vignette: >
7+
%\VignetteIndexEntry{Small Sample Bias in Estimates}
8+
%\VignetteEngine{knitr::rmarkdown}
9+
%\VignetteEncoding{UTF-8}
10+
---
11+
12+
```{r, include = FALSE}
13+
knitr::opts_chunk$set(
14+
collapse = TRUE,
15+
comment = "#>"
16+
)
17+
```
18+
19+
Link to [small-sample-bias.pdf](https://github.com/bcgov/ssdtools/tree/main/vignettes/articles/small-sample-bias.pdf)
-97.6 KB
Binary file not shown.
-550 KB
Binary file not shown.
-225 KB
Binary file not shown.

vignettes/small-sample-bias.pdf.asis

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)