Closed rempsyc closed 7 months ago
Strange, even after download effectsize
devel version, it works locally on my machine 🤔 (and after updating my local all packages)
library(report)
packageVersion("effectsize")
#> [1] '0.8.6.6'
x <- suppressWarnings(chisq.test(table(mtcars$cyl), p = c(0.1, 0.3, 0.6)))
report_effectsize(x)
#> Effect sizes were labelled following Funder's (2019) recommendations.
#>
#> medium (Fei = 0.27, 95% CI [0.17, 1.00])
report(x)
#> Effect sizes were labelled following Funder's (2019) recommendations.
#>
#> The Chi-squared test for given probabilities / goodness of fit of
#> table(mtcars$cyl) to a distribution of [4: n=3.2, 6: n=9.6, 8: n=19.2] suggests
#> that the effect is statistically significant, and medium (chi2 = 21.12, p <
#> .001; Fei = 0.27, 95% CI [0.17, 1.00])
Created on 2024-03-30 with reprex v2.1.0
So... resolved?
Apparently yes in the last tests!?? So strange lol
Currently, snapshots are failing in two ways:
The first one emerges from
report.htest-chi2
:The issue is that the effect size characteriziation "medium" is missing now, so report is probably not able to extract it from effectsize anymore.
That works correctly locally on
performance
‘0.11.0’, but seems to fail on the devel version.Example: https://github.com/easystats/report/actions/runs/8489838483/job/23260331381