Skip to content

Commit

Permalink
Add interpretation for fei effect size
Browse files Browse the repository at this point in the history
  • Loading branch information
rempsyc committed Sep 24, 2023
1 parent 9a6bb14 commit ad341f7
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Type: Package
Package: effectsize
Title: Indices of Effect Size
Version: 0.8.6
Version: 0.8.6.1
Authors@R:
c(person(given = "Mattan S.",
family = "Ben-Shachar",
Expand Down
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ export(interpret_direction)
export(interpret_epsilon_squared)
export(interpret_ess)
export(interpret_eta_squared)
export(interpret_fei)
export(interpret_g)
export(interpret_gfi)
export(interpret_glass_delta)
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# effectsize 0.8.7

## New features

- New function: `interpret_fei()`

# effectsize 0.8.6

This is a minor update to bring `effectsize` in-line with the formula methods
Expand Down
2 changes: 1 addition & 1 deletion R/interpret.R
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ interpret.effectsize_table <- function(x, rules, ...) {
Cohens_w = ,
Tschuprows_t = ,
Tschuprows_t_adjusted = ,
fei = interpret_cramers_v(value, rules = rules),
Fei = interpret_fei(value, rules = rules),

## xtab 2x2
Cohens_h = interpret_cohens_d(value, rules = rules),
Expand Down
4 changes: 4 additions & 0 deletions R/interpret_r.R
Original file line number Diff line number Diff line change
Expand Up @@ -109,3 +109,7 @@ interpret_cramers_v <- interpret_r
#' @export
#' @rdname interpret_r
interpret_rank_biserial <- interpret_r

#' @export
#' @rdname interpret_r
interpret_fei <- interpret_r
2 changes: 1 addition & 1 deletion man/effectsize.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions man/interpret_r.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ad341f7

Please sign in to comment.