Displaying differences for changeset
 
display as  

src/java/m/cfa/timeseries/guiTimeseries_Model.java

@@ -1302,7 +1302,7 @@
         ArrayList<Double> tempData_value = new ArrayList<Double>();
         ArrayList<Double> tempData_noZeros = new ArrayList<Double>();
         double currentYear = Double.parseDouble(end.substring(0,4));
-        for(int j=3; j< envelopePlotData[0].length; j=j+2){//skip the first 'average' data
+        for(int j=6; j< envelopePlotData[0].length; j++){//skip data columns 0=date, 1=median, 2=average, 3=period1, 4=period2, 5=period3 to get to the individual year(s) data
             for(int i=0; i<366; i++){//day loop
                 double value = Double.parseDouble(envelopePlotData[i][j]);
                 if(value > -1){