ggplot2中的轴偏移

时间:2018-08-30 21:02:17

标签: r ggplot2

在Graphpad Prism中,很容易创建一个轴偏移,例如: https://www.graphpad.com/guides/prism/7/statistics/index.htm?what_is_a_frequency_distribution.htm

有些骇人听闻的方法:

library(ggplot2)
ggplot(iris, aes(x = Species, y = Sepal.Length)) + geom_boxplot() +
  theme_classic() +
  theme(axis.line = element_blank()) +
  geom_segment(aes(x = 0.2, xend = 4, y = -0.5, yend = -0.5 )) +
  geom_segment(aes(y = 0, yend = 8, x = 0, xend = 0 )) +
  scale_y_continuous(expand = c(0,0))

enter image description here

但这对我来说似乎太不灵活了。我很惊讶地发现没有很多东西,如果有什么关于这的。 Google相当节俭-我认为我可能没有完全使用正确的搜索词。

是否有一种(实现的)ggplot方法可以重现此外观?

0 个答案:

没有答案