From 413e32683bf231398858faa33c5625b3a3cc656a Mon Sep 17 00:00:00 2001
From: Abinaya Yogasekaram <73252787+ayogasekaram@users.noreply.github.com>
Date: Tue, 16 Apr 2024 19:20:06 -0400
Subject: [PATCH 1/2] reorganize pkgdown (#122)
**What changes are proposed in this pull request?**
pkgdown reorganization, divide `ard_*()` based on package
preview:
closes #114
--------------------------------------------------------------------------------
Pre-review Checklist (if item does not apply, mark is as complete)
- [x] **All** GitHub Action workflows pass with a :white_check_mark:
- [x] PR branch has pulled the most recent updates from master branch:
`usethis::pr_merge_main()`
- [x] If a bug was fixed, a unit test was added.
- [x] If a new `ard_*()` function was added, it passes the ARD
structural checks from `cards::check_ard_structure()`.
- [x] Code coverage is suitable for any new functions/features
(generally, 100% coverage for new code): `devtools::test_coverage()`
Reviewer Checklist (if item does not apply, mark is as complete)
- [ ] If a bug was fixed, a unit test was added.
- [ ] Code coverage is suitable for any new functions/features:
`devtools::test_coverage()`
When the branch is ready to be merged:
- [ ] Update `NEWS.md` with the changes from this pull request under the
heading "`# cardx (development version)`". If there is an issue
associated with the pull request, reference it in parentheses at the end
update (see `NEWS.md` for examples).
- [ ] **All** GitHub Action workflows pass with a :white_check_mark:
- [ ] Approve Pull Request
- [ ] Merge the PR. Please use "Squash and merge" or "Rebase and merge".
---------
Co-authored-by: Daniel Sjoberg
---
_pkgdown.yml | 39 +++++++++++++++++++++++++++++----------
1 file changed, 29 insertions(+), 10 deletions(-)
diff --git a/_pkgdown.yml b/_pkgdown.yml
index 0a9b92c05..16fedbf6b 100644
--- a/_pkgdown.yml
+++ b/_pkgdown.yml
@@ -22,10 +22,9 @@ authors:
reference:
- title: "ARD Creation"
- - subtitle: "Inference"
+
+ - subtitle: "{stats} package"
- contents:
- - ard_aod_wald_test
- - ard_car_anova
- ard_stats_anova
- ard_stats_aov
- ard_stats_chisq_test
@@ -37,21 +36,41 @@ reference:
- ard_stats_prop_test
- ard_stats_t_test
- ard_stats_wilcox_test
- - ard_survey_svychisq
- - ard_survey_svyranktest
- - ard_survey_svyttest
- - subtitle: "Estimation"
+ - subtitle: "{aod} package"
+ - contents:
+ - ard_aod_wald_test
+
+ - subtitle: "{car} package"
- contents:
+ - ard_car_anova
- ard_car_vif
+
+ - subtitle: "{effectsize} package"
+ - contents:
- ard_effectsize_cohens_d
- ard_effectsize_hedges_g
+
+ - subtitle: "{smd} package"
+ - contents:
+ - ard_smd_smd
+
+ - subtitle: "{survey} package"
+ - contents:
+ - ard_survey_svychisq
+ - ard_survey_svycontinuous
+ - ard_survey_svyranktest
+ - ard_survey_svyttest
+
+ - subtitle: "{survival} package"
+ - contents:
+ - ard_survival_survfit
+
+ - subtitle: "Other ARD functions"
+ - contents:
- ard_proportion_ci
- ard_regression
- ard_regression_basic
- - ard_smd_smd
- - ard_survival_survfit
- - ard_survey_svycontinuous
- title: "Helpers"
- contents:
From 84cf6eb991376b4f80af66d1f84a5f1aef91bc0c Mon Sep 17 00:00:00 2001
From: ddsjoberg
Date: Tue, 16 Apr 2024 23:20:57 +0000
Subject: [PATCH 2/2] [skip actions] Bump version to 0.1.0.9019
---
DESCRIPTION | 2 +-
NEWS.md | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/DESCRIPTION b/DESCRIPTION
index 0eeb402ab..63e356210 100644
--- a/DESCRIPTION
+++ b/DESCRIPTION
@@ -1,6 +1,6 @@
Package: cardx
Title: Extra Analysis Results Data Utilities
-Version: 0.1.0.9018
+Version: 0.1.0.9019
Authors@R: c(
person("Daniel", "Sjoberg", , "danield.sjoberg@gmail.com", role = c("aut", "cre")),
person("Abinaya", "Yogasekaram", , "abinaya.yogasekaram@contractors.roche.com", role = "aut"),
diff --git a/NEWS.md b/NEWS.md
index 3ead9a0a6..01a2b5fd7 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -1,4 +1,4 @@
-# cardx 0.1.0.9018
+# cardx 0.1.0.9019
### Breaking Changes