Recent Releases of Visualizations with statistical details
Visualizations with statistical details - 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.intargument. The default isTRUE, which means that the confidence intervals are displayed. If you do not want to display them, setconf.int = FALSE.
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil about 1 year ago
Visualizations with statistical details - 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.
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 1 year ago
Visualizations with statistical details - 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.
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 1 year ago
Visualizations with statistical details - 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).
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil almost 2 years ago
Visualizations with statistical details - 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.
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil about 2 years ago
Visualizations with statistical details - ggstatsplot 0.12.0
BREAKING CHANGES
To be internally consistent, the
plot.typeargument has been removed fromggbetweenstats(), 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.comparisonsargument 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 in0.11.1release where outlier points were displayed along with box plot.
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil almost 3 years ago
Visualizations with statistical details - ggstatsplot 0.11.1
BREAKING CHANGES
- The outlier tagging functionality in
ggbetweenstats()andggwithinstats()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}.
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil about 3 years ago
Visualizations with statistical details - ggstatsplot 0.11.0
BREAKING CHANGES
- The minimum needed R version is now bumped to
R 4.1because a crucial dependency ({pbkrtest}) requires this R version.
MINOR CHANGES
- Maintenance release to catch up with
{ggplot2}and{easystats}updates.
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 3 years ago
Visualizations with statistical details - ggstatsplot 0.10.0
BREAKING CHANGES
- The
outputparameter for all functions has been removed. All functions now return only the plot, which itself contains all necessary details that were previously extracted using theoutputargument. You can extract all the necessary details (including expressions containing statistical details) from a plot usingextract_stats()function. There are two additional helpers to get expressions:extract_subtitle()andextract_caption().
MAJOR CHANGES
xfillandyfillarguments forggscatterstats()have been removed. You can specify all aesthetic modifications for side histograms in scatter plot usingxsidehistogram.argsandysidehistogram.argsarguments.Updates to changes made in the latest
{ggplot2}release (3.4.0).
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 3 years ago
Visualizations with statistical details - ggstatsplot 0.9.5
MAJOR CHANGES
Due to changes to the underlying API of
{parameters}, theeffsizeargument has been renamed toeffectsize.type.Removes unnecessary re-exports of
{tidyverse}operators.
MINOR CHANGES
- Fixes tests for changes in dependencies.
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 3 years ago
Visualizations with statistical details - ggstatsplot 0.9.4
MINOR CHANGES
- Internal housekeeping to adjust to changes in upstream dependencies.
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil almost 4 years ago
Visualizations with statistical details - ggstatsplot 0.9.3
MINOR CHANGES
- Hot fix release to correct a failing example in CRAN daily checks.
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil about 4 years ago
Visualizations with statistical details - ggstatsplot 0.9.2
MAJOR CHANGES
The
pairwise_comparions()function implementation now lives in{statsExpressions}package, although it will continue to be exported from{ggstatsplot}package.The details about pairwise test for
ggbetweenstats()andggwithinstats()functions are now displayed as a label for the secondary axis. Previously, this information was displayed in the caption. Given that caption already contained Bayesian test details, it was becoming difficult to stack different expressions on top of each other. To avoid unnecessary code complexity and also to avoid crowded caption, this decision was made. Additionally, the pairwise test label has been slightly abbreviated, and so is the label for significance bars. This is done to not let the text overwhelm the numeric values, the latter being more important.
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil about 4 years ago
Visualizations with statistical details - ggstatsplot 0.9.1
MAJOR CHANGES
- Moves
{PMCMRplus}package from Imports to Suggests. So, if, as a user, you wish to use pairwise comparisons inggbetweenstats()andggwithinstats(), you will need to download this package.
MINOR CHANGES
- To keep the documentation maintainable, a number of vignettes have either been removed or they are no longer evaluated and only code is reported.
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 4 years ago
Visualizations with statistical details - ggstatsplot 0.9.0
NEW FEATURES
- The
pairwise_comparisons()function for carrying out one-way pairwise comparisons has now moved in{ggstatsplot}from{pairwiseComparisons}package.
BREAKING CHANGES
A number of effect size estimates and their confidence intervals have changed due to respective changes made in
{effectsize}package version0.5release. For full details of these changes, see: https://easystats.github.io/effectsize/news/index.htmlFor the same reason, the effect size for one-way contingency table has changed from Cramer's V to Pearson's C.
MAJOR CHANGES
For plotting marginal distributions in
ggscatterstats,{ggstatsplot}now relies onggsidepackage instead ofggExtra. This was done to remove a glaring inconsistency in the API. All functions in{ggstatsplot}producedggplotobjects and could be further modified withggplot2functions, exceptggscatterstats, which led to a lot of confusion among users (e.g.28). This change gets rid of this inconsistency. But it comes at a cost:
there is no more
marginal.typeargument that lets you change the type of marginal distribution graphic and histogram is the only possible option. Note that this is not a breaking change. Your past code will continue to work but it will now always produce a histogram instead of other marginal graphic you might have chosen.Minimum needed R version is now
4.0.
MINOR CHANGES
Online vignette about
combine_plotshas been removed. In case you want to create a grid of plots, it is highly recommended that you usepatchworkpackage directly and not this wrapper around it which is mostly useful with{ggstatsplot}plots.ggscatterstatslabeling arguments accept only unquoted inputs now, and not quoted or string inputs. Allowing this was a bad design choice in the past since most functions in{ggstatsplot}, inspired bytidyverse, expect unquoted (x) - and not quoted ("x") - arguments. So this function was the odd one out.Gets rid of
ipmiscdependency.Removes
movies_widedataset, which was virtually identical tomovies_longdataset and was not used anywhere in the package. Also removes the unusedVR_dilemmadataset.
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 4 years ago
Visualizations with statistical details - ggstatsplot 0.8.0
NEW FEATURES
- Adds
extract_statsfunction to extract dataframes containing statistical details.
MAJOR CHANGES
There is finally a publication for
{ggstatsplot}package! https://joss.theoj.org/papers/10.21105/joss.03167The
ggcoefstatsfunction defaults toNULLforxlabandylabarguments, which lets users change these labels if they wish to do so. Additionally, the x-axis label, if not specified, now defaults to"estimate". Whether this estimate corresponds to regression coefficient or effect size like partial eta-squared should be clear from the label itself.To reduce the dependency load,
ggcorrplotmoves fromImportstoSuggests.The
bar.fillargument ingghistostatsis retired in favor of the newbin.argsargument that can be used to pass aesthetic arguments toggplot2::stat_bin.ggstatsplot.layerargument has been retired. If the user chooses a certainggplot2theme, it means they want that theme, and not{ggstatsplot}'s varnish on it. So the previous behavior was undesirable. This is a backward compatible change, so the plots should not look different.
MINOR CHANGES
The
pchsize forggcorrmathas been increased to 14 (#579) to increase its visibility compared to the correlation value text.ggwithinstatsgainspoint.argsto changegeom_point.Minor change to
ggcorrmatlegend title - content in parentheses is now shown outside of it.
BUG FIXES
ggcoefstatsdidn't work when statistic for the given model was chi-squared. This has been fixed.
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil almost 5 years ago
Visualizations with statistical details - ggstatsplot 0.7.2
MAJOR CHANGES
To reduce the dependency load,
ggExtramoves fromImportstoSuggests.All functions are more robust in the sense that when statistical analysis fails, they will return only the plots with no subtitles/captions. This helps avoid difficult-to-diagnose edge case failures when the primary functions are used in
grouped_functions (e.g., #559). Theggpiestatsandggbarstatsfunctions always behaved this way, but the rest of the functions now also mimic this behavior.
MINOR CHANGES
- The
ggcoefstatslabels do not contain degrees of freedom when they are not available instead of displayingInf.
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil about 5 years ago
Visualizations with statistical details - Adapts to statsExpressions 1.0.0
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil about 5 years ago
Visualizations with statistical details - use patchwork instead of cowplot
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 5 years ago
Visualizations with statistical details - Compatibility with `statsExpressions` 0.7.0
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 5 years ago
Visualizations with statistical details - bug fixes and maintenance
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 5 years ago
Visualizations with statistical details - Compatibility with tidyBF 0.4.0 and statsExpressions 0.6.0
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 5 years ago
Visualizations with statistical details - Adapt tests to ipmisc 4.0.0 and pairwiseComparisons 3.0.0
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 5 years ago
Visualizations with statistical details - Adapt to tidyBF 0.3.0
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 5 years ago
Visualizations with statistical details - Maintenance release and adjusting for pairwiseComparisons changes
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil almost 6 years ago
Visualizations with statistical details - more detailed subtitles; rely on correlation; theme changes
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil about 6 years ago
Visualizations with statistical details - Compatibility with `ggplot2 3.3.0`
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil about 6 years ago
Visualizations with statistical details - arguments cleanup
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil about 6 years ago
Visualizations with statistical details - Compatibility with pairwiseComparisons package
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 6 years ago
Visualizations with statistical details - Compatibility with paletteer 1.0.0
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 6 years ago
Visualizations with statistical details - Compatibility with skimr 2.0
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 6 years ago
Visualizations with statistical details - Compatibility with pairwiseComparisons package
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 6 years ago
Visualizations with statistical details - major restructuring of the entire package
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 6 years ago
Visualizations with statistical details - bug fixes; maintenance; catching up with metaBMA
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil almost 7 years ago
Visualizations with statistical details - bayes factor refactoring; return argument
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil almost 7 years ago
Visualizations with statistical details - Maintenance release and fixing tests for R 3.6
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil about 7 years ago
Visualizations with statistical details - refactoring, maintenance, and ggbarstats added
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 7 years ago
Visualizations with statistical details - refactoring and ggcoefstats polished
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 7 years ago
Visualizations with statistical details - ggdotplotstats and tests added
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 7 years ago
Visualizations with statistical details - Bug fixes and maintenance release
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil over 7 years ago
Visualizations with statistical details - Bug fixes and maintenance release
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil almost 8 years ago
Visualizations with statistical details - ggcoefstats function added
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil almost 8 years ago
Visualizations with statistical details - ggstatsplot 0.0.3
Grouped_ variants and vignettes added for all functions
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil about 8 years ago
Visualizations with statistical details - ggstatsplot 0.0.2
NEW FEATURES
- Bayesian test added to
gghistostatsand two new arguments to also display a vertical line fortest.valueargument. - Vignette added for
gghistostats. - Added new function
grouped_gghistostatsto facilitate applyinggghistostatsfor multiple levels of a grouping factor.ggbetweenstatshas a new argumentoutlier.coefto adjust threshold used to detect outliers. Removed bug from the same function whenoutlier.labelargument is of factor/character type.
MAJOR CHANGES
- Functions
signif_columnandgrouped_proptestare now deprecated. They were exported in the first release by mistake. - Function
gghistostatsno longer displays both density and count since the density information was redundant. Thedensity.plotargument has also been deprecated. ggscatterstatsargumentintercepthas now been changed tocentrality.para. This was due to possible confusion about interpreation of these lines; they show central tendency measures and not intercept for the linear model. Thus the change.- The default for
effsize.type = "biased"effect size forggbetweenstatsin case of ANOVA is partial omega-squared, and not omega-squared. Additionally, both partial eta- and omega-squared are not computed using bootstrapping with (default) 100 bootstrap samples.
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil about 8 years ago
Visualizations with statistical details - ggstatsplot 0.0.1
First release of ggstatsplot
Scientific Software - Peer-reviewed
- R
Published by IndrajeetPatil about 8 years ago