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

CRAN 1.0.0 #661

Merged
merged 5 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
4 changes: 2 additions & 2 deletions 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.9.1
Version: 1.0.0
Authors@R:
c(person(given = "Mattan S.",
family = "Ben-Shachar",
Expand Down Expand Up @@ -112,4 +112,4 @@ Config/Needs/website:
rstudio/bslib,
r-lib/pkgdown,
easystats/easystatstemplate
Remotes: easystats/insight
Remotes: easystats/bayestestR, easystats/insight, easystats/parameters, easystats/datawizard, easystats/performance
14 changes: 0 additions & 14 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,9 @@ export(c_to_w)
export(chisq_to_cohens_w)
export(chisq_to_cramers_v)
export(chisq_to_fei)
export(chisq_to_normalized)
export(chisq_to_pearsons_c)
export(chisq_to_phi)
export(chisq_to_tschuprows_t)
export(cles)
export(cliffs_delta)
export(cohens_d)
export(cohens_f)
Expand All @@ -86,8 +84,6 @@ export(cohens_u1)
export(cohens_u2)
export(cohens_u3)
export(cohens_w)
export(common_language)
export(convert_d_to_common_language)
export(convert_d_to_oddsratio)
export(convert_d_to_r)
export(convert_odds_to_probs)
Expand All @@ -96,11 +92,8 @@ export(convert_oddsratio_to_r)
export(convert_probs_to_odds)
export(convert_r_to_d)
export(convert_r_to_oddsratio)
export(convert_rb_to_common_language)
export(cov_pooled)
export(cramers_v)
export(d_to_cles)
export(d_to_common_language)
export(d_to_logoddsratio)
export(d_to_oddsratio)
export(d_to_overlap)
Expand Down Expand Up @@ -133,14 +126,11 @@ export(interpret_cfi)
export(interpret_cohens_d)
export(interpret_cohens_g)
export(interpret_cramers_v)
export(interpret_d)
export(interpret_delta)
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)
export(interpret_hedges_g)
Expand All @@ -152,7 +142,6 @@ export(interpret_nnfi)
export(interpret_oddsratio)
export(interpret_omega_squared)
export(interpret_p)
export(interpret_parameters)
export(interpret_pd)
export(interpret_phi)
export(interpret_pnfi)
Expand Down Expand Up @@ -182,7 +171,6 @@ export(nnt_to_arr)
export(nnt_to_logoddsratio)
export(nnt_to_oddsratio)
export(nnt_to_riskratio)
export(normalized_chi)
export(odds_to_probs)
export(oddsratio)
export(oddsratio_to_arr)
Expand All @@ -206,8 +194,6 @@ export(r_to_oddsratio)
export(rank_biserial)
export(rank_epsilon_squared)
export(rank_eta_squared)
export(rb_to_cles)
export(rb_to_common_language)
export(rb_to_p_superiority)
export(rb_to_vda)
export(rb_to_wmw_odds)
Expand Down
5 changes: 4 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# effectsize 0.8.9.xxx
# effectsize 1.0.0

***First stable release of `{effectsize}`!***

## New features

Expand All @@ -8,6 +10,7 @@
## Breaking Changes

- `interpret_oddsratio()` drops the default `"chen2010"` as it was used incorrectly (thanks to @KohlRaphael).
- Functions that have been deprecated since _September 2022_ have been removed.

# effectsize 0.8.9

Expand Down
80 changes: 0 additions & 80 deletions R/zzz_deprecated.R
Original file line number Diff line number Diff line change
Expand Up @@ -64,83 +64,3 @@ convert_r_to_oddsratio <- function(...) {
.Deprecated("r_to_oddsratio")
r_to_oddsratio(...)
}

# Older -------------------------------------------------------------------

#' @rdname effectsize_deprecated
#' @export
interpret_d <- function(...) {
.Deprecated("interpret_cohens_d")
interpret_cohens_d(...)
}

#' @rdname effectsize_deprecated
#' @export
interpret_g <- function(...) {
.Deprecated("interpret_hedges_g")
interpret_hedges_g(...)
}

#' @rdname effectsize_deprecated
#' @export
interpret_delta <- function(...) {
.Deprecated("interpret_glass_delta")
interpret_glass_delta(...)
}

#' @rdname effectsize_deprecated
#' @export
interpret_parameters <- function(...) {
.Deprecated("interpret_r")
interpret_r(...)
}

#' @rdname effectsize_deprecated
#' @export
normalized_chi <- function(...) {
.Deprecated("fei")
fei(...)
}

#' @rdname effectsize_deprecated
#' @export
chisq_to_normalized <- function(...) {
.Deprecated("chisq_to_fei")
chisq_to_fei(...)
}

#' @export
d_to_cles <- function(...) {
.Defunct(NULL, msg = 'See help("d_to_cles") for the available functions.')
}

#' @export
rb_to_cles <- function(...) {
.Deprecated("rb_to_p_superiority")
rb_to_p_superiority(...)
}

#' @rdname effectsize_deprecated
#' @export
convert_d_to_common_language <- d_to_cles

#' @rdname effectsize_deprecated
#' @export
d_to_common_language <- d_to_cles

#' @rdname effectsize_deprecated
#' @export
convert_rb_to_common_language <- rb_to_cles

#' @rdname effectsize_deprecated
#' @export
rb_to_common_language <- rb_to_cles

#' @export
cles <- function(...) {
.Defunct(NULL, msg = 'See help("p_superiority") for the available functions.')
}

#' @rdname effectsize_deprecated
#' @export
common_language <- cles
33 changes: 0 additions & 33 deletions man/effectsize_deprecated.Rd

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

Loading