Hi everyone,
When I run the following code
library(palmerpenguins)
data('penguins')
ggplot(drop_na(penguins),aes(species, body_mass_g, fill = species)) +
geom_violin(
show.legend = FALSE,
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) +
scale_y_continuous(limits = c(2000,7000), n.breaks = 10) +
theme(
axis.text.x = element_text(angle = 45, size = 20, vjust = 0.65),
axis.text.y = element_text(angle = 45, size = 15),
axis.title = element_text(size = 25, color = 'steelblue')
) +
coord_cartesian(ylim = c(2500, 6500))
Notice how the 'male' & 'female' appear too small my question is how can I increase their size and color.
Thanks 