I am using this code in RStudio to make a boxplot, but I am left with a large blank area to the right of my data. Any idea how to get rid of it? Otherwise it looks how I want it to.
bvt <- Awake_Protists_Combined_Results %>%
ggplot(aes(Treatment, `log cfu/Root Fraction`)) +
geom_boxplot() +
scale_x_discrete(limits= Awake_Protists_Combined_Results$Treatment) +
geom_jitter(height = 0, width = 0.5, alpha = 0.2) +
ylim(0,10) +
theme(axis.text.x=element_text(angle = 65, hjust = 1))
Large blank area to the right of my data. how do I get rid of it?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…