假设我有一个具有多个图例的ggplot。
mov <- subset(movies, length != "")
(p0 <- ggplot(mov, aes(year, rating, colour = length, shape = mpaa)) +
geom_point()
)
我可以像这样关闭所有图例的显示:
(p1 <- p0 + theme(legend.position = "none"))
将show_guide = FALSE传递给geom_point(根据这个问题)将关闭形状图例。
(p2 <- ggplot(mov, aes(year, rating, colour = length, shape = mpaa)) +
geom_point(show_guide = FALSE)
)
但是如果我想关闭颜色传说呢?似乎没有办法告诉show_guide将其行为应用到哪个图例。并且没有用于缩放或美学的show_guide参数。
(p3 <- ggplot(mov, aes(year, rating, colour = length, shape = mpaa)) +
scale_colour_discrete(show_guide = FALSE) +
geom_point()
)
# Error in discrete_scale
(p4 <- ggplot(mov, aes(year, rating, shape = mpaa)) +
aes(colour = length, show_guide = FALSE) +
geom_point()
)
#draws both legends
这个问题表明,现代的控制图例的方法(从ggplot2 v0.9.2开始)是使用guides函数。
我希望能够做一些
p0 + guides(
colour = guide_legend(show = FALSE)
)
但是guide_legend没有show参数。
如何指定显示哪些图例?