<?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: Getting PROC FREQ Report Output With Another Format and Doing Some Additional Calculations in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275210#M58542</link>
    <description>Hi:&lt;BR /&gt;  I believe you are missing a TABULATE option. Generally, ROW=FLOAT will get rid of the "blank" header, such as you point to with your arrow. Please refer to this documenation example:&lt;BR /&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/68954/HTML/default/viewer.htm#n0fvrniil70dmin1r4keedcrilo0.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/68954/HTML/default/viewer.htm#n0fvrniil70dmin1r4keedcrilo0.htm&lt;/A&gt;&lt;BR /&gt; &lt;BR /&gt;cynthia</description>
    <pubDate>Sun, 05 Jun 2016 02:30:08 GMT</pubDate>
    <dc:creator>Cynthia_sas</dc:creator>
    <dc:date>2016-06-05T02:30:08Z</dc:date>
    <item>
      <title>Getting PROC FREQ Report Output With Another Format and Doing Some Additional Calculations</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/274990#M58527</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need to get Proc Freq report output as data set. I know that it is not possible to get the SAS procedures reports being data set with same structure. At this point, I need your help to create my desired output with alternative methods with alternative design. I created a sample data set as below and I need to get the results as data set in my following desired image.( As I mentioned as above, it shouldn't be in same view, It helps&amp;nbsp;me to reach my goal)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I get the data set then I need to make some additional calculation over consisted data set. I’m not sure whether I can do the following calculation or not.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried to express my calculation over the Excel cells. If I get the first output as data set maybe I can do the following calculation easily.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Frequency(1)/TotalFrequency(1)==&amp;gt;D6/D7==&amp;gt; 0.857143&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Frequency(0)/TotalFrequency(0)==&amp;gt;C5/C7==&amp;gt; 0.8 &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Frequency(1)/Total==&amp;gt;D6/E6==&amp;gt;0.857143&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(Frequency(0)+ Frequency(1))/(TotalFrequency(0)+ TotalFrequency(0))==&amp;gt; =(C5+D6)/(D7+C7) ==&amp;gt; 0.833333&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(Frequency(1)+ Frequency(0))/(TotalFrequency(0)+ TotalFrequency(0))==&amp;gt; =(C6+D5)/(C7+D7)==&amp;gt; 0.166667&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Data Have;
Length Target 8 Predicted 8;
Infile Datalines Missover;
Input  Target Predicted;
Datalines;
1 0
1 1
1 1
0 0
0 0
0 0
0 0
0 1
1 1
1 1
1 1
1 1
;
Run;

PROC FREQ Data=Have;
Tables Target*Predicted / TotPct;
Ods Output OneWayFreqs=Want;
Run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3480iFAA4B8030F6230E7/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="Desiredv3.png" title="Desiredv3.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you very much&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2016 15:26:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/274990#M58527</guid>
      <dc:creator>turcay</dc:creator>
      <dc:date>2016-06-03T15:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: Getting PROC FREQ Report Output With Another Format and Doing Some Additional Calculations</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/274995#M58528</link>
      <description>&lt;P&gt;Your probably best off writing it in SQL and then transposing it. You may also want to look into the sensitivity/specificity output available from proc freq.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://support.sas.com/kb/24/170.html" target="_blank"&gt;http://support.sas.com/kb/24/170.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Proc SQL;
Create table want as
Select
Sum(predicted=1 and target=1)/sum(predicted=1) as col1,
Sum(predicted=0 and target=0)/sum(predicted=0) as col2,
Etc....

From have:
Quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Jun 2016 15:44:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/274995#M58528</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-06-03T15:44:40Z</dc:date>
    </item>
    <item>
      <title>Re: Getting PROC FREQ Report Output With Another Format and Doing Some Additional Calculations</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275040#M58532</link>
      <description>&lt;P&gt;Hello Reeza,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your suggestion, but I couldn't understand what should I do, sorry &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I also think to do some addtional steps instead of get the output directly. But I can't get proper data set to calculate "Total" columns.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Actually, If I used PROC TABULATE out= statement and then If I do PROC TRANSPASE, I get some kind of data set, if I get the following data set, I can do your calculation which you did in your previous data set. But I'm little bir confused &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Proc Tabulate DATA=Have Out=Have2;
