Displaying 1 result from an estimated 1 matches for "nervesurv".
2011 Sep 07
2
ggplot2-Issue placing error bars behind data points
...977000 15 0.004860
1.50 0.959000 15 0.015500
0.00 1.000000 8 0.000000
0.25 1.010000 8 0.004620
0.50 1.060000 8 0.049100
0.75 0.921000 8 0.032900
1.00 0.951000 8 0.030400
1.25 0.904000 8 0.047100
1.50 0.911000 8 0.072200
limits<-aes(ymax=NerveSurv$SAP+NerveSurv$SAPSE,ymin=NerveSurv$SAP-NerveSurv$SAPSE)
p<-ggplot(data=NerveSurv,aes(x=Time,y=SAP))
p+geom_point(aes(colour=factor(Temp), shape=factor(Temp),
fill=factor(Temp)), size=4)
+geom_errorbar(limits,width=0.2)
+xlab("Time (min)")
+xlim(c(0,50))
+ylab("Normalized Spontan...