First of all, I apologize for my poor English.
I am using ggstatsplot::ggbetweenstats to compare my groups. However, I noticed that font size in p-values from these comparisons is small. Thus, I would like to ask some help to increase font size in these p-values. I will post my script using data from "Edgar Anderson's Iris Data" as example.
library(ggplot2)
library(RVAideMemoire)
library(ggpubr)
library(ggstatsplot)
iris.table <- iris
ggstatsplot::ggbetweenstats(data = iris.table, x = class, y = sepal_l, plot.type = "box", type = "parametric", k = 3, outlier.tagging = FALSE, mean.plotting = FALSE, xlab = "Species", ylab = "Sepal Length", ggstatsplot.layer = FALSE, pairwise.comparisons = TRUE, pairwise.display = "significant", p.adjust.method = "BH", point.args = list(position = ggplot2::position_jitterdodge(dodge.width = 0.15), size = 1.5, stroke = 0))+
ggplot2::scale_color_manual(values = c("black", "black", "black"))+
scale_x_discrete(labels = c("Iris setosa", "Iris versicolor", "Iris virginica"))+
theme(text = element_text(size=13), axis.text.x = element_text(size = 12), axis.text = element_text(size = 13), axis.text.y = element_text(size = 12), plot.caption = element_text(size = 13), plot.subtitle = element_text(size = 13))

