Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.1k views
in Technique[技术] by (71.8m points)

r - How do I get rid of the empty space in my ggplot2 bloxplot?

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?

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...