<?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: Formatting a PROC FREQ table in ODS and Base Reporting</title>
    <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Formatting-a-PROC-FREQ-table/m-p/534988#M22366</link>
    <description>&lt;P&gt;So, where is this frequency occurring then?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Provide at least some code of what you are currently doing as we a flying pretty blind.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In general if you want to make plots best is to create an output data set from whatever procedure and plot that. Then there would be a variable representing a value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or if you are attempting to manipulate a DATALABEL value then we need more details as some plots will allow setting a format for some data labels.&lt;/P&gt;</description>
    <pubDate>Tue, 12 Feb 2019 20:27:16 GMT</pubDate>
    <dc:creator>ballardw</dc:creator>
    <dc:date>2019-02-12T20:27:16Z</dc:date>
    <item>
      <title>Formatting a PROC FREQ table</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Formatting-a-PROC-FREQ-table/m-p/534924#M22360</link>
      <description>Is there any way to format the y-axis of a graph creating in PROC FREQ OR PROC SGPLOT? Since I have a large numeric range for the value on my y-axis, I want to add a comma to the numeric format. Instead of presenting the intervals as 10000, 20000, 30000, etc, I want to show them as 10,000, 20,000, 30,000, etc.&lt;BR /&gt;&lt;BR /&gt;Any assistance would be greatly appreciated. Thanks.</description>
      <pubDate>Tue, 12 Feb 2019 17:04:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Formatting-a-PROC-FREQ-table/m-p/534924#M22360</guid>
      <dc:creator>greg6363</dc:creator>
      <dc:date>2019-02-12T17:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting a PROC FREQ table</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Formatting-a-PROC-FREQ-table/m-p/534928#M22362</link>
      <description>SGPLOT will take the format of the variable and will be much easier to customize compared to the PROC FREQ output.</description>
      <pubDate>Tue, 12 Feb 2019 17:22:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Formatting-a-PROC-FREQ-table/m-p/534928#M22362</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-02-12T17:22:07Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting a PROC FREQ table</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Formatting-a-PROC-FREQ-table/m-p/534942#M22363</link>
      <description>&lt;P&gt;Example with a data set you should have available:&lt;/P&gt;
&lt;PRE&gt;proc sgplot data=sashelp.cars;
   scatter x=weight y=msrp;
   format msrp comma6.;
   yaxis values=(10000 to 100000 by 10000, 150000, 200000);
run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;A YAXIS statement with Values=() option can specify specific values you want to&amp;nbsp; appear on the axis. Do not list the values with commas though as the comma is used to delimit values in the list.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 17:59:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Formatting-a-PROC-FREQ-table/m-p/534942#M22363</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-02-12T17:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting a PROC FREQ table</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Formatting-a-PROC-FREQ-table/m-p/534967#M22365</link>
      <description>The problem is that i’m trying to format the frequency which isn’t a variable in the dataset which means I can’t declare it in a format statement.</description>
      <pubDate>Tue, 12 Feb 2019 19:19:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Formatting-a-PROC-FREQ-table/m-p/534967#M22365</guid>
      <dc:creator>greg6363</dc:creator>
      <dc:date>2019-02-12T19:19:20Z</dc:date>
    </item>
    <item>
      <title>Re: Formatting a PROC FREQ table</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Formatting-a-PROC-FREQ-table/m-p/534988#M22366</link>
      <description>&lt;P&gt;So, where is this frequency occurring then?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Provide at least some code of what you are currently doing as we a flying pretty blind.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In general if you want to make plots best is to create an output data set from whatever procedure and plot that. Then there would be a variable representing a value.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or if you are attempting to manipulate a DATALABEL value then we need more details as some plots will allow setting a format for some data labels.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Feb 2019 20:27:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Formatting-a-PROC-FREQ-table/m-p/534988#M22366</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-02-12T20:27:16Z</dc:date>
    </item>
  </channel>
</rss>

