<?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 Hi, can anyone help me how to get attached graph. in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Hi-can-anyone-help-me-how-to-get-attached-graph/m-p/373881#M12921</link>
    <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am unablle to get attached graph by using prog gplot procedure. Anyone could help me to produce attached graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You!&lt;/P&gt;&lt;P&gt;VR96.&lt;/P&gt;</description>
    <pubDate>Fri, 07 Jul 2017 10:43:39 GMT</pubDate>
    <dc:creator>VR96</dc:creator>
    <dc:date>2017-07-07T10:43:39Z</dc:date>
    <item>
      <title>Hi, can anyone help me how to get attached graph.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Hi-can-anyone-help-me-how-to-get-attached-graph/m-p/373881#M12921</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am unablle to get attached graph by using prog gplot procedure. Anyone could help me to produce attached graph.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank You!&lt;/P&gt;&lt;P&gt;VR96.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2017 10:43:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Hi-can-anyone-help-me-how-to-get-attached-graph/m-p/373881#M12921</guid>
      <dc:creator>VR96</dc:creator>
      <dc:date>2017-07-07T10:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, can anyone help me how to get attached graph.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Hi-can-anyone-help-me-how-to-get-attached-graph/m-p/373891#M12922</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;First off, don't attach Office files, most users will not download them as they are a security risk. &amp;nbsp;Post an image of the graph in the post itself. &amp;nbsp;Secondly its really advisable to start using Sgplot and Graph Template Language as they are far more flexible and modern. &amp;nbsp;Also note this is not a do all your work for you website, so show what you have managed to do and what questions you have on it. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now this blog here is the best place to look for any graph question, it provides clear examples for any graph you could possibly imagine, so I would start looking there:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.sas.com/content/graphicallyspeaking/" target="_blank"&gt;http://blogs.sas.com/content/graphicallyspeaking/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jul 2017 11:03:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Hi-can-anyone-help-me-how-to-get-attached-graph/m-p/373891#M12922</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2017-07-07T11:03:02Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, can anyone help me how to get attached graph.</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Hi-can-anyone-help-me-how-to-get-attached-graph/m-p/374510#M12927</link>
      <description>&lt;P&gt;Here are a couple of basic examples to get you started:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data temp;
do g = 1 to 2;
   do x = 1 to 10;
      y=ranuni(123);
      z=ranuni(321);
      output;
   end;
end;
run;

proc sgplot data=temp;
   series x=x y=y / markers markerattrs=(symbol=circlefilled)
                    group=g;
run;

proc sgplot data=temp (where=(g=1));
   series x=x y=y / markers markerattrs=(symbol=circlefilled);
   series x=x y=z / markers markerattrs=(symbol=circlefilled);
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 10 Jul 2017 14:11:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Hi-can-anyone-help-me-how-to-get-attached-graph/m-p/374510#M12927</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2017-07-10T14:11:18Z</dc:date>
    </item>
  </channel>
</rss>

