很难将错误栏修复到我的观点
library(ggplot2)
limits <- aes(ymax = newtable$MN + newtable$SE,ymin = newtable$MN - newtable$SE)
p = ggplot(newtable,aes(Year,MN,group=variable,colour=variable))
p1 = p + geom_point(data=newtable,aes(colour=variable)) +
geom_errorbar(data=newtable,limits) + facet_wrap(~Region,scales = "free_y")