<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;font-family:Calibri,Helvetica,sans-serif;" dir="ltr">
<p>Hi,</p>
<p><br>
</p>
<p>I have monthly averages of ozone data and am trying to figure out how to plot them with different colors given a certain range.  The only examples I can find are using dummy data, and I'm having trouble figuring out how to apply this to actual data.  </p>
<p><br>
</p>
<p>My averages are:</p>
<p>average1 = 37.62</p>
<p>average2 = 39.49 </p>
<p><span style="font-family: Calibri, Helvetica, sans-serif, Helvetica, EmojiFont, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Segoe UI Symbol", "Android Emoji", EmojiSymbols; font-size: 16px;">average3 = </span><span style="font-family: Calibri, Helvetica, sans-serif, Helvetica, EmojiFont, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Segoe UI Symbol", "Android Emoji", EmojiSymbols; font-size: 16px;">36.36 </span><br>
</p>
<p>I want to display these values as different colors.  For example, I want one color for values less than 37, one between 37 and 39, and one greater than 39.  Here is what I've tried:</p>
<p><br>
</p>
<p><br>
</p>
<p></p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;">arr = (/0.,37.,39./)</span></p>
<p></p>
<p></p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;">do i = 0, num_distinct_markers-1</span><br>
</p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;"><br>
</span></p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;">if (i.eq.0) then</span></p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;">indexes = ind(average3.lt.arr(37))</span></p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;">labels(i) = "x < " + arr(37)</span></p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;">end if</span></p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;"><br>
</span></p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;">if (i.eq.num_distinct_markers-1) then</span></p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;">indexes = ind(average2.gt.arr(39))</span></p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;">labels(i) = "x > " + arr(39</span><span style="font-variant-ligatures: no-common-ligatures;">)</span></p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;">end if</span></p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;"><br>
</span></p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;">if (i.gt.arr(37).and.i.lt.arr(39)) then</span><br>
</p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;"></span><span style="font-variant-ligatures: no-common-ligatures;">indexes = ind(average1.gt.arr(37).and.average1.lt.arr(39))</span></p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;"></span><span style="font-variant-ligatures: no-common-ligatures;">labels(i) = arr(37) + "< x < " + arr(39)</span></p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;">end if</span></p>
<p style="margin: 0px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: normal; font-stretch: normal; font-size: 12px; line-height: normal; font-family: Courier;">
<span style="font-variant-ligatures: no-common-ligatures;">end do</span></p>
<br>
<p></p>
<p>I'm pretty sure most of this is wrong, but I don't know what a lot of the functions mean, so any help would be appreciated!</p>
<p><br>
</p>
<p>Thanks,</p>
<p>Emma Nelson</p>
</div>
</body>
</html>