<div dir="ltr">Hi,<br><div>I have created an array for time series data for 7 ensemble members. I would like to draw the lines for ensemble mean, minimum and maximum values.</div><div>I can plot the individual ensemble members but not the mean, minimum and maximum values.</div><div>Could you suggest how can I do this. The array I am creating is given below.</div><div><br></div><div>data Â  Â  Â  Â  Â  Â = new((/7,1156/),float)<br>  data(0,0:1155) Â = temp1<br>  data(1,0:1155) Â = temp2<br>  data(2,0:1155) Â = temp3<br>  data(3,0:1155) Â = temp4<br>  data(4,0:1155) Â = temp5<br>  data(5,0:1155) Â = temp6<br>  data(6,0:1155) Â = temp7<br></div><div><br></div><div>  time = ispan(850,2005,1)<br>  time@long_name = "Time"<br></div><div><br></div><div> wks = Â gsn_open_wks("X11", "Ensemble_Mean_timeseries")<br></div><div>  res = True<br>  res@xyXStyle Â  Â  Â  Â  Â  Â  Â  = "Time"<br>  res@xyLineColors Â  Â  Â  Â  Â  = Â (/ "green4", "red", "blue", "orange", \<br>  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â  Â "cyan2", "darkorchid2", "brown"/)<br></div><div><br></div><div>;-- create plot<br>  plot = gsn_csm_xy(wks,time,data,res)<br></div></div>