<?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: Outputting a graph from PROC FREQ in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Outputting-a-graph-from-PROC-FREQ/m-p/226487#M14380</link>
    <description>&lt;P&gt;Thank you ! I tried it and it didn't delete the title from the plot. When I say title, I don't mean the title of the output, I mean the actual title of the plot, inside the white square of the plot. I am not sure it's even possible.&lt;/P&gt;</description>
    <pubDate>Mon, 21 Sep 2015 04:45:37 GMT</pubDate>
    <dc:creator>BlueNose</dc:creator>
    <dc:date>2015-09-21T04:45:37Z</dc:date>
    <item>
      <title>Outputting a graph from PROC FREQ</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Outputting-a-graph-from-PROC-FREQ/m-p/226441#M14375</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;At the end of my SAS programm, I have an ODS section where I send tables to an rtf file (all together). I use PROC TABULATE and PROC REPORT. If I need a part of an output (from a model for example), I save it as a dataset and then use TABULATE or REPORT to send it to the same rtf with the rest of the output. If I want a plot, easy, inside the ODS section I use SGPLOT or another procedure.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I want a MOSAIC plot. I couldn't find an easy way of plotting one besides using PROC FREQ. The question is, how do I output the plot and only the plot, to an rtf file ? In other words, can I tell SAS not to print anything from the PROC FREQ apart from the MOSAIC plot ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you !&lt;/P&gt;</description>
      <pubDate>Sun, 20 Sep 2015 11:30:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Outputting-a-graph-from-PROC-FREQ/m-p/226441#M14375</guid>
      <dc:creator>BlueNose</dc:creator>
      <dc:date>2015-09-20T11:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: Outputting a graph from PROC FREQ</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Outputting-a-graph-from-PROC-FREQ/m-p/226442#M14376</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
ods graphics on;
ods select MosaicPlot;
proc freq data=sashelp.class ;
table sex*age/plot(only)=mosaic;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 20 Sep 2015 12:23:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Outputting-a-graph-from-PROC-FREQ/m-p/226442#M14376</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-09-20T12:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: Outputting a graph from PROC FREQ</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Outputting-a-graph-from-PROC-FREQ/m-p/226443#M14377</link>
      <description>Thank you. Since I am outputting it, is it possible to delete the automatic title of the plot ? I will add my own using title2 ''....</description>
      <pubDate>Sun, 20 Sep 2015 12:43:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Outputting-a-graph-from-PROC-FREQ/m-p/226443#M14377</guid>
      <dc:creator>BlueNose</dc:creator>
      <dc:date>2015-09-20T12:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Outputting a graph from PROC FREQ</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Outputting-a-graph-from-PROC-FREQ/m-p/226444#M14378</link>
      <description>&lt;P&gt;Well, I am not expert of ODS Graphic. But you could try this :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
ods select MosaicPlot;

title1 'ssssssss';
title2 'xxxxxxxxx';
ods text=' ' ;
proc freq data=sashelp.class ;
table sex*age/plot(only)=mosaic;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 20 Sep 2015 13:02:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Outputting-a-graph-from-PROC-FREQ/m-p/226444#M14378</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2015-09-20T13:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: Outputting a graph from PROC FREQ</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Outputting-a-graph-from-PROC-FREQ/m-p/226487#M14380</link>
      <description>&lt;P&gt;Thank you ! I tried it and it didn't delete the title from the plot. When I say title, I don't mean the title of the output, I mean the actual title of the plot, inside the white square of the plot. I am not sure it's even possible.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Sep 2015 04:45:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Outputting-a-graph-from-PROC-FREQ/m-p/226487#M14380</guid>
      <dc:creator>BlueNose</dc:creator>
      <dc:date>2015-09-21T04:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: Outputting a graph from PROC FREQ</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Outputting-a-graph-from-PROC-FREQ/m-p/226550#M14384</link>
      <description>&lt;P&gt;Check &lt;A href="http://support.sas.com/documentation/cdl/en/odsug/67921/HTML/default/viewer.htm#p1vvsv8ucnjzjnn1wq5wrlp74mdb.htm" target="_blank"&gt;the NOGTITLE option&lt;/A&gt; on the ODS RTF statement.&lt;/P&gt;</description>
      <pubDate>Mon, 21 Sep 2015 13:22:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Outputting-a-graph-from-PROC-FREQ/m-p/226550#M14384</guid>
      <dc:creator>Tim_SAS</dc:creator>
      <dc:date>2015-09-21T13:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: Outputting a graph from PROC FREQ</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Outputting-a-graph-from-PROC-FREQ/m-p/226583#M14387</link>
      <description>&lt;P&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/statug/68162/HTML/default/viewer.htm#statug_templt_sect009.htm" target="_self"&gt;Use the %MODTMPLT macro&lt;/A&gt;, which is described in the SAS/STAT documentation:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title;    /* clear the title */
%modtmplt(options=replace, template=Base.Freq.Graphics.MosaicPlot, steps=t)
proc freq data=sashelp.class;
tables sex*age / plots(only)=MosaicPlot;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 21 Sep 2015 15:34:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Outputting-a-graph-from-PROC-FREQ/m-p/226583#M14387</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2015-09-21T15:34:06Z</dc:date>
    </item>
  </channel>
</rss>

