我正在繪製一組帶有陰影的數據,以遵循下限和上限值。我使用stat_smooth
對Est
值應用平滑,但我無法獲得由UB和LB值指定的陰影區域以跟隨平滑線。這裏的數據:在ggplot2下手動着色平滑線
Quantiles Est LB UB
0.10 -4.39 -4.80 -4.00
0.25 -3.46 -3.72 -3.22
0.50 -3.11 -3.29 -2.91
0.75 -2.89 -3.15 -2.60
0.90 -1.69 -2.21 -1.09
這是我的ggplot代碼:
ggplot(data,aes(y=Est,x=Quantiles)) + stat_smooth() +
geom_ribbon(aes(ymin=LB,ymax=UB),alpha=0.2)
在此先感謝您的幫助!
任何機會,你可以把問題一點點更多[重複性( http://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example)通過提供一些數據來處理? – shekeine 2014-11-05 13:37:46