0

我想使用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")

我想获得这样的绿丝带:

在此处输入图像描述

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

4

0 回答 0