ggplot2等高线图中的自定义级别?

时间:2013-10-29 12:21:50

标签: r ggplot2

以下是docs网站的代码段:

# Generate data
library(reshape2) # for melt
volcano3d <- melt(volcano)
names(volcano3d) <- c("x", "y", "z")

# Basic plot
v <- ggplot(volcano3d, aes(x, y, z = z))
v + stat_contour(binwidth = 10)

输出:

enter image description here

如果我想在自定义级别绘制轮廓线怎么办?例如,在volcano3d数据集中,我希望指出这些级别:z == 120,140,​​160。

1 个答案:

答案 0 :(得分:22)

binwidth=替换为参数breaks=,并提供所需的断点。

ggplot(volcano3d, aes(x, y, z = z)) + 
  stat_contour(breaks=c(120,140,160))

enter image description here