在Graphpad Prism中,很容易创建一个轴偏移,例如:
有些骇人听闻的方法:
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))
但这对我来说似乎太不灵活了。我很惊讶地发现没有很多东西,如果有什么关于这的。 Google相当节俭-我认为我可能没有完全使用正确的搜索词。
是否有一种(实现的)ggplot
方法可以重现此外观?