<?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: How to plot as a beginner? in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/How-to-plot-as-a-beginner/m-p/295534#M10430</link>
    <description>&lt;P&gt;here's &lt;A href="http://support.sas.com/resources/papers/proceedings11/095-2011.pdf" target="_self"&gt;a readable introduction to the SG procedures&lt;/A&gt; (including PROC SGPLOT) to get you started.&lt;/P&gt;</description>
    <pubDate>Wed, 31 Aug 2016 15:02:07 GMT</pubDate>
    <dc:creator>Rick_SAS</dc:creator>
    <dc:date>2016-08-31T15:02:07Z</dc:date>
    <item>
      <title>How to plot as a beginner?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-plot-as-a-beginner/m-p/295528#M10428</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I need to plot height and weight from sashelp.class following the template. &amp;nbsp;Where do I start?&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/4785iFB6AA0C21778231C/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="Sans.png" title="Sans.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 14:43:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-plot-as-a-beginner/m-p/295528#M10428</guid>
      <dc:creator>Milouda</dc:creator>
      <dc:date>2016-08-31T14:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot as a beginner?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-plot-as-a-beginner/m-p/295529#M10429</link>
      <description>&lt;P&gt;The basic plot can be accomplished with something similar to this:&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;proc&lt;/FONT&gt; &lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;sgplot&lt;/FONT&gt; &lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;data&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="2"&gt;=yourdatasetname;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;&amp;nbsp;&amp;nbsp; scatter&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;x&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="2"&gt;&lt;FONT face="SAS Monospace" size="2"&gt;=yourxvariable &lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;y&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="2"&gt;&lt;FONT face="SAS Monospace" size="2"&gt;=youryvariable;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;&lt;FONT color="#0000ff" face="SAS Monospace" size="2"&gt;run&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="SAS Monospace" size="2"&gt;&lt;FONT face="SAS Monospace" size="2"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="SAS Monospace" size="2"&gt;&lt;FONT face="SAS Monospace" size="2"&gt;Depending on which other items displayed are absolutely necessary then you get to dig into the options available such as an added INSET statement to place additional text, title statement(s) for titles about the graph.&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 14:51:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-plot-as-a-beginner/m-p/295529#M10429</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-08-31T14:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot as a beginner?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-plot-as-a-beginner/m-p/295534#M10430</link>
      <description>&lt;P&gt;here's &lt;A href="http://support.sas.com/resources/papers/proceedings11/095-2011.pdf" target="_self"&gt;a readable introduction to the SG procedures&lt;/A&gt; (including PROC SGPLOT) to get you started.&lt;/P&gt;</description>
      <pubDate>Wed, 31 Aug 2016 15:02:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-plot-as-a-beginner/m-p/295534#M10430</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2016-08-31T15:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to plot as a beginner?</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/How-to-plot-as-a-beginner/m-p/295708#M10468</link>
      <description>what about those correlations (pearson and spearman), a hint on how to write them on the graph?</description>
      <pubDate>Thu, 01 Sep 2016 07:38:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/How-to-plot-as-a-beginner/m-p/295708#M10468</guid>
      <dc:creator>Milouda</dc:creator>
      <dc:date>2016-09-01T07:38:40Z</dc:date>
    </item>
  </channel>
</rss>