Class Target /Order=Unformatted Missing;
Class Predicted /Order=Unformatted Missing;
Table Predicted, Target*N;
Run;
PROC TRANSPOSE DATA=Have2
	OUT=Have3
	PREFIX=Column
	NAME=Source
	LABEL=Label;
	VAR N;
	COPY Target Predicted;
RUN;
QUIT;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The foregoing code creates this data set,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3481iD4F8D9DDA82AB4AF/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="Current.png" title="Current.png" /&gt;&lt;/P&gt;
&lt;P&gt;The following output can provide me to calculate my desired output but I'm not use if it is the right method or if it is possible&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3482i64462F1A2A85FA4E/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="Intermediate.png" title="Intermediate.png" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can Lütfü Yılmazer&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2016 17:10:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275040#M58532</guid>
      <dc:creator>turcay</dc:creator>
      <dc:date>2016-06-03T17:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: Getting PROC FREQ Report Output With Another Format and Doing Some Additional Calculations</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275043#M58534</link>
      <description>&lt;P&gt;Hi again Reeza,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You want me to do this calculation over the Raw data, I understood now. &amp;nbsp;ı thought that you meant Output of Proc Freq .Let me try to reach my aim.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2016 17:21:41 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275043#M58534</guid>
      <dc:creator>turcay</dc:creator>
      <dc:date>2016-06-03T17:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: Getting PROC FREQ Report Output With Another Format and Doing Some Additional Calculations</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275056#M58536</link>
      <description>&lt;P&gt;Thank you very much Reeza,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following code provides my desired output&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC SQL;
CREATE TABLE Want AS
SELECT 
Sum(Target=1 And Predicted=1)/((Sum(Target=1 And Predicted=1))+(Sum(Target=1 And Predicted=0))) As Sensitivity
,Sum(Target=0 And Predicted=0)/((Sum(Target=0 And Predicted=1))+(Sum(Target=0 And Predicted=0))) As Specificity
,Sum(Target=1 And Predicted=1)/(Sum((Target=1 And Predicted=1))+(Sum(Target=0 And Predicted=1))) As Precision
,((Sum(Target=1 And Predicted=1))+(Sum(Target=0 And Predicted=0)))/
((Sum(Target=0 And Predicted=1))+(Sum(Target=0 And Predicted=0))+(Sum(Target=1 And Predicted=1))+(Sum(Target=1 And Predicted=0))) As Accuracy
,((Sum(Target=1 And Predicted=0))+(Sum(Target=0 And Predicted=1)))/
((Sum(Target=0 And Predicted=1))+(Sum(Target=0 And Predicted=0))+(Sum(Target=1 And Predicted=1))+(Sum(Target=1 And Predicted=0))) As ErrorRate
FROM Have;
QUIT;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Lastly,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is it possible to get just following report output &amp;nbsp;values on PROC FREQ or PROC TABULATE? Not being data set, being Report&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3483i401A415CE869A136/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="Output.png" title="Output.png" /&gt;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2016 18:06:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275056#M58536</guid>
      <dc:creator>turcay</dc:creator>
      <dc:date>2016-06-03T18:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Getting PROC FREQ Report Output With Another Format and Doing Some Additional Calculations</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275076#M58537</link>
      <description>&lt;P&gt;It may be possible in proc tabulate but it would be difficult.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would generate my dataset and then use proc report to display the data.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2016 18:57:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275076#M58537</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2016-06-03T18:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: Getting PROC FREQ Report Output With Another Format and Doing Some Additional Calculations</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275111#M58539</link>
      <description>&lt;P&gt;Proc Tabulate will show the Total-Total cell with total&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
proc tabulate data=have;
  class target predicted;
  table (target all='Total')*n="Frequency",
        predicted all='Total'
        ;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Jun 2016 20:34:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275111#M58539</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-06-03T20:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: Getting PROC FREQ Report Output With Another Format and Doing Some Additional Calculations</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275182#M58541</link>
      <description>&lt;P&gt;Vaov, ballardw, thank you very much this values are which I want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To add&amp;nbsp;some additional cosmetics in the report, is it possible to don't show the&amp;nbsp;Frequency label&amp;nbsp;or&amp;nbsp;is it possible to show the frequency column for Predicted values?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To understand me better, you can check the following output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3491i579FECB48F51A19C/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="1st.png" title="1st.png" /&gt;&lt;/P&gt;
