Skip to content

Releases: IndrajeetPatil/ggstatsplot

ggstatsplot 0.12.5

01 Nov 09:02
5862391
Compare
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
Compare
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
Compare
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
Compare
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.

ggstatsplot 0.11.1

14 Apr 08:00
d679ab8
Compare
Choose a tag to compare

BREAKING CHANGES

  • The outlier tagging functionality in ggbetweenstats() and ggwithinstats()
    has been removed. It was too crude to be useful or reliable, and users should
    instead prefer more informative methods (e.g. performance::check_outliers()).

MINOR CHANGES

  • Fix failures due to changes in {parameters}.

ggstatsplot 0.11.0

15 Feb 15:24
Compare
Choose a tag to compare

BREAKING CHANGES

  • The minimum needed R version is now bumped to R 4.1 because a crucial
    dependency ({pbkrtest}) requires this R version.

MINOR CHANGES

  • Maintenance release to catch up with {ggplot2} and {easystats} updates.

ggstatsplot 0.10.0

27 Nov 13:22
2a7ee97
Compare
Choose a tag to compare

BREAKING CHANGES

  • The output parameter for all functions has been removed. All functions now
    return only the plot, which itself contains all necessary details that were
    previously extracted using the output argument. You can extract all the
    necessary details (including expressions containing statistical details)
    from a plot using extract_stats() function. There are two additional helpers
    to get expressions: extract_subtitle() and extract_caption().

MAJOR CHANGES

  • xfill and yfill arguments for ggscatterstats() have been removed. You
    can specify all aesthetic modifications for side histograms in scatter plot
    using xsidehistogram.args and ysidehistogram.args arguments.

  • Updates to changes made in the latest {ggplot2} release (3.4.0).

ggstatsplot 0.9.5

16 Oct 12:14
1efe3c6
Compare
Choose a tag to compare

MAJOR CHANGES

  • Due to changes to the underlying API of {parameters}, the effsize argument
    has been renamed to effectsize.type.

  • Removes unnecessary re-exports of {tidyverse} operators.

MINOR CHANGES

  • Fixes tests for changes in dependencies.

ggstatsplot 0.9.4

11 Aug 13:37
d0cfbbd
Compare
Choose a tag to compare

MINOR CHANGES

  • Internal housekeeping to adjust to changes in upstream dependencies.

ggstatsplot 0.9.3

27 May 10:23
3bcb17f
Compare
Choose a tag to compare

MINOR CHANGES

  • Hot fix release to correct a failing example in CRAN daily checks.