Prepare rstatix 1.1.0 for CRAN#308
Open
kassambara wants to merge 2 commits into
Open
Conversation
3f58cb9 to
1d2b61d
Compare
added 2 commits
July 12, 2026 17:17
Bump version to 1.1.0 and set the release date. Reorganize the NEWS section into New features / Main changes / Minor changes / Bug fixes. Update cran-comments.md for 1.1.0, recording the reverse-dependency scan.
The example called anova_test(len ~ dose, ci = 0.95) without effect.size = "pes"; the ci argument requires the partial eta-squared effect size, so the call errored. Add effect.size = "pes", which is what produces the quoted sentence.
1d2b61d to
25bbdd6
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Release preparation for rstatix 1.1.0 (previous CRAN version: 1.0.0).
This branch carries only the release-prep edits — version/date, NEWS reorganization, and
cran-comments.md. The features and fixes themselves are already on
master.Version
1.0.0.999 → 1.1.0 (minor: new exported functions and backward-compatible arguments), with
Dateset to the submission date.
One deliberate default change
cramer_v()no longer applies Yates' continuity correction by default (correctnow defaults toFALSE). This changes the value returned for 2x2 tables —cramer_v()now returns the standardsqrt(chi2 / (N * (k - 1))), matchingDescTools::CramerV()andeffectsize::cramers_v(adjust = FALSE).correct = TRUErecovers the previous value; larger tables are unaffected (#293). Everythingelse in the release is a new function or a new argument whose default reproduces the previous output.
Check status (master + this branch)
devtools::test()(vanilla): 1211 passing, 0 failures.R CMD check --as-cran: 0/0/0 (the local pandoc "cannot check README/NEWS" NOTE does not appear onCRAN); the
_R_CHECK_DEPENDS_ONLY_=trueflavour is also clean.urlchecker: all URLs correct.spelling: domain vocabulary only.(
cramer_v()) is BiostatsUHNplus, whose tests check output structure rather than the numeric value,so no revdep breakage is expected. Recorded in cran-comments.md.
Release handling
The branch is intended to stay unmerged until CRAN accepts, so
masterkeeps the dev version andthe tarball is built from this branch. win-builder / R-hub and the CRAN upload are maintainer actions.
Decisions to take