R ggplot2:用连续的y值绘制x范围

时间:2013-07-10 14:42:21

标签: r ggplot2

我想使用geom_ribbon函数(或类似的东西)来绘制具有连续y值的x范围。

geom_ribbon做了不同的事情:y范围连续x值。

我使用此命令生成剧情:

ggplot(data1, aes(x=angle)) + 
    geom_histogram(binwidth=2,aes(y =..density..)) + 
    xlim(60,180) + 
    geom_density(colour="red") + 
    scale_y_continuous(limits = c(0,0.09)) + 
    labs(title = "I-II helix")

我想获得这样的绿带:

enter image description here

1http://img577.imageshack.us/img577/9961/a798.png"

0 个答案:

没有答案