<?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: exporting graphs in SAS9.4 in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/exporting-graphs-in-SAS9-4/m-p/359970#M12563</link>
    <description>&lt;P&gt;Try turning ODS graphics off.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS GRAPHICS OFF;

filename grafout "&amp;amp;dirout\mygraph.gif" ;

goptions gsfname=grafout gsfmode=replace device=gif ;

title1 f=swissb h=1.3 "my super graph" ;

proc univariate data = sashelp.class noprint ;
  histogram age /cfill = steel ;
  inset n mean std min max ;
  where age ne . ; 
run ; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the PROC UNIVARIATE documentation:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The UNIVARIATE procedure supports two kinds of graphical output.&lt;/P&gt;
&lt;DIV&gt;
&lt;UL type="disc"&gt;
&lt;LI&gt;
&lt;P&gt;ODS Statistical Graphics output is produced if ODS Graphics is enabled, for example by specifying the ODS GRAPHICS ON statement prior to the PROC statement.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Otherwise, traditional graphics are produced if SAS/GRAPH&lt;SUP&gt;&lt;FONT size="2"&gt;® &lt;/FONT&gt;&lt;/SUP&gt;is licensed.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Find&amp;nbsp;more details at &lt;A href="http://support.sas.com/documentation/cdl/en/procstat/68142/HTML/default/viewer.htm#procstat_univariate_details31.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/procstat/68142/HTML/default/viewer.htm#procstat_univariate_details31.htm&lt;/A&gt;&lt;/P&gt;
&lt;/DIV&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13858iD29F3755525F70D4/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="mygraph.gif" title="mygraph.gif" /&gt;</description>
    <pubDate>Fri, 19 May 2017 13:44:39 GMT</pubDate>
    <dc:creator>SuzanneDorinski</dc:creator>
    <dc:date>2017-05-19T13:44:39Z</dc:date>
    <item>
      <title>exporting graphs in SAS9.4</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/exporting-graphs-in-SAS9-4/m-p/359909#M12557</link>
      <description>&lt;P&gt;Hi all&lt;/P&gt;&lt;P&gt;I have a small query for you all related to exporting Univariate histogram (in my case) as gif.&amp;nbsp;&lt;/P&gt;&lt;P&gt;In SAS 9.2, I use to do something like :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;filename grafout "&amp;amp;dirout\mygraph.gif" ;&lt;BR /&gt;goptions gsfname=grafout gsfmode=replace device=gif ;&lt;BR /&gt;title1 f=swissb h=1.3 "my super graph" ;&lt;BR /&gt;proc univariate data = test noprint ;&lt;BR /&gt;histogram var1/cfill = steel ;&lt;BR /&gt;inset n mean std min max ;&lt;BR /&gt;where var1ne . ; run ; quit ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In SAS 9.4, that doesn't seem to work anymore. I read somewhere that SAS 9.4 ha a default HTML output. Is that right? if so can I 'disable' it and go back to my old way? or is there a more efficient way with SAS 9.4?&lt;/P&gt;&lt;P&gt;PS: I am not using SAS Enterprise.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2017 08:59:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/exporting-graphs-in-SAS9-4/m-p/359909#M12557</guid>
      <dc:creator>MrTh</dc:creator>
      <dc:date>2017-05-19T08:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: exporting graphs in SAS9.4</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/exporting-graphs-in-SAS9-4/m-p/359970#M12563</link>
      <description>&lt;P&gt;Try turning ODS graphics off.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ODS GRAPHICS OFF;

filename grafout "&amp;amp;dirout\mygraph.gif" ;

goptions gsfname=grafout gsfmode=replace device=gif ;

title1 f=swissb h=1.3 "my super graph" ;

proc univariate data = sashelp.class noprint ;
  histogram age /cfill = steel ;
  inset n mean std min max ;
  where age ne . ; 
run ; &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From the PROC UNIVARIATE documentation:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The UNIVARIATE procedure supports two kinds of graphical output.&lt;/P&gt;
&lt;DIV&gt;
&lt;UL type="disc"&gt;
&lt;LI&gt;
&lt;P&gt;ODS Statistical Graphics output is produced if ODS Graphics is enabled, for example by specifying the ODS GRAPHICS ON statement prior to the PROC statement.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Otherwise, traditional graphics are produced if SAS/GRAPH&lt;SUP&gt;&lt;FONT size="2"&gt;® &lt;/FONT&gt;&lt;/SUP&gt;is licensed.&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Find&amp;nbsp;more details at &lt;A href="http://support.sas.com/documentation/cdl/en/procstat/68142/HTML/default/viewer.htm#procstat_univariate_details31.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/procstat/68142/HTML/default/viewer.htm#procstat_univariate_details31.htm&lt;/A&gt;&lt;/P&gt;
&lt;/DIV&gt;&lt;BR /&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/13858iD29F3755525F70D4/image-size/large?v=1.0&amp;amp;px=600" border="0" alt="mygraph.gif" title="mygraph.gif" /&gt;</description>
      <pubDate>Fri, 19 May 2017 13:44:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/exporting-graphs-in-SAS9-4/m-p/359970#M12563</guid>
      <dc:creator>SuzanneDorinski</dc:creator>
      <dc:date>2017-05-19T13:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: exporting graphs in SAS9.4</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/exporting-graphs-in-SAS9-4/m-p/359975#M12564</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/12496"&gt;@SuzanneDorinski&lt;/a&gt;&amp;nbsp;many thanks for the simple but effcient answer. i've been scratching my haed a while. Cheers!&lt;/P&gt;</description>
      <pubDate>Fri, 19 May 2017 13:54:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/exporting-graphs-in-SAS9-4/m-p/359975#M12564</guid>
      <dc:creator>MrTh</dc:creator>
      <dc:date>2017-05-19T13:54:07Z</dc:date>
    </item>
  </channel>
</rss>

