Skip to content

Releases: IndrajeetPatil/ggstatsplot

ggstatsplot 0.13.5

06 Feb 08:01
f9c993a

Choose a tag to compare

MINOR CHANGES

  • Maintenance release to adapt to API changes in {dplyr} (v1.2.0) and {purrr} (v1.2.1).

ggstatsplot 0.13.4

09 Dec 18:43
c4f8c5a

Choose a tag to compare

N.B. All statistical analysis in {ggstatsplot} is carried out in
{statsExpressions}. Thus, to see changes related to statistical expressions,
read the NEWS for that package:
https://indrajeetpatil.github.io/statsExpressions/news/index.html

MINOR CHANGES

  • Removed Chuck Powell from the contributors list in DESCRIPTION. While Chuck
    made significant contributions to early versions of the package (2018-2019),
    all of his code was completely replaced during the 2019 refactoring when
    statistical functionality was moved to the {statsExpressions} package.

ggstatsplot 0.13.3

06 Oct 17:42
7ce91df

Choose a tag to compare

BUG FIXES

  • Updates gghistostats() to fix parsing issues on secondary axis labels
    due to changes in upstream dependencies.

ggstatsplot 0.13.2

11 Sep 19:05
ade034b

Choose a tag to compare

MINOR CHANGES

  • Updates the package to adapt to the changes in the latest
    {ggplot2} release.

ggstatsplot 0.13.1

10 May 08:19
d5f8345

Choose a tag to compare

MAJOR CHANGES

  • The license for the package has been changed from GPL-3 to MIT.

  • ggdotplotstats() displays uncertainty (confidence intervals) for the
    centrality measure estimates in the plot. This is controlled by the conf.int
    argument. The default is TRUE, which means that the confidence intervals are
    displayed. If you do not want to display them, set conf.int = FALSE.

ggstatsplot 0.13.0

04 Dec 16:23
18b2a2d

Choose a tag to compare

BREAKING CHANGES

  • The minimum needed R version is now bumped to R 4.3.

MINOR CHANGES

  • Fixes failing tests due to {easystats} package updates.

ggstatsplot 0.12.5

01 Nov 09:02
5862391

Choose a tag to compare

MAJOR CHANGES

  • extract_stats() returns a list of class ggstatsplot_stats which
    contains all the statistical summaries and expressions for a given plot.

  • extract_stats(), extract_subtitle(), extract_caption() now works
    out of the box for the grouped plots as well.

BUG FIXES

  • ggpiestats() and ggbarstats() now respect ratio() argument for
    proportion tests run in case of two-way contingency tables (#818).

MINOR CHANGES

  • Unused dataset has been removed: bugs_wide.

ggstatsplot 0.12.4

06 Jul 19:30
de5dff9

Choose a tag to compare

MAJOR CHANGES

  • The feature to superimpose normality curve on a histogram (in gghistostats()) has been removed.
    This feature always felt like an ad hoc addition to the plot, and has nothing to do with the key
    statistical analysis in question (which is not about checking the normality of the distribution).

MINOR CHANGES

  • Updates code to fix warnings coming via updates to easystats packages.

BUG FIXES

  • Empty groups in factors are no longer dropped in ggpiestats() and ggbarstats() (#935).

ggstatsplot 0.12.3

16 Apr 18:54
acf6838

Choose a tag to compare

MAJOR CHANGES

  • The cryptic but very useful parameter k has been renamed to digits to
    improve its discoverability.

  • To be consistent with other functions, ggpiestats() and ggbarstats() now
    default to two-sided alternative hypothesis.

ggstatsplot 0.12.0

07 Aug 16:45
24ca86f

Choose a tag to compare

BREAKING CHANGES

  • To be internally consistent, the plot.type argument has been removed from
    ggbetweenstats(), since no such argument exists for ggwithinstats(). This
    argument was also redundant. Since removing a specific geom is straightforward
    using *.args arguments. Examples for these two functions illustrate how.

  • ggbetweenstats() and ggwithinstats() retire pairwise.comparisons
    argument since it was redundant. In order to turn off showing pairwise
    comparisons, you can now use pairwise.display = "none".

NEW FEATURES

  • ggbetweenstats() gets boxplot.args argument to pass additional arguments
    to the underlying geom function. This also fixes regression introduced in
    0.11.1 release where outlier points were displayed along with box plot.