Releases: IndrajeetPatil/ggstatsplot
ggstatsplot 0.13.5
MINOR CHANGES
- Maintenance release to adapt to API changes in
{dplyr}(v1.2.0) and{purrr}(v1.2.1).
ggstatsplot 0.13.4
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
BUG FIXES
- Updates
gghistostats()to fix parsing issues on secondary axis labels
due to changes in upstream dependencies.
ggstatsplot 0.13.2
MINOR CHANGES
- Updates the package to adapt to the changes in the latest
{ggplot2}release.
ggstatsplot 0.13.1
MAJOR CHANGES
-
The license for the package has been changed from
GPL-3toMIT. -
ggdotplotstats()displays uncertainty (confidence intervals) for the
centrality measure estimates in the plot. This is controlled by theconf.int
argument. The default isTRUE, which means that the confidence intervals are
displayed. If you do not want to display them, setconf.int = FALSE.
ggstatsplot 0.13.0
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
MAJOR CHANGES
-
extract_stats()returns a list of classggstatsplot_statswhich
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()andggbarstats()now respectratio()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
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()andggbarstats()(#935).
ggstatsplot 0.12.3
MAJOR CHANGES
-
The cryptic but very useful parameter
khas been renamed todigitsto
improve its discoverability. -
To be consistent with other functions,
ggpiestats()andggbarstats()now
default to two-sided alternative hypothesis.
ggstatsplot 0.12.0
BREAKING CHANGES
-
To be internally consistent, the
plot.typeargument has been removed from
ggbetweenstats(), since no such argument exists forggwithinstats(). This
argument was also redundant. Since removing a specific geom is straightforward
using*.argsarguments. Examples for these two functions illustrate how. -
ggbetweenstats()andggwithinstats()retirepairwise.comparisons
argument since it was redundant. In order to turn off showing pairwise
comparisons, you can now usepairwise.display = "none".
NEW FEATURES
ggbetweenstats()getsboxplot.argsargument to pass additional arguments
to the underlying geom function. This also fixes regression introduced in
0.11.1release where outlier points were displayed along with box plot.