<?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: ods png name can't change for each graph in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-png-name-can-t-change-for-each-graph/m-p/389296#M19097</link>
    <description>&lt;P&gt;This is how I name my graphic files:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods listing gpath="&amp;amp;path.\Graphiques" style=journal image_dpi=600;
ods graphics / imagename="Biomarker VG" noborder 
    reset=index height=600 width=600;
proc sgplot ....&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This will create a graph in a square picture in a file named &amp;amp;path.\Graphiques\Biomarker VG.png with the journal style. The reset=index option forces SAS to start the creation of graphic files with Biomarker VG even if the name already exists&amp;nbsp;in the directory. Otherwise SAS would add a number suffix to the name to make it unique.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 19 Aug 2017 04:36:05 GMT</pubDate>
    <dc:creator>PGStats</dc:creator>
    <dc:date>2017-08-19T04:36:05Z</dc:date>
    <item>
      <title>ods png name can't change for each graph</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-png-name-can-t-change-for-each-graph/m-p/389167#M19092</link>
      <description>&lt;PRE&gt;ods listing  gpath="C:\temp\figures" file="street.png";&lt;BR /&gt;  proc sgplot data=.....&lt;BR /&gt;   .....&lt;BR /&gt;
 ods listing  gpath="C:\temp\figures" file="house.png";&lt;/PRE&gt;
&lt;PRE&gt;  proc sgplot data=.....&lt;BR /&gt;   .....&lt;/PRE&gt;
&lt;PRE&gt;&lt;BR /&gt;&lt;BR /&gt; ods listing gpath="C:\temp\figures" file="pet.png";&lt;/PRE&gt;
&lt;PRE&gt;  proc sgplot data=.....&lt;BR /&gt;   .....&lt;/PRE&gt;
&lt;P&gt;Hello all;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have three graphs draw from SAS,I want to use ods get the three png files with different names.but SAS automaticlly sign ed same prefix name for these files such as &amp;nbsp;SGplot1,SGplot2 .......&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to customize name for each files from the SAS&amp;nbsp;ods?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2017 17:27:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-png-name-can-t-change-for-each-graph/m-p/389167#M19092</guid>
      <dc:creator>GeorgeSAS</dc:creator>
      <dc:date>2017-08-18T17:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: ods png name can't change for each graph</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-png-name-can-t-change-for-each-graph/m-p/389172#M19093</link>
      <description>&lt;P&gt;Check if the ODS GRAPHICS statement allows you to control the image name.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p0f8elds7dc3dnn1ahm2cep3n0ce.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=ja" target="_blank"&gt;http://documentation.sas.com/?docsetId=grstatproc&amp;amp;docsetTarget=p0f8elds7dc3dnn1ahm2cep3n0ce.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=ja&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2017 17:39:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-png-name-can-t-change-for-each-graph/m-p/389172#M19093</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2017-08-18T17:39:52Z</dc:date>
    </item>
    <item>
      <title>Re: ods png name can't change for each graph</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-png-name-can-t-change-for-each-graph/m-p/389296#M19097</link>
      <description>&lt;P&gt;This is how I name my graphic files:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods listing gpath="&amp;amp;path.\Graphiques" style=journal image_dpi=600;
ods graphics / imagename="Biomarker VG" noborder 
    reset=index height=600 width=600;
proc sgplot ....&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;This will create a graph in a square picture in a file named &amp;amp;path.\Graphiques\Biomarker VG.png with the journal style. The reset=index option forces SAS to start the creation of graphic files with Biomarker VG even if the name already exists&amp;nbsp;in the directory. Otherwise SAS would add a number suffix to the name to make it unique.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Aug 2017 04:36:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/ods-png-name-can-t-change-for-each-graph/m-p/389296#M19097</guid>
      <dc:creator>PGStats</dc:creator>
      <dc:date>2017-08-19T04:36:05Z</dc:date>
    </item>
  </channel>
</rss>

