<?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 Re: SAS Graphics - scatterplot, symbols, and confidence intervals in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/383791#M13157</link>
    <description>Thank you, that was very helpful.</description>
    <pubDate>Fri, 28 Jul 2017 16:04:39 GMT</pubDate>
    <dc:creator>sas_user4</dc:creator>
    <dc:date>2017-07-28T16:04:39Z</dc:date>
    <item>
      <title>SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/381738#M13114</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am faily new to SAS. I have this dataset on lower (li) and upper income (ui) and year (y):&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;data&lt;/STRONG&gt; new;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;input li ui year;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;datalines;&lt;/P&gt;
&lt;P&gt;2015&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1200&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1360&lt;/P&gt;
&lt;P&gt;2014 &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1170&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1330&lt;/P&gt;
&lt;P&gt;2013&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1170&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1330&lt;/P&gt;
&lt;P&gt;2012&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1140&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1330&lt;/P&gt;
&lt;P&gt;2011&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1130&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1320&lt;/P&gt;
&lt;P&gt;2010&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1110&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1310&lt;/P&gt;
&lt;P&gt;2009&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1140&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1310&lt;/P&gt;
&lt;P&gt;2008&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1120&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1290&lt;/P&gt;
&lt;P&gt;2007&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1130&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1300&lt;/P&gt;
&lt;P&gt;2006&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1150&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1310&lt;/P&gt;
&lt;P&gt;&amp;nbsp;;&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;I need help in writing SAS code for a scatterplot with the lower income on the vertical axis versus the year on the horizontal axis.&amp;nbsp; How can I make these observations on the plot with the character v.&amp;nbsp; On the same plot, what is the SAS code to show the upper income plotted against the year and how to mark these points with a ^. I want to use this idea to show confidence intervals or prediction intervals on a plot.&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2017 16:16:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/381738#M13114</guid>
      <dc:creator>sas_user4</dc:creator>
      <dc:date>2017-07-27T16:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/381973#M13116</link>
      <description>&lt;P&gt;I don't much like the idea of using a caret as one of the symbols, so I did not show that, but this makes the plot you request. &amp;nbsp;It does not work all that well with the data you have.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data new;
 input li ui Year;
 Income = li; type = 'Lower Income'; output;
 income = ui; type = 'Upper Income'; output;
 datalines;
2015       1200       1360
2014       1170       1330
2013       1170       1330
2012       1140       1330
2011       1130       1320
2010       1110       1310
2009       1140       1310
2008       1120       1290
2007       1130       1300
2006       1150       1310
;

proc sgplot data=new;
   reg x=year y=income / group=type cli clm;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 27 Jul 2017 16:28:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/381973#M13116</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-07-27T16:28:19Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382095#M13117</link>
      <description>Thanks Warren. Is this code correct:&lt;BR /&gt;x*year=income&lt;BR /&gt;Is this correct?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;##- Please type your reply above this line. Simple formatting, no&lt;BR /&gt;attachments. -##</description>
      <pubDate>Thu, 27 Jul 2017 16:38:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382095#M13117</guid>
      <dc:creator>sas_user4</dc:creator>
      <dc:date>2017-07-27T16:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382185#M13118</link>
      <description>&lt;P&gt;I believe that is a form of syntax for GPLOT, which is part of SAS/GRAPH and has its roots in 1980s technology. &amp;nbsp;I showed you PROC SGPLOT, which is part of Base SAS and is based on modern technology. &amp;nbsp;Here are a couple more variations on the theme.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=new;
   reg x=year y=income / group=type cli clm;
   keylegend / title=' ';
run;

proc sgplot data=new;
   reg x=year y=income / group=type cli clm nomarkers legendlabel=' ' name='a';
   scatter x=year y=income / group=type markerchar=type legendlabel=' ';
   format type $1.;
   keylegend 'a' / title=' ';
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 27 Jul 2017 16:46:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382185#M13118</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-07-27T16:46:52Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382231#M13119</link>
      <description>&lt;P&gt;Actually, your data set had the variables wrong. &amp;nbsp;This should work better.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data new;
 input Year li ui;
 Income = li; type = 'Lower Income'; output;
 income = ui; type = 'Upper Income'; output;
 datalines;
2015       1200       1360
2014       1170       1330
2013       1170       1330
2012       1140       1330
2011       1130       1320
2010       1110       1310
2009       1140       1310
2008       1120       1290
2007       1130       1300
2006       1150       1310
;

ods html body='b.html';
proc sgplot data=new;
   reg x=year y=income / group=type cli clm;
   keylegend / title=' ';
run;

