<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic GPLOT Plot mean and confidence limits with error bars in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/GPLOT-Plot-mean-and-confidence-limits-with-error-bars/m-p/526739#M17657</link>
    <description>&lt;P&gt;I want to plot mean and confidence intervals in gplot. I have tried modifying a code found in the community (see below)&amp;nbsp;for my data but it only produces the Means with a joined line and no error bars and I&amp;nbsp;get the error message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: ERROR DETECTED IN ANNOTATE= DATASET WORK.ANNO.&lt;/P&gt;&lt;P&gt;VARIABLE SHOWN IS NOT OF THE PROPER DATATYPE YC&lt;/P&gt;&lt;P&gt;NOTE: ERROR LIMIT REACHED IN ANNOTATE PROCESS. PROCESSING IS TERMINATED.&lt;/P&gt;&lt;P&gt;NOTE: PROCESSING TERMINATED BY INDIVIDUAL ERROR COUNT.&lt;/P&gt;&lt;P&gt;NOTE: 1 TOTAL ERRORS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could anyone please tell me how to solve the issue?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anna&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;summary&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=PAwPDAPFO;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;by&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; dage;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;var&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; CO;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;out&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=means (drop=_:) &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;mean&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;mean&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;lclm&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;lclm&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;uclm&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;uclm&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; anno;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;length&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; function color $&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;8&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;retain&lt;/FONT&gt; &lt;FONT face="Courier New" size="2"&gt;when &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'a'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;set&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; means;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*draw horisontal line from limit to limit*/&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;function=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'move'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; yc=var; xsys=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'2'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; ysys=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'2'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; x=lclm; color=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'black'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;function=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'draw'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; x=uclm; size=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*draw tick line for lower*/&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;function=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'move'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; xsys=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'2'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; ysys=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'2'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; yc=var; y=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; x=lclm; color=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'black'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;function=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'draw'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; x=lclm; y=+&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; ysys=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'9'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; size=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;function=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'draw'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; x=lclm; y=-&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;2&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; size=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*draw tick line for upper*/&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;function=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'move'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; xsys=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'2'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; ysys=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'2'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; yc=var; y=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; x=uclm; color=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'black'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;function=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'draw'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; x=uclm; y=+&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; ysys=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'9'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; size=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;function=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'draw'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; x=uclm; y=-&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;2&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; size=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;symbol1&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;value&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=dot &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;height&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;color&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=black;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;gplot&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=means;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;plot&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; mean*dage/&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;annotate&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=anno &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;nolegend&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;quit&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 13 Jan 2019 16:27:28 GMT</pubDate>
    <dc:creator>pakiprinsesse</dc:creator>
    <dc:date>2019-01-13T16:27:28Z</dc:date>
    <item>
      <title>GPLOT Plot mean and confidence limits with error bars</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GPLOT-Plot-mean-and-confidence-limits-with-error-bars/m-p/526739#M17657</link>
      <description>&lt;P&gt;I want to plot mean and confidence intervals in gplot. I have tried modifying a code found in the community (see below)&amp;nbsp;for my data but it only produces the Means with a joined line and no error bars and I&amp;nbsp;get the error message:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;NOTE: ERROR DETECTED IN ANNOTATE= DATASET WORK.ANNO.&lt;/P&gt;&lt;P&gt;VARIABLE SHOWN IS NOT OF THE PROPER DATATYPE YC&lt;/P&gt;&lt;P&gt;NOTE: ERROR LIMIT REACHED IN ANNOTATE PROCESS. PROCESSING IS TERMINATED.&lt;/P&gt;&lt;P&gt;NOTE: PROCESSING TERMINATED BY INDIVIDUAL ERROR COUNT.&lt;/P&gt;&lt;P&gt;NOTE: 1 TOTAL ERRORS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could anyone please tell me how to solve the issue?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anna&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;summary&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=PAwPDAPFO;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;by&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; dage;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;var&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; CO;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;out&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=means (drop=_:) &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;mean&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;mean&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;lclm&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;lclm&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;uclm&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;uclm&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; anno;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;length&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; function color $&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;8&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;retain&lt;/FONT&gt; &lt;FONT face="Courier New" size="2"&gt;when &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'a'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;set&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; means;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*draw horisontal line from limit to limit*/&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;function=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'move'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; yc=var; xsys=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'2'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; ysys=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'2'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; x=lclm; color=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'black'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;function=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'draw'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; x=uclm; size=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*draw tick line for lower*/&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;function=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'move'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; xsys=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'2'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; ysys=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'2'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; yc=var; y=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; x=lclm; color=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'black'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;function=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'draw'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; x=lclm; y=+&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; ysys=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'9'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; size=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;function=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'draw'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; x=lclm; y=-&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;2&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; size=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*draw tick line for upper*/&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;function=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'move'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; xsys=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'2'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; ysys=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'2'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; yc=var; y=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; x=uclm; color=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'black'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;function=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'draw'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; x=uclm; y=+&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; ysys=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'9'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; size=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;function=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'draw'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; x=uclm; y=-&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;2&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; size=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;output&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;symbol1&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;value&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=dot &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;height&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;color&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=black;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;gplot&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=means;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;plot&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; mean*dage/&lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;annotate&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=anno &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;nolegend&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;; &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;quit&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 13 Jan 2019 16:27:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GPLOT-Plot-mean-and-confidence-limits-with-error-bars/m-p/526739#M17657</guid>
      <dc:creator>pakiprinsesse</dc:creator>
      <dc:date>2019-01-13T16:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: GPLOT Plot mean and confidence limits with error bars</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GPLOT-Plot-mean-and-confidence-limits-with-error-bars/m-p/526751#M17658</link>
      <description>&lt;P&gt;According to the error message:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;VARIABLE SHOWN IS NOT OF THE PROPER DATATYPE YC&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have the wrong variable type for YC. It is expecting a character variable, and you have provided a numeric variable. But if you are trying to draw confidence intervals, you probably want to use variable Y and not YC.&lt;/P&gt;</description>
      <pubDate>Sun, 13 Jan 2019 17:36:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GPLOT-Plot-mean-and-confidence-limits-with-error-bars/m-p/526751#M17658</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-01-13T17:36:12Z</dc:date>
    </item>
    <item>
      <title>Re: GPLOT Plot mean and confidence limits with error bars</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GPLOT-Plot-mean-and-confidence-limits-with-error-bars/m-p/526784#M17660</link>
      <description>&lt;P&gt;Try this instead. It's a lot less code &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=PAwPDAPFO noautolegend;
