Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add interpretation for fei effect size #609

Merged
merged 2 commits into from
Sep 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

Loading