proc sgplot data=new;
   reg x=year y=income / group=type cli clm nomarkers legendlabel=' ' name='a';
   scatter x=year y=income / group=type markerchar=type legendlabel=' ';
   format type $1.;
   keylegend 'a' / title=' ';
run;
ods html close;





&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 27 Jul 2017 16:51:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382231#M13119</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-07-27T16:51:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382361#M13120</link>
      <description>&lt;P&gt;If I understand what you are asking, you can use the HIGHLOW statement to create a graph that displays interval estimates. Here is an example that uses your original data:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data new;
 input year li ui;
 datalines;
2015       1200       1360
2014       1170       1330
2013       1170       1330
2012       1140       1330
2011       1130       1320
2010       1110       1310
2009       1140       1310
2008       1120       1290
2007       1130       1300
2006       1150       1310
 ;
run;

proc sgplot data=new;
   highlow x=year low=li high=ui / highcap=openarrow lowcap=openarrow;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2017 17:03:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382361#M13120</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-07-27T17:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382535#M13121</link>
      <description>Warren:&lt;BR /&gt;I don't understand why when I run your code, SAS tells me there are 20&lt;BR /&gt;observations while there are only 10!&lt;BR /&gt;&lt;BR /&gt;##- Please type your reply above this line. Simple formatting, no&lt;BR /&gt;attachments. -##</description>
      <pubDate>Thu, 27 Jul 2017 17:18:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382535#M13121</guid>
      <dc:creator>sas_user4</dc:creator>
      <dc:date>2017-07-27T17:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382568#M13122</link>
      <description>&lt;P&gt;Rather than writing out two &amp;nbsp;income variables like you did origially, I wrote out one income variable of interest with two observations for each year. &amp;nbsp;This kind of grouped data set is often the right form for ODS Graphics, although there is often more than one way to do things.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2017 17:21:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382568#M13122</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-07-27T17:21:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382579#M13123</link>
      <description>&lt;P&gt;Rick_SAS:&lt;/P&gt;
&lt;P&gt;Thank you, I run the code and here is the error message:&lt;/P&gt;
&lt;P&gt;WARNING: No output destinations active.&lt;/P&gt;
&lt;P&gt;And no graph was produced!&lt;/P&gt;
&lt;P&gt;My question is that I need to plot lower income (Y axis) and Year (X axis) and then upper income against year in the same plot. Hope it is clearer now.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2017 17:22:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382579#M13123</guid>
      <dc:creator>sas_user4</dc:creator>
      <dc:date>2017-07-27T17:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382607#M13124</link>
      <description>&lt;P&gt;Thanks Warren. I hope you have patience but can I ask you how your code (using reg) is different than mine (x*y=z) in terms of the output?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2017 17:25:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382607#M13124</guid>
      <dc:creator>sas_user4</dc:creator>
      <dc:date>2017-07-27T17:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382656#M13125</link>
      <description>&lt;P&gt;'&lt;SPAN&gt;x*y=z' doesn't do anything. &amp;nbsp;As before, I am guessing you are referring to &amp;nbsp;PROC GPLOT. &amp;nbsp;I have forgotten almost everything I ever knew about it and never recommend it. &amp;nbsp;As I recall, GPLOT has no mechanism for linear regression functions, but I could very well be wrong. &amp;nbsp;I was showing you how to fit regression models for each group. &amp;nbsp;Rick thought you might want something different. &amp;nbsp;Whatever you want, if it is a scatter plot, PROC SGPLOT is the procedure that you should be learning.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2017 17:29:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382656#M13125</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-07-27T17:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382759#M13126</link>
      <description>&lt;P&gt;Thanks Warren! You are correct, I use gplot:&lt;/P&gt;
&lt;P&gt;proc gplot data=new;&lt;BR /&gt; title 'Scatter Plot of Year and li with ui plotted against year';&lt;BR /&gt; plot year*li=ui / regeqn;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is snapshot of the graph using gplot&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="graph.PNG" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/13489i8828CDC961C67782/image-size/large?v=v2&amp;amp;px=999" role="button" title="graph.PNG" alt="graph.PNG" /&gt;&lt;/span&gt;';&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2017 17:38:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/382759#M13126</guid>
      <dc:creator>sas_user4</dc:creator>
      <dc:date>2017-07-27T17:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/383079#M13127</link>
      <description>&lt;P&gt;How about this code?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;goptions reset = all;&lt;/P&gt;
