easystats / report

:scroll: :tada: Automated reporting of objects in R
https://easystats.github.io/report/
Other
695 stars 69 forks source link

Address one-sided CIs #199

Open mattansb opened 3 years ago

mattansb commented 3 years ago

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"

Created on 2021-08-18 by the reprex package (v2.0.1)

IndrajeetPatil commented 3 years ago

Is this same as https://github.com/easystats/report/issues/205? (If yes, one of these two issues can be closed in favor of the other.)

IndrajeetPatil commented 2 years ago

bump

mattansb commented 2 years ago

Duplicate of #205