Here are some of the common questions that have been asked in GitHub issues and on social media platforms.
All functions in ggstatsplot that display results from statistical analysis in a subtitle have argument results.subtitle. Setting it to FALSE will return only the plot.
Sometimes you may not wish include so many details in the subtitle. In that case, you can extract the expression and copy-paste only the part you wish to include. For example, here only statistic and p-values are included:
# setup set.seed(123) library(ggplot2) library(statsExpressions) # extracting detailed expression (res_expr <- expr_anova_parametric(iris, Species, Sepal.Length, var.equal = TRUE)) #> paste(italic("F")["Fisher"], "(", "2", ",", "147", ") = ", "119.26", #> ", ", italic("p"), " = ", "1.67e-31", ", ", widehat(omega["p"]^2), #> " = ", "0.61", ", CI"["95%"], " [", "0.52", ", ", "0.68", #> "]", ", ", italic("n")["obs"], " = ", 150L) # adapting the details to your liking ggplot(iris, aes(x = Species, y = Sepal.Length)) + geom_boxplot() + labs(subtitle = ggplot2::expr(paste( NULL, italic("F"), "(", "2", ",", "147", ") = ", "119.26", ", ", italic("p"), " = ", "1.67e-31" )))

In case you are not sure what was the statistical test that produced the results shown in the subtitle of the plot, the best way to get that information is to either look at the documentation for the function used or check out the associated vignette.
Summary table: https://indrajeetpatil.github.io/statsExpressions/articles/stats_details.html
ggstatsplot work with plotly?The plotly R graphing library makes it easy to produce interactive web graphics via plotly.js.
The ggstatsplot functions are compatible with plotly.
# for reproducibility set.seed(123) library(ggstatsplot) library(plotly) # creating ggplot object with `ggstatsplot` p <- ggstatsplot::ggbetweenstats( data = mtcars, x = cyl, y = mpg ) # converting to plotly object plotly::ggplotly(p, width = 480, height = 480)
grouped_ functions with more than one group?Currently, the grouped_ variants of functions only support repeating the analysis across a single grouping variable. Often, you have to run the same analysis across a combination of more than two grouping variables. This can be easily achieved using purrr package.
Here is an example-
# setup set.seed(123) library(tidyverse, warn.conflicts = FALSE) library(ggstatsplot) # creating a list by splitting dataframe by combination of two different # grouping variables df_list <- mpg %>% dplyr::filter(drv %in% c("4", "f"), fl %in% c("p", "r")) %>% split(x = ., f = list(.$drv, .$fl), drop = TRUE) # checking if the length of the list is 4 length(df_list) #> [1] 4 # running correlation analyses between # this will return a *list* of plots plot_list <- purrr::pmap( .l = list( data = df_list, x = "displ", y = "hwy", results.subtitle = FALSE, marginal.type = "densigram" ), .f = ggstatsplot::ggscatterstats ) # arragen the list in a single plot ggstatsplot::combine_plots( plotlist = plot_list, nrow = 2, labels = c("(i)", "(ii)", "(iii)", "(iv)") )

set.seed(123) library(ggplot2) library(ggstatsplot) # data mtcars1 <- mtcars statistics <- grouped_ggbetweenstats( data = mtcars1, x = cyl, y = mpg, grouping.var = am, output = "subtitle" ) mtcars1$am <- factor(mtcars1$am, levels = c(0, 1), labels = statistics) # plot mtcars1 %>% ggplot(aes(x = cyl, y = mpg)) + geom_jitter() + facet_wrap( vars(am), ncol = 1, strip.position = "top", labeller = ggplot2::label_parsed )

Currently, for ggbetweenstats and ggwithinstats, you can either display all significant comparisons, all non-significant comparisons, or all comparisons. But what if I am only interested in just one particular comparison?
Here is a workaround using ggsignif:
set.seed(123) library(ggstatsplot) library(ggsignif) # displaying only one comparison ggbetweenstats(mtcars, cyl, wt, pairwise.comparisons = FALSE) + geom_signif(comparisons = list(c("4", "6")))

library(ggstatsplot) library(ggplot2) # way-1 p <- ggbetweenstats(mtcars, cyl, wt) pb <- ggplot_build(p) pb$plot$plot_env$df_pairwise #> # A tibble: 3 x 8 #> group1 group2 statistic p.value significance test.details p.value.adjustm~ #> <chr> <chr> <dbl> <dbl> <chr> <chr> <chr> #> 1 4 6 5.39 8.31e-3 ** Games-Howel~ Holm #> 2 4 8 9.11 1.24e-5 *** Games-Howel~ Holm #> 3 6 8 5.12 8.31e-3 ** Games-Howel~ Holm #> # ... with 1 more variable: label <chr> # way-2 library(pairwiseComparisons) pairwise_comparisons(mtcars, cyl, wt) #> # A tibble: 3 x 8 #> group1 group2 statistic p.value significance test.details p.value.adjustm~ #> <chr> <chr> <dbl> <dbl> <chr> <chr> <chr> #> 1 4 6 5.39 8.31e-3 ** Games-Howel~ Holm #> 2 4 8 9.11 1.24e-5 *** Games-Howel~ Holm #> 3 6 8 5.12 8.31e-3 ** Games-Howel~ Holm #> # ... with 1 more variable: label <chr>
geom layer from the plot?Sometimes you may not want a particular geom layer to be displayed. You can remove them using gginnards.
For example, let’s say we want to remove the geom_point() from ggbetweenstats default plot.
# needed libraries library(ggstatsplot) library(gginnards) # plot with all geoms p <- ggbetweenstats( data = iris, x = Species, y = Sepal.Length, mean.plotting = FALSE ) # delete geom corresponding to points gginnards::delete_layers(x = p, match_type = "GeomPoint")

This can be helpful to add a new layer with aesthetic specifications of your liking.
# needed libraries set.seed(123) library(ggstatsplot) library(gginnards) library(ggplot2) # basic plot without mean tagging p <- ggwithinstats( data = bugs_long, x = condition, y = desire, mean.plotting = FALSE ) # delete the geom_point layer p <- gginnards::delete_layers(x = p, match_type = "GeomPoint") # add a new layers for points with a different shape p + geom_point(shape = 23, aes(color = condition))

Sometimes you may not be satisfied with the available color palette values. In this case, you can also change the colors by manually specifying these values.
# needed libraries set.seed(123) library(ggstatsplot) library(ggplot2) ggbarstats(mtcars, am, cyl, results.subtitle = FALSE) + scale_fill_manual(values = c("#E7298A", "#66A61E"))

grouped_ outputs using ggplot2 functions?All ggstatsplot are ggplot objects, which can be further modified, just like any other ggplot object. But exception to these are all plots returned by grouped_ functions, but there is a way to tackle this.
# needed libraries set.seed(123) library(ggstatsplot) library(paletteer) library(ggplot2) library(palmerpenguins) # plot grouped_ggbetweenstats( penguins, species, body_mass_g, grouping.var = sex, type = "np", ggplot.component = # modify further with `ggplot2` functions list( scale_color_manual(values = paletteer::paletteer_c("viridis::viridis", 3)), theme(axis.text.x = element_text(angle = 90)) ) )

If you find any bugs or have any suggestions/remarks, please file an issue on GitHub: https://github.com/IndrajeetPatil/ggstatsplot/issues
For details, see- https://indrajeetpatil.github.io/ggstatsplot/articles/web_only/session_info.html