<?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 NOFRAME in SGPLOT? in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/How-to-NOFRAME-in-SGPLOT/m-p/602288#M174347</link>
    <description>&lt;P&gt;Are you actually sending the result to the LISTING destination? That may be the problem as many of the ODS features are problematic.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With the HTML results window&lt;/P&gt;
&lt;PRE&gt;data _;
do i=1 to 100;
x=rannor(1);
y=x+rannor(1);
output;
end;
run;
ods listing gpath="!userprofile\desktop\";
ods graphics/reset;
proc sgplot;
scatter x=x y=y;
run;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPlot.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33734iCD26F9100D709327/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPlot.png" alt="SGPlot.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 07 Nov 2019 00:53:28 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-11-07T00:53:28Z</dc:date>
    <item>
      <title>How to NOFRAME in SGPLOT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-NOFRAME-in-SGPLOT/m-p/602269#M174343</link>
      <description>&lt;P&gt;Does SGPLOT have NOFRAME? It is not NOBORDER. Here's the code.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _;
do i=1 to 100;
x=rannor(1);
y=x+rannor(1);
output;
end;
run;
ods listing gpath="!userprofile\desktop\";
ods graphics/reset;
proc sgplot;
scatter x=x y=y;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I wonder whether the red part can be removed.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPlot1.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33731iC099AFB8977DFD44/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPlot1.png" alt="SGPlot1.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help.&lt;/P&gt;</description>
      <pubDate>Wed, 06 Nov 2019 23:07:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-NOFRAME-in-SGPLOT/m-p/602269#M174343</guid>
      <dc:creator>Junyong</dc:creator>
      <dc:date>2019-11-06T23:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to NOFRAME in SGPLOT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-NOFRAME-in-SGPLOT/m-p/602281#M174346</link>
      <description>&lt;P&gt;Check the documentation for stuff like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p073bl97jzadkmn15lhq58yiy2uh.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en#n1iqo7vpboefe4n1oysl0yef7633"&gt;https://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p073bl97jzadkmn15lhq58yiy2uh.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en#n1iqo7vpboefe4n1oysl0yef7633&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NOBORDER and NOWALL look promising.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/173881"&gt;@Junyong&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Does SGPLOT have NOFRAME? It is not NOBORDER. Here's the code.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data _;
do i=1 to 100;
x=rannor(1);
y=x+rannor(1);
output;
end;
run;
ods listing gpath="!userprofile\desktop\";
ods graphics/reset;
proc sgplot;
scatter x=x y=y;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I wonder whether the red part can be removed.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPlot1.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33731iC099AFB8977DFD44/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPlot1.png" alt="SGPlot1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Thanks for your help.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2019 00:15:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-NOFRAME-in-SGPLOT/m-p/602281#M174346</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-11-07T00:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to NOFRAME in SGPLOT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-NOFRAME-in-SGPLOT/m-p/602288#M174347</link>
      <description>&lt;P&gt;Are you actually sending the result to the LISTING destination? That may be the problem as many of the ODS features are problematic.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;With the HTML results window&lt;/P&gt;
&lt;PRE&gt;data _;
do i=1 to 100;
x=rannor(1);
y=x+rannor(1);
output;
end;
run;
ods listing gpath="!userprofile\desktop\";
ods graphics/reset;
proc sgplot;
scatter x=x y=y;
run;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SGPlot.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/33734iCD26F9100D709327/image-size/large?v=v2&amp;amp;px=999" role="button" title="SGPlot.png" alt="SGPlot.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2019 00:53:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-NOFRAME-in-SGPLOT/m-p/602288#M174347</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-11-07T00:53:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to NOFRAME in SGPLOT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-NOFRAME-in-SGPLOT/m-p/602289#M174348</link>
      <description>ODS LISTING doesn't really support graphics within itself anyways, they're created as files external to the listing output. From the output of your graph you have a different default style and that can change some of the output. If I run your code in Academics OnDemand, I get something similar to the OP, not your output.</description>
      <pubDate>Thu, 07 Nov 2019 01:00:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-NOFRAME-in-SGPLOT/m-p/602289#M174348</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-11-07T01:00:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to NOFRAME in SGPLOT?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-to-NOFRAME-in-SGPLOT/m-p/602295#M174351</link>
      <description>My apologies. I was trying to put NOBORDER in ODS GRAPHICS rather than in PROC SGPLOT. The first NOBORDER deleted the most outer border rather than the border I mentioned. Thanks for this.</description>
      <pubDate>Thu, 07 Nov 2019 01:55:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-to-NOFRAME-in-SGPLOT/m-p/602295#M174351</guid>
      <dc:creator>Junyong</dc:creator>
      <dc:date>2019-11-07T01:55:34Z</dc:date>
    </item>
  </channel>
</rss>

