I have a problem, I have created something, SD+something, and something-SD, I want connect these points in vertical lines at each point any ideas?
#example code:
 hourvec;
 for (i in 1:length(hourvec)){plotUpper<- sd(hourvec) + hourvec}
 plotUpper;
 for (i in 1:length(hourvec)){plotLower<- hourvec - sd(hourvec)}
 plotLower;
 plot(RIL_table, type= "p", main="Variation in Longevity in DSPR RILs");
 points(plotUpper);
 points(plotLower);
 
     
    