Skip to content

Commit

Permalink
Check on dev-versions (#470)
Browse files Browse the repository at this point in the history
* Check on dev-versions

* update data_rename-args

* add newline at end of file

---------

Co-authored-by: Rémi Thériault <[email protected]>
  • Loading branch information
strengejacke and rempsyc authored Dec 13, 2024
1 parent 1ee2f80 commit 39409c8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ Authors@R:
role = "aut",
email = "[email protected]",
comment = c(ORCID = "0000-0003-1995-6531")),
person(given = "Rémi",
person(given = "Rémi",
family = "Thériault",
role = c("aut", "cre"),
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0003-4315-6788")),
person(given = "Mattan S.",
Expand Down Expand Up @@ -154,4 +154,4 @@ Collate:
'utils_misspelled_variables.R'
'zzz.R'
Roxygen: list(markdown = TRUE)
Remotes: easystats/insight, easystats/effectsize, easystats/see, easystats/performance, easystats/bayestestR
Remotes: easystats/datawizard, easystats/parameters, easystats/performance, easystats/see, easystats/bayestestR
4 changes: 2 additions & 2 deletions R/report_htest_chi2.R
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@

table <- datawizard::data_rename(
as.data.frame(table),
c("CI_low", "CI_high"),
paste0(estimate, c("_CI_low", "_CI_high"))
select = c("CI_low", "CI_high"),
replacement = paste0(estimate, c("_CI_low", "_CI_high"))
)

table <- table[c(estimate, paste0(estimate, c("_CI_low", "_CI_high")))]
Expand Down
4 changes: 2 additions & 2 deletions R/report_htest_fisher.R
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@

table <- datawizard::data_rename(
as.data.frame(table),
c("CI_low", "CI_high"),
paste0(estimate, c("_CI_low", "_CI_high"))
select = c("CI_low", "CI_high"),
replacement = paste0(estimate, c("_CI_low", "_CI_high"))
)

table <- table[c(estimate, paste0(estimate, c("_CI_low", "_CI_high")))]
Expand Down
4 changes: 2 additions & 2 deletions R/report_htest_ttest.R
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@

table <- datawizard::data_rename(
as.data.frame(table),
c("CI_low", "CI_high"),
paste0(estimate, c("_CI_low", "_CI_high"))
select = c("CI_low", "CI_high"),
replacement = paste0(estimate, c("_CI_low", "_CI_high"))
)

table <- table[c(estimate, paste0(estimate, c("_CI_low", "_CI_high")))]
Expand Down

0 comments on commit 39409c8

Please sign in to comment.