最佳答案
假设我有一个具有多个图例的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参数。
如何指定显示哪些图例?