Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Sep 3, 2024
1 parent b1355db commit a86b787
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions R/p_significance.R
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ bayestestR::p_significance
#' @title Practical Significance (ps)
#'
#' @description Compute the probability of **Practical Significance**
#' (***ps***), which can be conceptualized as a unidirectional equivalence test.
#' (*ps*), which can be conceptualized as a unidirectional equivalence test.
#' It returns the probability that an effect is above a given threshold
#' corresponding to a negligible effect in the median's direction, considering
#' a parameter's confidence interval. In comparison the the [`equivalence_test()`]
Expand Down Expand Up @@ -100,7 +100,7 @@ print.p_significance_lm <- function(x, digits = 2, p_digits = 3, ...) {
}
caption <- sprintf(
"Practical Significance (threshold: %s)",
paste(insight::format_value(threshold, digits = 2), collapse = ", ")
toString(insight::format_value(threshold, digits = 2))
)
x$ps <- insight::format_p(x$ps, name = "ps", digits = p_digits)
x <- insight::format_table(x, digits = digits, p_digits = p_digits)
Expand Down
1 change: 1 addition & 0 deletions inst/WORDLIST
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@ posthoc
pre
priori
probabilistically
ps
pscl
quantreg
quartiles
Expand Down
2 changes: 1 addition & 1 deletion man/p_significance.lm.Rd

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

2 changes: 1 addition & 1 deletion pkgdown/_pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ reference:
- equivalence_test.lm
- p_calibrate
- p_function
- p_significance
- p_significance.lm

- title: "Parameter Sampling"
contents:
Expand Down

0 comments on commit a86b787

Please sign in to comment.