<?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: Simplifying PROC FREQ output in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/625052#M77397</link>
    <description>&lt;P&gt;Are you just looking to see how often each pair of variables are both true for the same observation?&lt;/P&gt;
&lt;P&gt;Perhaps you could just count it yourself.&lt;/P&gt;
&lt;P&gt;I made a sample dataset with 100 observations of 5 boolean variables X1 to X5.&lt;/P&gt;
&lt;P&gt;Here is code to count the number of times each pair was both true.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let n=5 ;

data pairs;
  set have end=eof;
  array x [&amp;amp;n];
  array pairs [%sysfunc(comb(&amp;amp;n,2))] _temporary_;
  index=0;
  do lower=1 to &amp;amp;n-1;
   do upper=lower+1 to &amp;amp;n;
     index=index+1;
     if x[lower] and x[upper] then pairs[index]=sum(pairs[index],1);
   end;
  end;
  if eof then do;
    index=0;
    totaln=_n_;
    do lower=1 to &amp;amp;n-1;
      do upper=lower+1 to &amp;amp;n;
        index=index+1;
        count=pairs[index];
        percent=count/totaln;
        output;
      end;
    end;
  end;
  keep lower upper totaln count percent;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;Obs    lower    upper    totaln    count    percent

  1      1        2        100       25       0.25
  2      1        3        100       28       0.28
  3      1        4        100       20       0.20
  4      1        5        100       21       0.21
  5      2        3        100       22       0.22
  6      2        4        100       20       0.20
  7      2        5        100       19       0.19
  8      3        4        100       30       0.30
  9      3        5        100       24       0.24
 10      4        5        100       24       0.24&lt;/PRE&gt;</description>
    <pubDate>Sun, 16 Feb 2020 00:13:00 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2020-02-16T00:13:00Z</dc:date>
    <item>
      <title>Simplifying PROC FREQ output</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/624810#M77382</link>
      <description>&lt;P&gt;I have a table designed like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ID&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HCC_1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;HCC_2....&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; HCC_254&lt;/P&gt;&lt;P&gt;313&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;1&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It has 58k rows and 129 columns. One column is the ID field (the key) and the other 128 columns are binary (1 or&amp;nbsp;0)&amp;nbsp;indicators.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Essentially I'm trying to figure out the frequency that any two indicators are both 1 for all the records vs. one of them being 0.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I use the following code my SAS freezes:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC FREQ DATA=WORK.HCC_COMBORID_STEP3;
TABLES (HCC_1 -- HCC_254) * (HCC_1 -- HCC_254);
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I can make this project workable by just doing this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC FREQ DATA=WORK.HCC_COMBORID_STEP3;
TABLES (HCC_1) * (HCC_1 -- HCC_254);
where hcc_1 = 1;
RUN;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But that would mean doing that 128 times and that seems wildly inefficient.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions for how I can simplify this?&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2020 13:24:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/624810#M77382</guid>
      <dc:creator>rlafond</dc:creator>
      <dc:date>2020-02-14T13:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: Simplifying PROC FREQ output</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/624828#M77383</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;Essentially I'm trying to figure out the frequency that any two indicators are both 1 for all the records vs. one of them being 0.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Any two?? Meaning you need examine all 254*253/2 pairs? Or do you just need to know that an observation has 2 ones and 252 zeros? Can you explain this further?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2020 13:42:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/624828#M77383</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-02-14T13:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: Simplifying PROC FREQ output</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/624829#M77384</link>
      <description>&lt;P&gt;Every record in my table has 128 binary indicators. My goal is to find patterns in the table by identifying frequently paired indicators (1,1), so I'm trying to evaluate all 129*128 combinations. Does that make sense?&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2020 13:43:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/624829#M77384</guid>
      <dc:creator>rlafond</dc:creator>
      <dc:date>2020-02-14T13:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: Simplifying PROC FREQ output</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/624835#M77385</link>
      <description>&lt;P&gt;Your original statement said 254 variables. So this remains a point of confusion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nevertheless, to find "frequently paired indicators" I would think you are going to want to create some large output data set which you can then narrow down to the "frequently paired indicators", whatever that means.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* UNTESTED CODE */

