-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #315 from insightsengineering/cran-release
Cran release
- Loading branch information
Showing
144 changed files
with
9,666 additions
and
2,120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,9 @@ | |
^\.lintr$ | ||
^.gitignore$ | ||
^src/\.gitkeep$ | ||
^.git$ | ||
^_pkgdown\.yml$ | ||
^docs$ | ||
^pkgdown$ | ||
^data-raw$ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
|
||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- 'misc/**' | ||
|
||
name: On Push | ||
|
||
jobs: | ||
|
||
testthat: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ghcr.io/${{ github.repository_owner }}/rbmi:r404 | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Build src | ||
uses: ./.github/actions/build-src | ||
|
||
- name: testthat | ||
run: | | ||
options(crayon.enabled = TRUE, cli.dynamic = FALSE) | ||
devtools::test(stop_on_failure = TRUE, reporter = testthat::CheckReporter) | ||
shell: Rscript {0} | ||
|
||
document: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: ghcr.io/${{ github.repository_owner }}/rbmi:r404 | ||
steps: | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Build src | ||
uses: ./.github/actions/build-src | ||
|
||
- name: Document Code | ||
run: | | ||
options(crayon.enabled = TRUE, cli.dynamic = FALSE) | ||
devtools::document() | ||
shell: Rscript {0} | ||
|
||
- name: Check Is Clean | ||
shell: bash | ||
run: | | ||
git status | ||
if [ -z "$(git status --porcelain)" ]; then | ||
echo "Is Clean" | ||
else | ||
echo "Changed Detected" | ||
exit 2 | ||
fi | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
--- | ||
name: Docs | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
docs: | ||
name: Pkgdown Docs | ||
uses: insightsengineering/r.pkg.template/.github/workflows/pkgdown.yaml@main | ||
secrets: | ||
REPO_GITHUB_TOKEN: ${{ secrets.REPO_GITHUB_TOKEN }} | ||
with: | ||
install-system-dependencies: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -49,5 +49,11 @@ src/* | |
|
||
.DS_store | ||
|
||
nul | ||
|
||
!.gitkeep | ||
inst/doc | ||
docs | ||
/doc/ | ||
/Meta/ | ||
.github/meta.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
linters: with_defaults( | ||
line_length_linter(120) | ||
line_length_linter(120), | ||
object_name_linter = NULL | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
Package: rbmi | ||
Title: Reference Based Multiple Imputation | ||
Version: 1.0.2 | ||
Version: 1.1.0 | ||
Authors@R: c( | ||
person("Craig", "Gower-Page", email = "[email protected]", role = "aut"), | ||
person("Alessandro", "Noci", email = "[email protected]", role = c("aut", "cre")), | ||
person("Craig", "Gower-Page", email = "[email protected]", role = c("aut", "cre")), | ||
person("Alessandro", "Noci", email = "[email protected]", role = c("aut")), | ||
person("Marcel", "Wolbers", email = "[email protected]", role = "ctb"), | ||
person("Roche", role = c("cph", "fnd")) | ||
) | ||
Description: Implements reference based multiple imputation allowing for the imputation of longditudinal datasets using pre-defined strategies. | ||
Encoding: UTF-8 | ||
LazyData: true | ||
Roxygen: list(markdown = TRUE) | ||
RoxygenNote: 7.1.1 | ||
RoxygenNote: 7.1.2 | ||
Suggests: | ||
dplyr, | ||
covr, | ||
|
@@ -24,7 +24,9 @@ Suggests: | |
knitr, | ||
rmarkdown, | ||
bookdown, | ||
lubridate | ||
lubridate, | ||
purrr, | ||
ggplot2 | ||
Biarch: true | ||
Config/testthat/edition: 3 | ||
Imports: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.