Following https://github.com/easystats/effectsize/pull/366, report should give an in-text mention to the one-sided CIs.
Information about the "side" can be found in the "alternative" attribute:
library(effectsize)
cohens_d(mpg ~ am, data = mtcars) |>
attr("alternative")
#> [1] "two.sided"
cohens_d(mpg ~ am, data = mtcars, alternative = "g") |>
attr("alternative")
#> [1] "greater"
cohens_d(mpg ~ am, data = mtcars, alternative = "less") |>
attr("alternative")
#> [1] "less"
Following https://github.com/easystats/effectsize/pull/366, report should give an in-text mention to the one-sided CIs. Information about the "side" can be found in the "alternative" attribute:
Created on 2021-08-18 by the reprex package (v2.0.1)