0
我想爲線性模型顯示95%和68%的陰影置信區間。另外,我想展示x1,95%CI和68%CI的相關傳說。但是,我得到了一系列的時間間隔。ggplot geosmooth傳說R
這裏是我的數據
YEAR 2004 2005 2006 2007 2008
x1 -0.1 -1.8 -1.3 -1 -1.3
到目前爲止的代碼:
library(ggplot2)
data=read.csv(file.choose())
s1=ggplot(data,aes (x = YEAR, y = x1))
p <-
s1+
geom_smooth(method="lm",color="black",aes(alpha=0.05),show.legend=TRUE)+
geom_smooth(method="lm",color="black",aes(alpha=0.32),show.legend=TRUE)+
scale_color_discrete(name='')+
geom_point(size=5.5)+
geom_line(linetype="dotted",size=2)+
xlab("Year")+
ylab("x1")+
guides(alpha = guide_legend(nrow = 16))+
annotate("text", x = 2007.4, y = 2, label = "Test",face="bold",size=16)+
geom_hline(linetype="dashed",aes(yintercept=0))
p
而我所得到的是這樣的:
請,請仔細閱讀說明文字:「**'level' **:置信區間的級別使用(0.95默認)。」 – Henrik