Hi everyone,
I have the following code
ggplot(drop_na(penguins)) +
geom_violin(
mapping =
aes(species, body_mass_g, fill = species),
outlier.shape = 21, # A number 0:25 , NA will hide the outliers
outlier.size = 3,
outlier.fill = 'red'
) +
facet_wrap(sex ~ ., scales = 'free_x', ncol = 1)
which shows the following plot
As you can see, the plot is quite compressed. so how could I customize the height, width and the increments on the Y-axis .
Thanks