我遇到了这两个要求的问题:
- y 轴必须从 3 开始
- 有些
geom_text
会超出右侧的图表范围
到目前为止我的想法及其缺陷:
- 从所有数据集和假 y 轴标签中减去 -3(不希望这样做)
- 建立一个
geom_bar
高度为 3 的假人(如何让它远离传说?)
任何想法,将不胜感激!
library(grid)
library(ggplot2)
df=data.frame(
Date=c("2012-11-30", "2012-12-03", "2012-12-04"),
d1=c(12, 8, 13),
d2=c(13, 7, 12),
e1=c(7, 9, 8)
)
frame()
p=ggplot(df, aes(Date)) +
geom_bar(aes(y=e1, fill="e1"), stat="identity", color="red") +
geom_line(aes(y=d1, group=1, color="d1")) +
geom_line(aes(y=d2, group=1, color="d2")) +
geom_text(aes(x =3.5, y=c(14,13,12), label=c("Text1","Text2","Text3"))) +
scale_colour_manual(" ", values=c("e1"="red", "d1"="blue", "d2"="black"))+
scale_fill_manual("", values="red") +
coord_cartesian(ylim=c(3,15), xlim=c(0.5,3.5)) +
theme(legend.key=element_blank(),legend.title=element_blank(),
legend.position="top", legend.box="horizontal",
plot.margin=unit(c(1, 2, 1, 1), "cm"))
p1 <- ggplot_gtable(ggplot_build(p))
p1$layout$clip[p1$layout$name=="panel"] <- "off"
grid.draw(p1)