Skip to content

Commit

Permalink
Better ncp ci optimization (#629)
Browse files Browse the repository at this point in the history
* use q* instead of p*

* v bump

* update docs
  • Loading branch information
mattansb committed Jan 29, 2024
1 parent c3be95d commit af6dfba
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 43 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.5
Version: 0.8.6.6
Authors@R:
c(person(given = "Mattan S.",
family = "Ben-Shachar",
Expand Down
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

## Bug fixes

- Minor stability fix to ncp-based CI methods ( #628 )
- `nnt()` now properly accepts the `y` argument.

# effectsize 0.8.7
Expand Down
9 changes: 2 additions & 7 deletions R/docs_extra.R
Original file line number Diff line number Diff line change
Expand Up @@ -124,13 +124,8 @@
#' smaller than the tolerance of the optimizer, resulting in CIs of width 0.
#' This can also result in the estimated CIs excluding the point estimate.
#'
#' For example:
#' ```{r}
#' t_to_d(80, df_error = 4555555)
#' ```
#'
#' In these cases, consider an alternative optimizer, or an alternative method
#' for computing CIs, such as the bootstrap.
#' In these cases, consider an alternative method for computing CIs, such as the
#' bootstrap.
#'
#'
#' @references
Expand Down
41 changes: 17 additions & 24 deletions R/utils_ci.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,8 @@
ncp <- suppressWarnings(stats::optim(
par = 1.1 * rep(lambda, 2),
fn = function(x) {
p <- stats::pf(q = f, df, df_error, ncp = x)

abs(max(p) - probs[2]) +
abs(min(p) - probs[1])
q <- stats::qf(p = probs, df, df_error, ncp = x)
sum(abs(q - f))
},
control = list(abstol = 1e-09)
))
Expand All @@ -37,56 +35,51 @@

#' @keywords internal
.get_ncp_t <- function(t, df_error, conf.level = 0.95) {
# # Note: these aren't actually needed - all t related functions would fail earlier
# if (!is.finite(t) || !is.finite(df_error)) {
# return(c(NA, NA))
# }
if (!is.finite(t) || !is.finite(df_error)) {
return(c(NA, NA))
}

alpha <- 1 - conf.level
probs <- c(alpha / 2, 1 - alpha / 2)

ncp <- suppressWarnings(stats::optim(
par = 1.1 * rep(t, 2),
fn = function(x) {
p <- stats::pt(q = t, df = df_error, ncp = x)

abs(max(p) - probs[2]) +
abs(min(p) - probs[1])
q <- stats::qt(p = probs, df = df_error, ncp = x)
sum(abs(q - t))
},
control = list(abstol = 1e-09)
))

t_ncp <- unname(sort(ncp$par))

return(t_ncp)
}

#' @keywords internals
.get_ncp_chi <- function(chi, df, conf.level = 0.95) {
# # Note: these aren't actually needed - all chisq related functions would fail earlier
# if (!is.finite(chi) || !is.finite(df)) {
# return(c(NA, NA))
# }
.get_ncp_chi <- function(chisq, df, conf.level = 0.95) {
if (!is.finite(chisq) || !is.finite(df)) {
return(c(NA, NA))
}

alpha <- 1 - conf.level
probs <- c(alpha / 2, 1 - alpha / 2)

ncp <- suppressWarnings(stats::optim(
par = 1.1 * rep(chi, 2),
par = 1.1 * rep(chisq, 2),
fn = function(x) {
p <- stats::pchisq(q = chi, df, ncp = x)

abs(max(p) - probs[2]) +
abs(min(p) - probs[1])
q <- stats::qchisq(p = probs, df, ncp = x)
sum(abs(q - chisq))
},
control = list(abstol = 1e-09)
))
chi_ncp <- sort(ncp$par)

if (chi <= stats::qchisq(probs[1], df)) {
if (chisq <= stats::qchisq(probs[1], df)) {
chi_ncp[2] <- 0
}

if (chi <= stats::qchisq(probs[2], df)) {
if (chisq <= stats::qchisq(probs[2], df)) {
chi_ncp[1] <- 0
}

Expand Down
2 changes: 1 addition & 1 deletion man/cohens_d.Rd

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

1 change: 1 addition & 0 deletions man/effectsize-package.Rd

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

12 changes: 2 additions & 10 deletions man/effectsize_CIs.Rd

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

0 comments on commit af6dfba

Please sign in to comment.