- model
Object of class htest
or pairwise.htest
.
- cramers_v, phi
Compute Cramer's V or phi as index of effect size.
Can be "raw"
or "adjusted"
(effect size will be bias-corrected).
Only applies to objects from chisq.test()
.
- standardized_d
If TRUE
, compute standardized d as index of
effect size. Only applies to objects from t.test()
. Calculation of
d
is based on the t-value (see effectsize::t_to_d()
)
for details.
- hedges_g
If TRUE
, compute Hedge's g as index of effect size.
Only applies to objects from t.test()
.
- omega_squared, eta_squared, epsilon_squared
Logical, if TRUE
,
returns the non-partial effect size Omega, Eta or Epsilon squared. Only
applies to objects from oneway.test()
.
- cohens_g
If TRUE
, compute Cohen's g as index of effect size.
Only applies to objects from mcnemar.test()
.
- rank_biserial
If TRUE
, compute the rank-biserial correlation as
effect size measure. Only applies to objects from wilcox.test()
.
- rank_epsilon_squared
If TRUE
, compute the rank epsilon squared
as effect size measure. Only applies to objects from kruskal.test()
.
- kendalls_w
If TRUE
, compute the Kendall's coefficient of
concordance as effect size measure. Only applies to objects from
friedman.test()
.
- ci
Level of confidence intervals for effect size statistic. Currently
only applies to objects from chisq.test()
or oneway.test()
.
- alternative
A character string specifying the alternative hypothesis;
Controls the type of CI returned: "two.sided"
(default, two-sided CI),
"greater"
or "less"
(one-sided CI). Partial matching is allowed
(e.g., "g"
, "l"
, "two"
...). See section One-Sided CIs in
the effectsize_CIs vignette.
- bootstrap
Should estimates be bootstrapped?
- verbose
Toggle warnings and messages.
- ...
Arguments passed to or from other methods.
- ci_method
Method for computing degrees of freedom for
confidence intervals (CI) and the related p-values. Allowed are following
options (which vary depending on the model class): "residual"
,
"normal"
, "likelihood"
, "satterthwaite"
, "kenward"
, "wald"
,
"profile"
, "boot"
, "uniroot"
, "ml1"
, "betwithin"
, "hdi"
,
"quantile"
, "ci"
, "eti"
, "si"
, "bci"
, or "bcai"
. See section
Confidence intervals and approximation of degrees of freedom in
model_parameters()
for further details. When ci_method=NULL
, in most
cases "wald"
is used then.