vline dage / response=CO stat=mean limitstat=clm markers;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;
&lt;P&gt;Dan&lt;/P&gt;</description>
      <pubDate>Sun, 13 Jan 2019 21:34:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GPLOT-Plot-mean-and-confidence-limits-with-error-bars/m-p/526784#M17660</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2019-01-13T21:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: GPLOT Plot mean and confidence limits with error bars</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GPLOT-Plot-mean-and-confidence-limits-with-error-bars/m-p/526868#M17663</link>
      <description>&lt;P&gt;Thank you!.&lt;/P&gt;&lt;P&gt;That worked as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the mean time I succeeded with plot and the following code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;STRONG&gt;sort&lt;/STRONG&gt;data=PAwPDAPFO;&lt;/P&gt;&lt;P&gt;bydage;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;STRONG&gt;summary&lt;/STRONG&gt;data=PAwPDAPFO;&lt;/P&gt;&lt;P&gt;bydage;&lt;/P&gt;&lt;P&gt;varCO;&lt;/P&gt;&lt;P&gt;outputout=means (drop=_:) mean=meanlclm=lclmuclm=uclm;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*CONVERT DAGE FROM NUMERIC TO CHARACTER*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;meansCO; setmeans;&lt;/P&gt;&lt;P&gt;char_dage=put(dage,$2.);&lt;/P&gt;&lt;P&gt;dropdage;&lt;/P&gt;&lt;P&gt;renamechar_dage=dage;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*GRAPH*/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;anno;&lt;/P&gt;&lt;P&gt;lengthfunction color $&lt;STRONG&gt;8&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;retain/*xsys ysys '2' */when 'a';&lt;/P&gt;&lt;P&gt;setmeansco;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*draw VERTICAL line from limit to limit (=ERROR BARS)*/&lt;/P&gt;&lt;P&gt;function='move'; Xc=dage; xsys='2'; ysys='2'; Y=lclm; color='black'; output;&lt;/P&gt;&lt;P&gt;function='draw'; Y=uclm; size=&lt;STRONG&gt;1&lt;/STRONG&gt;; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*draw tick line for lower CONFIDENCE LIMIT*/&lt;/P&gt;&lt;P&gt;function='move'; xsys='2'; ysys='2'; Xc=dage; X=&lt;STRONG&gt;.&lt;/STRONG&gt;; Y=lclm; color='black';output;&lt;/P&gt;&lt;P&gt;function='draw'; Y=lclm; X=+&lt;STRONG&gt;1&lt;/STRONG&gt;; Xsys='9'; size=&lt;STRONG&gt;1&lt;/STRONG&gt;;output;&lt;/P&gt;&lt;P&gt;function='draw'; Y=lclm; X=-&lt;STRONG&gt;2&lt;/STRONG&gt;; size=&lt;STRONG&gt;1&lt;/STRONG&gt;; output;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*draw tick line for upper CONFIDENCE LIMIT*/&lt;/P&gt;&lt;P&gt;function='move'; xsys='2'; ysys='2'; Xc=dage; X=&lt;STRONG&gt;.&lt;/STRONG&gt;; Y=uclm; color='black';output;&lt;/P&gt;&lt;P&gt;function='draw'; Y=uclm; X=+&lt;STRONG&gt;1&lt;/STRONG&gt;; Xsys='9'; size=&lt;STRONG&gt;1&lt;/STRONG&gt;;output;&lt;/P&gt;&lt;P&gt;function='draw'; Y=uclm; X=-&lt;STRONG&gt;2&lt;/STRONG&gt;; size=&lt;STRONG&gt;1&lt;/STRONG&gt;; output;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*SET AXIS AND SYMBOLS*/&lt;/P&gt;&lt;P&gt;symbol1value=dot height=&lt;STRONG&gt;1&lt;/STRONG&gt;color=black;&lt;/P&gt;&lt;P&gt;axis1order=&lt;STRONG&gt;0&lt;/STRONG&gt;to&lt;STRONG&gt;28&lt;/STRONG&gt;by&lt;STRONG&gt;1&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;axis2order=&lt;STRONG&gt;0.4&lt;/STRONG&gt;to&lt;STRONG&gt;1.75&lt;/STRONG&gt;by&lt;STRONG&gt;0.1&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/*PLOT*/&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;STRONG&gt;gplot&lt;/STRONG&gt;data=meansco;&lt;/P&gt;&lt;P&gt;plotMEAN*DAGE/annotate=anno nolegendhaxis=axis1 vaxis=axis2;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;STRONG&gt;quit&lt;/STRONG&gt;;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/******************************************************************************************************/&lt;/P&gt;&lt;P&gt;/******************************************************************************************************/&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jan 2019 07:57:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GPLOT-Plot-mean-and-confidence-limits-with-error-bars/m-p/526868#M17663</guid>
      <dc:creator>pakiprinsesse</dc:creator>
      <dc:date>2019-01-14T07:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: GPLOT Plot mean and confidence limits with error bars</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GPLOT-Plot-mean-and-confidence-limits-with-error-bars/m-p/526869#M17664</link>
      <description>&lt;P&gt;Thank you. Changing the variable to character helped me a lot along the way!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jan 2019 07:58:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GPLOT-Plot-mean-and-confidence-limits-with-error-bars/m-p/526869#M17664</guid>
      <dc:creator>pakiprinsesse</dc:creator>
      <dc:date>2019-01-14T07:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: GPLOT Plot mean and confidence limits with error bars</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/GPLOT-Plot-mean-and-confidence-limits-with-error-bars/m-p/526910#M17665</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/254949"&gt;@pakiprinsesse&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thank you. Changing the variable to character helped me a lot along the way!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Just in case there's any interest in the PROC GPLOT solution ... I didn't advise to change the variable to character. I advised that you use Y instead of YC, with a numeric variable.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jan 2019 12:58:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/GPLOT-Plot-mean-and-confidence-limits-with-error-bars/m-p/526910#M17665</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-01-14T12:58:14Z</dc:date>
    </item>
  </channel>
</rss>

