Skip to content

Commit

Permalink
Merge pull request #70 from rapidsurveys:dev
Browse files Browse the repository at this point in the history
complete parallelisation vignette; fix #43
  • Loading branch information
ernestguevarra authored Jan 15, 2025
2 parents 527a860 + 2266ab3 commit 8bc1b0f
Show file tree
Hide file tree
Showing 10 changed files with 2,079 additions and 13 deletions.
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@
^CRAN-SUBMISSION$
^README\.html$
^CODE_OF_CONDUCT\.md$
^doc$
^Meta$
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,5 @@
README.html
docs
inst/doc
/doc/
/Meta/
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ knitr::opts_chunk$set(
[![CRAN](http://cranlogs.r-pkg.org/badges/grand-total/bbw)](https://CRAN.R-project.org/package=bbw)
[![R-CMD-check](https://github.com/rapidsurveys/bbw/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/rapidsurveys/bbw/actions/workflows/R-CMD-check.yaml)
[![test-coverage](https://github.com/rapidsurveys/bbw/actions/workflows/test-coverage.yaml/badge.svg)](https://github.com/rapidsurveys/bbw/actions/workflows/test-coverage.yaml)
[![codecov](https://codecov.io/gh/rapidsurveys/bbw/graph/badge.svg?token=edgQexvxhi)](https://codecov.io/gh/rapidsurveys/bbw)
[![codecov](https://codecov.io/gh/rapidsurveys/bbw/graph/badge.svg?token=edgQexvxhi)](https://app.codecov.io/gh/rapidsurveys/bbw)
[![CodeFactor](https://www.codefactor.io/repository/github/rapidsurveys/bbw/badge)](https://www.codefactor.io/repository/github/rapidsurveys/bbw)
[![DOI](https://zenodo.org/badge/117305174.svg)](https://doi.org/10.5281/zenodo.6594797)
<!-- badges: end -->
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://
[![CRAN](http://cranlogs.r-pkg.org/badges/grand-total/bbw)](https://CRAN.R-project.org/package=bbw)
[![R-CMD-check](https://github.com/rapidsurveys/bbw/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/rapidsurveys/bbw/actions/workflows/R-CMD-check.yaml)
[![test-coverage](https://github.com/rapidsurveys/bbw/actions/workflows/test-coverage.yaml/badge.svg)](https://github.com/rapidsurveys/bbw/actions/workflows/test-coverage.yaml)
[![codecov](https://codecov.io/gh/rapidsurveys/bbw/graph/badge.svg?token=edgQexvxhi)](https://codecov.io/gh/rapidsurveys/bbw)
[![codecov](https://codecov.io/gh/rapidsurveys/bbw/graph/badge.svg?token=edgQexvxhi)](https://app.codecov.io/gh/rapidsurveys/bbw)
[![CodeFactor](https://www.codefactor.io/repository/github/rapidsurveys/bbw/badge)](https://www.codefactor.io/repository/github/rapidsurveys/bbw)
[![DOI](https://zenodo.org/badge/117305174.svg)](https://doi.org/10.5281/zenodo.6594797)
<!-- badges: end -->
Expand Down Expand Up @@ -121,10 +121,10 @@ follows:
citation("bbw")
#> To cite bbw in publications use:
#>
#> Mark Myatt, Ernest Guevarra (2025). _bbw: Blocked
#> Weighted Bootstrap_. doi:10.5281/zenodo.6594797
#> <https://doi.org/10.5281/zenodo.6594797>, R package
#> version 0.2.3, <https://rapidsurveys.io/bbw/>.
#> Mark Myatt, Ernest Guevarra (2025). _bbw: Blocked Weighted
#> Bootstrap_. doi:10.5281/zenodo.6594797
#> <https://doi.org/10.5281/zenodo.6594797>, R package version 0.2.3,
#> <https://rapidsurveys.io/bbw/>.
#>
#> A BibTeX entry for LaTeX users is
#>
Expand Down
1 change: 1 addition & 0 deletions inst/WORDLIST
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,6 @@ codecov
df
doi
psu
runtimes
sd
th
13 changes: 7 additions & 6 deletions pkgdown/_pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ navbar:
left: [home, intro, reference, articles, news]
right: [search, mastodon, linkedin, github]
components:
# articles:
# text: Articles
# menu:
# - text: "The RAM-OP Workflow"
# href: articles/ram_op_workflow.html
articles:
text: Articles
menu:
- text: "Blocked weighted bootstrap estimation"
href: articles/bbw-estimation.html
- text: "Using bbw with parallel computation"
href: articles/bbw-parallel.html
mastodon:
icon: "fab fa-mastodon fa-lg"
aria-label: Mastodon
Expand All @@ -34,7 +36,6 @@ navbar:
aria-label: LinkedIn
href: https://www.linkedin.com/company/katilingban


home:
#links:
#- text: Read more about haemoglobin concentrations for the diagnosis of anaemia and assessment of severity
Expand Down
1 change: 1 addition & 0 deletions tests/testthat/test-boot_bw.R
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ test_that("boot_bw_weight works as expected", {
),
"integer"
)
expect_message(boot_bw_weight(boot_bw_weight(villageData)))
})

mean_boot <- boot_bw(
Expand Down
Loading

0 comments on commit 8bc1b0f

Please sign in to comment.