&lt;P&gt;Or&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3492i65FA2E484FF6E86C/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="4th.png" title="4th.png" /&gt;&lt;/P&gt;
&lt;P&gt;If I write empty string, borders are still came&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc tabulate data=Have;
  class Target predicted;
  table (Target all='Total')*n="",
        predicted all='Total';
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;,Thank you&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jun 2016 11:52:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275182#M58541</guid>
      <dc:creator>turcay</dc:creator>
      <dc:date>2016-06-04T11:52:15Z</dc:date>
    </item>
    <item>
      <title>Re: Getting PROC FREQ Report Output With Another Format and Doing Some Additional Calculations</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275210#M58542</link>
      <description>Hi:&lt;BR /&gt;  I believe you are missing a TABULATE option. Generally, ROW=FLOAT will get rid of the "blank" header, such as you point to with your arrow. Please refer to this documenation example:&lt;BR /&gt;&lt;A href="http://support.sas.com/documentation/cdl/en/proc/68954/HTML/default/viewer.htm#n0fvrniil70dmin1r4keedcrilo0.htm" target="_blank"&gt;http://support.sas.com/documentation/cdl/en/proc/68954/HTML/default/viewer.htm#n0fvrniil70dmin1r4keedcrilo0.htm&lt;/A&gt;&lt;BR /&gt; &lt;BR /&gt;cynthia</description>
      <pubDate>Sun, 05 Jun 2016 02:30:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275210#M58542</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2016-06-05T02:30:08Z</dc:date>
    </item>
    <item>
      <title>Re: Getting PROC FREQ Report Output With Another Format and Doing Some Additional Calculations</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275218#M58543</link>
      <description>&lt;HR /&gt;
&lt;P&gt;turcay wrote:&lt;/P&gt;
&lt;P&gt;Vaov, ballardw, thank you very much this values are which I want.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To add&amp;nbsp;some additional cosmetics in the report, is it possible to don't show the&amp;nbsp;Frequency label&amp;nbsp;or&amp;nbsp;is it possible to show the frequency column for Predicted values?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I will say that I attempted to make the output as you requested. If you had provided the different appearance earlier I would would have put the labels in column instead of row and used the / row=float&amp;nbsp; option to suppress the empty cell for the row labels.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jun 2016 04:25:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275218#M58543</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-06-05T04:25:54Z</dc:date>
    </item>
    <item>
      <title>Re: Getting PROC FREQ Report Output With Another Format and Doing Some Additional Calculations</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275241#M58544</link>
      <description>&lt;P&gt;Ballardw,&lt;/P&gt;
&lt;P&gt;You are right, I realized my additional demand after you provided me the code, sorry. The following code&amp;nbsp;&lt;SPAN&gt;suppressed the empty cell, thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc tabulate data=Have;
  class Target predicted;
  table (Target all='Total')*n="",
        predicted all='Total'&lt;BR /&gt;/Row=Float;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN&gt;Lastly, is it possible to create the following one?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;IMG src="https://communities.sas.com/t5/image/serverpage/image-id/3493iDD5EEEAA8925747A/image-size/original?v=v2&amp;amp;px=-1" border="0" alt="original.png" title="original.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;,Thank you&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jun 2016 10:55:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275241#M58544</guid>
      <dc:creator>turcay</dc:creator>
      <dc:date>2016-06-05T10:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: Getting PROC FREQ Report Output With Another Format and Doing Some Additional Calculations</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275486#M58566</link>
      <description>&lt;P&gt;Do you want both a Row labeled "Frequency" and a Column with "Frq" or just the column label?&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2016 18:05:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275486#M58566</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2016-06-06T18:05:07Z</dc:date>
    </item>
    <item>
      <title>Re: Getting PROC FREQ Report Output With Another Format and Doing Some Additional Calculations</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275516#M58572</link>
      <description>&lt;P&gt;Hello ballardw,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your response met my demand, thank you and sorry for changing my request after you created my desired output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;</description>
      <pubDate>Mon, 06 Jun 2016 20:16:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Getting-PROC-FREQ-Report-Output-With-Another-Format-and-Doing/m-p/275516#M58572</guid>
      <dc:creator>turcay</dc:creator>
      <dc:date>2016-06-06T20:16:19Z</dc:date>
    </item>
  </channel>
</rss>