ods select none;
ods&amp;nbsp;output&amp;nbsp;crosstabfreqs=freqs;
proc&amp;nbsp;freq&amp;nbsp;data=have;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;tables&amp;nbsp;(hcc_1-hcc_128)*(hcc_1-hcc_128);
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Data set FREQS will be huge, and this may take a long time to run, but it should have all the information you need.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2020 13:57:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/624835#M77385</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-02-14T13:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: Simplifying PROC FREQ output</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/624837#M77386</link>
      <description>&lt;P&gt;Thank you, I'm trying it now. I apologize for the confusion about the column naming convention and how I presented it. The names are deliberate but it was misleading.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2020 14:00:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/624837#M77386</guid>
      <dc:creator>rlafond</dc:creator>
      <dc:date>2020-02-14T14:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: Simplifying PROC FREQ output</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/624861#M77387</link>
      <description>&lt;P&gt;You don't give any indication of how sparse your data may be populated with multiple 1 values in the data.&lt;/P&gt;
&lt;P&gt;So the first thing I might try would be to see if reducing the data to records with 2 or more ones may help. Easily done:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data temp;
   set have;
   array b  hcc_1-hcc_128;
   totalones = sum(of b(*));
   if totalones ge 2;
run;&lt;/PRE&gt;
&lt;P&gt;If this data set has significantly reduced the number of records that might help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another approach might be to look at clustering procedures to find similar clusters of values of your binary variables.&lt;/P&gt;
&lt;P&gt;Something like:&lt;/P&gt;
&lt;PRE&gt;proc fastclus data=have;
   var hcc_1 - hcc_128;
run;&lt;/PRE&gt;
&lt;P&gt;Without a MAXCLUSTER option on the proc statement the procedure will try to find 100 clusters of similar combinations of the variables. You might want to consider using the reduced data set I suggested as the data source.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Feb 2020 15:27:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/624861#M77387</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-02-14T15:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Simplifying PROC FREQ output</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/625038#M77395</link>
      <description>&lt;P&gt;Suggestion:&amp;nbsp; switch from PROC FREQ to PROC CORR.&amp;nbsp; It has a better chance of finishing, and probably gives you a better way of searching for meaningful patterns.&amp;nbsp; Here's an example of why that would be.&amp;nbsp; Perhaps some of your variables might look like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0&amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;HCC_1&amp;nbsp; 25&amp;nbsp; &amp;nbsp;25&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;HCC_2&amp;nbsp; 25&amp;nbsp; &amp;nbsp;25&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;HCC_3&amp;nbsp; 78&amp;nbsp; &amp;nbsp; 1&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;HCC_4&amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp;20&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So PROC FREQ would reveal that HCC_1 and HCC_2 have a 25% chance of matching "1" values.&amp;nbsp; Yet their relationship is statistically random.&amp;nbsp; It would reveal that HCC_3 and HCC_4 match on "1" only 20% of the time.&amp;nbsp; Yet their relationship is compelling.&amp;nbsp; PROC CORR would reveal this, while PROC FREQ would not.&lt;/P&gt;</description>
      <pubDate>Sat, 15 Feb 2020 21:07:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/625038#M77395</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2020-02-15T21:07:46Z</dc:date>
    </item>
    <item>
      <title>Re: Simplifying PROC FREQ output</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/625050#M77396</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4954"&gt;@Astounding&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Suggestion:&amp;nbsp; switch from PROC FREQ to PROC CORR.&amp;nbsp; It has a better chance of finishing, and probably gives you a better way of searching for meaningful patterns.&amp;nbsp; Here's an example of why that would be.&amp;nbsp; Perhaps some of your variables might look like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0&amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;HCC_1&amp;nbsp; 25&amp;nbsp; &amp;nbsp;25&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;HCC_2&amp;nbsp; 25&amp;nbsp; &amp;nbsp;25&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;HCC_3&amp;nbsp; 78&amp;nbsp; &amp;nbsp; 1&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="courier new,courier"&gt;HCC_4&amp;nbsp; &amp;nbsp;1&amp;nbsp; &amp;nbsp;20&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So PROC FREQ would reveal that HCC_1 and HCC_2 have a 25% chance of matching "1" values.&amp;nbsp; Yet their relationship is statistically random.&amp;nbsp; It would reveal that HCC_3 and HCC_4 match on "1" only 20% of the time.&amp;nbsp; Yet their relationship is compelling.&amp;nbsp; PROC CORR would reveal this, while PROC FREQ would not.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I originally thought this might be a good idea, but as I thought about it more, if the question is to find the prevalence of when BOTH of the two variables are 1, then correlations won't do it, because it will (in layman's terms) treat (0,0) as correlation and (1,1) as correlation, and (0,1) and (1,0) as "not correlation". Which isn't the same as the original question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then I thought about arrays and looping, which could then determine if both variables in the pair equal 1. But, there are some problems here because you need an output array that has variables named something like HCC_1xHCC_2, HCC_1xHCC_3 and so on until all possible pairs are created. That's a lot of typing, don't make any mistakes. But wait ... you could create a macro loop that creates a macro variable with all of these variable names, and then use the macro variable in an ARRAY statement. Well, that's still a lot of programming, and so I return to the idea above of PROC FREQ with ODS output and then parsing the resulting data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you could also get tricky with PROC GLMMOD and perhaps accomplish this. GLMMOD will create variables named for all the interactions of HCC_n and HCC_m (or maybe those go in an output data set as a label, I don't really remember). But I'm not sure it will then do the proper determination that both pairs of variables are 1. Experimentation might be required!!&lt;/P&gt;</description>
      <pubDate>Sat, 15 Feb 2020 23:40:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/625050#M77396</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-02-15T23:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: Simplifying PROC FREQ output</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/625052#M77397</link>
      <description>&lt;P&gt;Are you just looking to see how often each pair of variables are both true for the same observation?&lt;/P&gt;