&lt;P&gt;symbol1 v=^ ;&lt;/P&gt;
&lt;P&gt;symbol2 v=v;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt; &lt;STRONG&gt;sgplot&lt;/STRONG&gt; data =new;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; scatter x=year y=lq ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; scatter x=year y=uq;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;quit&lt;/STRONG&gt;;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and how to produde these symbols (^) and (v)?&lt;/P&gt;
&lt;P&gt;Thakns&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2017 18:09:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/383079#M13127</guid>
      <dc:creator>sas_user4</dc:creator>
      <dc:date>2017-07-27T18:09:23Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/383273#M13128</link>
      <description>&lt;P&gt;There are cleaner ways, but I have to run to a meeting, and this is the way I remember off of the top of my head. &amp;nbsp;Your SAS/GRAPH statements have no effect on ODS Graphics.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data new;
 input Year li ui;
 v = 'v';
 c = '^';
 datalines;
2015       1200       1360
2014       1170       1330
2013       1170       1330
2012       1140       1330
2011       1130       1320
2010       1110       1310
2009       1140       1310
2008       1120       1290
2007       1130       1300
2006       1150       1310
;

ods html body='b.html';
proc sgplot data =new noautolegend;
  scatter x=year y=li / markerchar=v;
  scatter x=year y=ui / markerchar=c;
run;
ods html close;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 27 Jul 2017 18:27:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/383273#M13128</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-07-27T18:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/383428#M13129</link>
      <description>​Thanks a lot Warren. This is excellent but how can I add the confidence&lt;BR /&gt;limits (clm cli)? Are these options are only available using "reg"?</description>
      <pubDate>Thu, 27 Jul 2017 18:47:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/383428#M13129</guid>
      <dc:creator>sas_user4</dc:creator>
      <dc:date>2017-07-27T18:47:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/383443#M13130</link>
      <description>&lt;P&gt;I think you might enjoy reading a basic introduction to the SG (=statistical graphics) procedures. It will give you an understanding of how different statements work.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;A gentle introduction is &lt;A href="https://support.sas.com/resources/papers/proceedings15/2441-2015.pdf" target="_self"&gt;Slaughter and Delwiche (2015), "Graphing Made Easy with SGPLOT and SGPANEL Procedures"&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;If you are previously experienced with SAS/GRAPH, you might enjoy &lt;A href="http://analytics.ncsu.edu/sesug/2012/RI-04.pdf" target="_self"&gt;Horne (2012) "Converting SAS/GRAPH to ODS Graphics."&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;Lastly, the documentation for PROC SGPLOT enables you to look up the syntax for the SCATTER and REG procedures and see which options are in each: &lt;A href="http://support.sas.com/documentation/cdl/en/grstatproc/69716/HTML/default/viewer.htm#n0yjdd910dh59zn1toodgupaj4v9.htm" target="_self"&gt;Doc for PROC SGPLOT&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Thu, 27 Jul 2017 19:08:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/383443#M13130</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2017-07-27T19:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/383452#M13131</link>
      <description>Thanks a lot, Rick!</description>
      <pubDate>Thu, 27 Jul 2017 19:25:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/383452#M13131</guid>
      <dc:creator>sas_user4</dc:creator>
      <dc:date>2017-07-27T19:25:45Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/383495#M13136</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=new noautolegend nocycleattrs;
  symbolchar char='2038'x name=c;
  symbolchar char='0087'x name=v;
  reg x=year y=li / cli clm nomarkers;
  reg x=year y=ui / cli clm nomarkers;
  scatter x=year y=li / markerchar=v;
  scatter x=year y=ui / markerchar=c;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 27 Jul 2017 20:42:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/383495#M13136</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-07-27T20:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/383528#M13138</link>
      <description>Thanks Warren but the code did not work! I appreciate your help.</description>
      <pubDate>Fri, 28 Jul 2017 00:46:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/383528#M13138</guid>
      <dc:creator>sas_user4</dc:creator>
      <dc:date>2017-07-28T00:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Graphics - scatterplot, symbols, and confidence intervals</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/383531#M13139</link>
      <description>&lt;P&gt;It makes regression lines, confidence limits, prediction limits, and the special symbols that you want. &amp;nbsp;Either you are using a really old SAS release that does not support the statements I provided, or I don't know what you want. &amp;nbsp;Either way, I tested my code, and it does work. &amp;nbsp;Rick gave you some references. &amp;nbsp;I also suggest searches for the "SAS Graphically Speaking" blog and my basic book "Basic ODS Graphics Examples". &amp;nbsp;Cheers.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jul 2017 01:05:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/SAS-Graphics-scatterplot-symbols-and-confidence-intervals/m-p/383531#M13139</guid>
      <dc:creator>WarrenKuhfeld</dc:creator>
      <dc:date>2017-07-28T01:05:28Z</dc:date>
    </item>
  </channel>
</rss>

