当有多个时,删除ggplot2中的额外图例

时间:2013-10-30 16:44:18

标签: r graphics ggplot2

例如:

require(ggplot2)
require(reshape2)
volcano3d <- melt(volcano) 
names(volcano3d) <- c("x", "y", "z") 
v <- ggplot(volcano3d, aes(x, y, z = z)) 
v1 = v +  stat_contour(aes(colour=..level..,size=..level..)) 

enter image description here

旁边有两个传说,我可以删除其中一个吗?

1 个答案:

答案 0 :(得分:5)

见这里: http://www.cookbook-r.com/Graphs/Legends_(ggplot2)/

您需要的行是

v1 = v +  stat_contour(aes(colour=..level..,size=..level..)) + 
scale_colour_continuous(guide=FALSE)

使用scale_size_continuous关闭尺寸图例。