This is my code:
daten_short<-structure(list(Asthma = c(0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0,
0, 0, 0, 1, 0, 0, 1, 1), Genetische_PräAs = c("Nein", "Nein",
"Nein", "Nein", "Ja", "Nein", "Ja", "Nein", "Ja", "Nein", "Nein",
"Nein", "Nein", "Nein", "Nein", "Nein", "Ja", "Nein", "Nein",
"Ja")), row.names = c(NA, -20L), class = c("tbl_df", "tbl", "data.frame"
))
library(ggstatsplot)
ggbarstats(
data=daten_short,
x= Asthma,
y= Genetische_PräAs,
label="both",
digits=3)
This is the output of the code:

I only want to see the p-value and the number of observed values. I want to erase the rest(x^2 Person, Cramers V, 95%CI).
How do I do it?



help(ggstatsplot::ggbarstats))?