Skip to content

Commit 39409c8

Browse files
Check on dev-versions (#470)
* Check on dev-versions * update data_rename-args * add newline at end of file --------- Co-authored-by: Rémi Thériault <[email protected]>
1 parent 1ee2f80 commit 39409c8

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

DESCRIPTION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ Authors@R:
1818
role = "aut",
1919
email = "[email protected]",
2020
comment = c(ORCID = "0000-0003-1995-6531")),
21-
person(given = "Rémi",
21+
person(given = "Rémi",
2222
family = "Thériault",
23-
role = c("aut", "cre"),
23+
role = c("aut", "cre"),
2424
email = "[email protected]",
2525
comment = c(ORCID = "0000-0003-4315-6788")),
2626
person(given = "Mattan S.",
@@ -154,4 +154,4 @@ Collate:
154154
'utils_misspelled_variables.R'
155155
'zzz.R'
156156
Roxygen: list(markdown = TRUE)
157-
Remotes: easystats/insight, easystats/effectsize, easystats/see, easystats/performance, easystats/bayestestR
157+
Remotes: easystats/datawizard, easystats/parameters, easystats/performance, easystats/see, easystats/bayestestR

R/report_htest_chi2.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747

4848
table <- datawizard::data_rename(
4949
as.data.frame(table),
50-
c("CI_low", "CI_high"),
51-
paste0(estimate, c("_CI_low", "_CI_high"))
50+
select = c("CI_low", "CI_high"),
51+
replacement = paste0(estimate, c("_CI_low", "_CI_high"))
5252
)
5353

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

R/report_htest_fisher.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@
4040

4141
table <- datawizard::data_rename(
4242
as.data.frame(table),
43-
c("CI_low", "CI_high"),
44-
paste0(estimate, c("_CI_low", "_CI_high"))
43+
select = c("CI_low", "CI_high"),
44+
replacement = paste0(estimate, c("_CI_low", "_CI_high"))
4545
)
4646

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

R/report_htest_ttest.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@
7070

7171
table <- datawizard::data_rename(
7272
as.data.frame(table),
73-
c("CI_low", "CI_high"),
74-
paste0(estimate, c("_CI_low", "_CI_high"))
73+
select = c("CI_low", "CI_high"),
74+
replacement = paste0(estimate, c("_CI_low", "_CI_high"))
7575
)
7676

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

0 commit comments

Comments
 (0)