我想使用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")
我想获得这样的绿丝带: