<?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 FREQ- Create ONLY Chart in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Proc-FREQ-Create-ONLY-Chart/m-p/563029#M10829</link>
    <description>&lt;P&gt;You may need to adjust the default graphics display size such as with&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics on / height=8in;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to make a graph "taller" to prevent breaking. Width also.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you sure you want the missing value of cylinder displayed in the graph?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 31 May 2019 21:37:36 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-05-31T21:37:36Z</dc:date>
    <item>
      <title>Proc FREQ- Create ONLY Chart</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-FREQ-Create-ONLY-Chart/m-p/563007#M10821</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create a frequency chart using proc freq.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But it also prints out the table. -- I do NOT want the table printed out.&lt;/P&gt;&lt;P&gt;Also, I want all "type" to be in 1 page NOT split across multiple pages.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please advise. Here is the code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics on;
proc freq data=sashelp.cars;
	tables cylinders*type / missing norow nocol nopercent  nocum  plots(only)=freqplot(type = bar);
	where origin = "Asia" and type ne "Sedan";
run;

ods graphics off;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2019 20:22:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-FREQ-Create-ONLY-Chart/m-p/563007#M10821</guid>
      <dc:creator>david27</dc:creator>
      <dc:date>2019-05-31T20:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Proc FREQ- Create ONLY Chart</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-FREQ-Create-ONLY-Chart/m-p/563009#M10823</link>
      <description>&lt;P&gt;Add the following to keep only the plot:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ods select freqplot;&lt;/PRE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;Also, I want all "type" to be in 1 page NOT split across multiple pages.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;Not sure what you mean by that, can you please clarify.&lt;/SPAN&gt;&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/215179"&gt;@david27&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am trying to create a frequency chart using proc freq.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But it also prints out the table. -- I do NOT want the table printed out.&lt;/P&gt;
&lt;P&gt;Also, I want all "type" to be in 1 page NOT split across multiple pages.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please advise. Here is the code:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics on;
proc freq data=sashelp.cars;
	tables cylinders*type / missing norow nocol nopercent  nocum  plots(only)=freqplot(type = bar);
	where origin = "Asia" and type ne "Sedan";
run;

ods graphics off;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2019 20:26:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-FREQ-Create-ONLY-Chart/m-p/563009#M10823</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-05-31T20:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: Proc FREQ- Create ONLY Chart</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-FREQ-Create-ONLY-Chart/m-p/563029#M10829</link>
      <description>&lt;P&gt;You may need to adjust the default graphics display size such as with&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics on / height=8in;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;to make a graph "taller" to prevent breaking. Width also.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you sure you want the missing value of cylinder displayed in the graph?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2019 21:37:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-FREQ-Create-ONLY-Chart/m-p/563029#M10829</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-05-31T21:37:36Z</dc:date>
    </item>
  </channel>
</rss>

