<?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: Proc sgplot in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Plotting/m-p/693246#M24974</link>
    <description>&lt;P&gt;And for line thickness, try option lineattrs=(thickness=5)&lt;/P&gt;</description>
    <pubDate>Wed, 21 Oct 2020 16:36:42 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2020-10-21T16:36:42Z</dc:date>
    <item>
      <title>Plotting</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Plotting/m-p/693143#M24958</link>
      <description />
      <pubDate>Fri, 23 Oct 2020 03:07:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Plotting/m-p/693143#M24958</guid>
      <dc:creator>NeilSmith</dc:creator>
      <dc:date>2020-10-23T03:07:15Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Plotting/m-p/693182#M24963</link>
      <description>&lt;P&gt;Please post code as text, preferably in a code box opened on the forum with either the &amp;lt;/&amp;gt; or "running man" icons.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your PDF shows an error on attempting to open, so can't say anything about any of the contents.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;XAXIS and YAXIS statements control appearance of axis. The option Display=NONE should suppress most of the axis appearance. Example:&lt;/P&gt;
&lt;PRE&gt;proc sgplot data=sashelp.class;
   scatter x=height y=weight;
   xaxis display=none;
   yaxis display=none;
run;&lt;/PRE&gt;
&lt;P&gt;You should have access to the sashelp.class data set and can run that code and see the result.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Without an image or code there is no way to reference what a "red" or "swirly line" might be. If you set the ODS STYLE to Journal, or one of the others in that group, the output will be black, white or grayscale.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 14:02:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Plotting/m-p/693182#M24963</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-10-21T14:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Plotting/m-p/693245#M24973</link>
      <description>&lt;P&gt;For the color, you should try adding option fillattrs=(color=gray55) to the polygon statement.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 16:34:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Plotting/m-p/693245#M24973</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-10-21T16:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Plotting/m-p/693246#M24974</link>
      <description>&lt;P&gt;And for line thickness, try option lineattrs=(thickness=5)&lt;/P&gt;</description>
      <pubDate>Wed, 21 Oct 2020 16:36:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Plotting/m-p/693246#M24974</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-10-21T16:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Plotting/m-p/693439#M25011</link>
      <description>&lt;P&gt;Thank!&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 03:08:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Plotting/m-p/693439#M25011</guid>
      <dc:creator>NeilSmith</dc:creator>
      <dc:date>2020-10-23T03:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Plotting/m-p/693440#M25012</link>
      <description />
      <pubDate>Fri, 23 Oct 2020 03:07:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Plotting/m-p/693440#M25012</guid>
      <dc:creator>NeilSmith</dc:creator>
      <dc:date>2020-10-23T03:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: Proc sgplot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Plotting/m-p/693516#M25032</link>
      <description>&lt;P&gt;Play with this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sgplot data=side aspect=1 noborder noautolegend;
         polygon x=x y=y id=degree / fill outline
         colorresponse=color colormodel=(gray00 gray55 graydd) lineattrs=(thickness=5);
         xaxis display=none;
         yaxis display=none;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.png" style="width: 651px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/50907iB3E7124E54A63F5A/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.png" alt="image.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2020 14:24:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Plotting/m-p/693516#M25032</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2020-10-22T14:24:03Z</dc:date>
    </item>
  </channel>
</rss>

