Skip to content

Commit

Permalink
Merge pull request #374 from insightsengineering/fix-pipes
Browse files Browse the repository at this point in the history
updated news / description
  • Loading branch information
gowerc authored Oct 18, 2022
2 parents 107af83 + 37af433 commit dc4dbdd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: rbmi
Title: Reference Based Multiple Imputation
Version: 1.2.0
Version: 1.2.1
Authors@R: c(
person("Craig", "Gower-Page", email = "[email protected]", role = c("aut", "cre")),
person("Alessandro", "Noci", email = "[email protected]", role = c("aut")),
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

* No updates yet

# rbmi 1.2.1

* Removed native pipes `|>` in testing code so package is backwards compatible with older servers

# rbmi 1.2.0

* Replaced our `glmmTMB` dependency with the `mmrm` package. This has resulted in the package being more stable (less model fitting convergence issues) as well as speeding up run times 3-fold.
Expand Down
4 changes: 2 additions & 2 deletions tests/testthat/test-mmrm.R
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ test_that("visit & group factor levels / order doesn't break model extraction",



dat_modified <- dat |>
dat_modified <- dat %>%
mutate(group = relevel(group, "B"))

mod <- mmrm::mmrm(
Expand All @@ -481,7 +481,7 @@ test_that("visit & group factor levels / order doesn't break model extraction",



dat_modified <- dat |>
dat_modified <- dat %>%
mutate(visit = relevel(visit, "visit_3"))

mod <- mmrm::mmrm(
Expand Down

0 comments on commit dc4dbdd

Please sign in to comment.