&lt;P&gt;Perhaps you could just count it yourself.&lt;/P&gt;
&lt;P&gt;I made a sample dataset with 100 observations of 5 boolean variables X1 to X5.&lt;/P&gt;
&lt;P&gt;Here is code to count the number of times each pair was both true.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let n=5 ;

data pairs;
  set have end=eof;
  array x [&amp;amp;n];
  array pairs [%sysfunc(comb(&amp;amp;n,2))] _temporary_;
  index=0;
  do lower=1 to &amp;amp;n-1;
   do upper=lower+1 to &amp;amp;n;
     index=index+1;
     if x[lower] and x[upper] then pairs[index]=sum(pairs[index],1);
   end;
  end;
  if eof then do;
    index=0;
    totaln=_n_;
    do lower=1 to &amp;amp;n-1;
      do upper=lower+1 to &amp;amp;n;
        index=index+1;
        count=pairs[index];
        percent=count/totaln;
        output;
      end;
    end;
  end;
  keep lower upper totaln count percent;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;Obs    lower    upper    totaln    count    percent

  1      1        2        100       25       0.25
  2      1        3        100       28       0.28
  3      1        4        100       20       0.20
  4      1        5        100       21       0.21
  5      2        3        100       22       0.22
  6      2        4        100       20       0.20
  7      2        5        100       19       0.19
  8      3        4        100       30       0.30
  9      3        5        100       24       0.24
 10      4        5        100       24       0.24&lt;/PRE&gt;</description>
      <pubDate>Sun, 16 Feb 2020 00:13:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/625052#M77397</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-02-16T00:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: Simplifying PROC FREQ output</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/625053#M77398</link>
      <description>&lt;P&gt;If that is what you want you can also ask PROC TRANSPOSE and PROC SQL to help you get it.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc transpose data=have out=step1;
  by id;
  var x1-x5;
run;

proc sql ;
  create table pairs2 as 
  select a._name_ as lower
       , b._name_ as upper 
       , sum(a.col1*b.col1) as count
  from step1 a inner join step1 b
    on a.id=b.id and a._name_ &amp;lt; b._name_
  group by lower,upper
  ;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;Obs    lower    upper    count

  1     x1       x2        25
  2     x1       x3        28
  3     x1       x4        20
  4     x1       x5        21
  5     x2       x3        22
  6     x2       x4        20
  7     x2       x5        19
  8     x3       x4        30
  9     x3       x5        24
 10     x4       x5        24
&lt;/PRE&gt;</description>
      <pubDate>Sun, 16 Feb 2020 00:27:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/625053#M77398</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2020-02-16T00:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Simplifying PROC FREQ output</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/625055#M77399</link>
      <description>&lt;P&gt;Brilliant!&lt;/P&gt;
&lt;DIV id="tap-translate"&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Sun, 16 Feb 2020 01:33:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Simplifying-PROC-FREQ-output/m-p/625055#M77399</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-02-16T01:33:36Z</dc:date>
    </item>
  </channel>
</rss>

