I have this data set (it's an example). With my real data set, I have 100 categorical variables:
library(DataExplorer)
df <- data.frame(Sex = c("Male","Female","Male","Female","Male"))
create_report(df)
And I am making a report through DataExport, but it generates a bar plot in this way:
But my desired plot is:
How could I customize this plot?