如何在R中的“ stat_contour”图中手动设置图例间隔?

时间:2018-07-25 23:29:17

标签: r ggplot2 contour

我想在“ stat_contour”图中手动设置图例间隔,并且尝试了以下代码:

library(ggplot2)
library(reshape2)
volcano3d <- melt(volcano)
names(volcano3d) <- c("x", "y", "z")

v <- ggplot(volcano3d, aes(x, y, z = z)) + stat_contour(geom="polygon", aes(fill=..level..), bins=10) + scale_fill_gradientn(name="value", colors=c("green", "blue", "yellow"),breaks=c(100,150,200))

enter image description here

如图所示,图例仅包含150,但我想在图例中显示数字100、150、200。我不知道该怎么做?感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

只需向limits添加一个scale_fill_gradientn参数

ggplot(volcano3d, aes(x, y, z = z)) +
    stat_contour(geom="polygon", aes(fill=..level..), bins=10) +
    scale_fill_gradientn(
        name="value",
        colors=c("green", "blue", "yellow"),
        breaks=c(100,150,200),
        limits = c(100, 200))

enter image description here