<?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: More than 50 variables using proc freq in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/More-than-50-variables-using-proc-freq/m-p/577538#M75519</link>
    <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4954"&gt;@Astounding&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/104359"&gt;@Tommy1&lt;/a&gt;&amp;nbsp; thank you for your prompt responses!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I am looking for all possible combinations of missing data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just ran a smaller example with only 5 of my variables and this is the output I got.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2019-07-29 at 5.00.39 PM.png" style="width: 308px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/31401i12D39FB976FEDE7F/image-dimensions/308x122?v=v2" width="308" height="122" role="button" title="Screen Shot 2019-07-29 at 5.00.39 PM.png" alt="Screen Shot 2019-07-29 at 5.00.39 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In the end, what I would like to have is this same table, but using all 85 variables. Please excuse my lack of clarity. I hope it makes more sense now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/104359"&gt;@Tommy1&lt;/a&gt;&amp;nbsp;This is the first time I see that procedure. I see that it is similar to what I am looking for, but will it also show me the counts and proportions as shown in the table I just posted?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 29 Jul 2019 21:18:45 GMT</pubDate>
    <dc:creator>_see</dc:creator>
    <dc:date>2019-07-29T21:18:45Z</dc:date>
    <item>
      <title>More than 50 variables using proc freq</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/More-than-50-variables-using-proc-freq/m-p/577523#M75515</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am fairly new to SAS. I am attempting to create a missing data matrix, but I am running into this while using PROC FREQ:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ERROR: N-way tables disallowed for N&amp;gt;50.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was thinking of simply dividing that part of the code into 2 separate steps, but then the final missing count I am looking for would be off in the resulting tables. Is there a way to run this procedure with more than 50 variables at a time?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the code I am using...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;/* Missing data matrix */&lt;BR /&gt;&lt;BR /&gt;data psm; set psm;&lt;BR /&gt;array ori{*} age dxage rheumdx diseaseactivity web_gen&lt;BR /&gt;web_rheum eligibility visit_fb_r visit_tw_r visit_ig_r&lt;BR /&gt;visit_bl_r visit_oth_r view_fb_r view_tw_r view_ig_r&lt;BR /&gt;view_bl_r view_oth_r viewreason1_r viewreason2_r viewreason3_r&lt;BR /&gt;viewreason4_r viewreason5_r viewreason6_r viewreason7_r viewreason8_r&lt;BR /&gt;viewreason9_r viewreason10_r viewreason11_r post_fb_r post_tw_r&lt;BR /&gt;post_ig_r post_bl_r post_oth_r dx_specific_accnt_r postrheum_anon_r&lt;BR /&gt;postreason1_r postreason2_r postreason3_r postreason4_r postreason5_r&lt;BR /&gt;postreason6_r result1_r result2_r result3_r result4_r&lt;BR /&gt;result5_r result6_r result7_r discuss_rheum_r discuss_family_r&lt;BR /&gt;discuss_child_r nopostreason1 nopostreason2 nopostreason3 nopostreason4&lt;BR /&gt;nopostreason5 reasonshare1 reasonshare2 reasonshare3 reasonshare4&lt;BR /&gt;c_global1 c_global2 c_global3 c_global4 c_global5&lt;BR /&gt;c_global6 c_global7 p_global1 p_global2 p_global3&lt;BR /&gt;p_global4 p_global5 p_global6 p_global7 p_global8&lt;BR /&gt;p_global9 p_global10 p_informational1 p_informational2 p_informational3&lt;BR /&gt;p_informational4 p_informational5 p_informational6 p_informational7 p_informational8;&lt;BR /&gt;array ind{*} xx1 xx2 xx3 xx4 xx5 xx6 xx7 xx8 xx9 xx10&lt;BR /&gt;xx11 xx12 xx13 xx14 xx15 xx16 xx17 xx18 xx19 xx20&lt;BR /&gt;xx21 xx22 xx23 xx24 xx25 xx26 xx27 xx28 xx29 xx30&lt;BR /&gt;xx31 xx32 xx33 xx34 xx35 xx36 xx37 xx38 xx39 xx40&lt;BR /&gt;xx41 xx42 xx43 xx44 xx45 xx46 xx47 xx48 xx49 xx50&lt;BR /&gt;xx51 xx52 xx53 xx54 xx55 xx56 xx57 xx58 xx59 xx60&lt;BR /&gt;xx61 xx62 xx63 xx64 xx65 xx66 xx67 xx68 xx69 xx70&lt;BR /&gt;xx71 xx72 xx73 xx74 xx75 xx76 xx77 xx78 xx79 xx80&lt;BR /&gt;xx81 xx82 xx83 xx84 xx85;&lt;BR /&gt;do i=1 to dim(ori);&lt;BR /&gt;if ori{i} in (999,.) then ind{i}=0; else ind{i}=1;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;BR /&gt;proc freq data=psm noprint; tables&lt;BR /&gt;xx1*xx2*xx3*xx4*xx5*xx6*xx7*xx8*xx9*xx10*xx11*xx12*xx13*xx14*xx15*&lt;BR /&gt;xx16*xx17*xx18*xx19*xx20*xx21*xx22*xx23*xx24*xx25*xx26*xx27*xx28*xx29*xx30*&lt;BR /&gt;xx31*xx32*xx33*xx34*xx35*xx36*xx37*xx38*xx39*xx40*xx41*xx42*xx43*xx44*xx45*&lt;BR /&gt;xx46*xx47*xx48*xx49*xx50*xx51*xx52*xx53*xx54*xx55*xx56*xx57*xx58*xx59*xx60*&lt;BR /&gt;xx61*xx62*xx63*xx64*xx65*xx66*xx67*xx68*xx69*xx70*xx71*xx72*xx73*xx74*xx75*&lt;BR /&gt;xx76*xx77*xx78*xx79*xx80*xx81*xx82*xx83*xx84*xx85&lt;BR /&gt;/ missing norow nocol nopercent&lt;BR /&gt;out=psm_miss; run;&lt;BR /&gt;proc print data=psm_miss; run;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 20:30:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/More-than-50-variables-using-proc-freq/m-p/577523#M75515</guid>
      <dc:creator>_see</dc:creator>
      <dc:date>2019-07-29T20:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: More than 50 variables using proc freq</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/More-than-50-variables-using-proc-freq/m-p/577531#M75516</link>
      <description>&lt;P&gt;You're looking for missing across all variables? For each row or all possible combinations?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you make a smaller example, say 5 variables and show what your input data looks like and output data?&lt;/P&gt;
&lt;P&gt;I have some macros that do missing but I don't think it's quite what you're looking for?&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/283296"&gt;@_see&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello all,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am fairly new to SAS. I am attempting to create a missing data matrix, but I am running into this while using PROC FREQ:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR: N-way tables disallowed for N&amp;gt;50.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was thinking of simply dividing that part of the code into 2 separate steps, but then the final missing count I am looking for would be off in the resulting tables. Is there a way to run this procedure with more than 50 variables at a time?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is the code I am using...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;/* Missing data matrix */&lt;BR /&gt;&lt;BR /&gt;data psm; set psm;&lt;BR /&gt;array ori{*} age dxage rheumdx diseaseactivity web_gen&lt;BR /&gt;web_rheum eligibility visit_fb_r visit_tw_r visit_ig_r&lt;BR /&gt;visit_bl_r visit_oth_r view_fb_r view_tw_r view_ig_r&lt;BR /&gt;view_bl_r view_oth_r viewreason1_r viewreason2_r viewreason3_r&lt;BR /&gt;viewreason4_r viewreason5_r viewreason6_r viewreason7_r viewreason8_r&lt;BR /&gt;viewreason9_r viewreason10_r viewreason11_r post_fb_r post_tw_r&lt;BR /&gt;post_ig_r post_bl_r post_oth_r dx_specific_accnt_r postrheum_anon_r&lt;BR /&gt;postreason1_r postreason2_r postreason3_r postreason4_r postreason5_r&lt;BR /&gt;postreason6_r result1_r result2_r result3_r result4_r&lt;BR /&gt;result5_r result6_r result7_r discuss_rheum_r discuss_family_r&lt;BR /&gt;discuss_child_r nopostreason1 nopostreason2 nopostreason3 nopostreason4&lt;BR /&gt;nopostreason5 reasonshare1 reasonshare2 reasonshare3 reasonshare4&lt;BR /&gt;c_global1 c_global2 c_global3 c_global4 c_global5&lt;BR /&gt;c_global6 c_global7 p_global1 p_global2 p_global3&lt;BR /&gt;p_global4 p_global5 p_global6 p_global7 p_global8&lt;BR /&gt;p_global9 p_global10 p_informational1 p_informational2 p_informational3&lt;BR /&gt;p_informational4 p_informational5 p_informational6 p_informational7 p_informational8;&lt;BR /&gt;array ind{*} xx1 xx2 xx3 xx4 xx5 xx6 xx7 xx8 xx9 xx10&lt;BR /&gt;xx11 xx12 xx13 xx14 xx15 xx16 xx17 xx18 xx19 xx20&lt;BR /&gt;xx21 xx22 xx23 xx24 xx25 xx26 xx27 xx28 xx29 xx30&lt;BR /&gt;xx31 xx32 xx33 xx34 xx35 xx36 xx37 xx38 xx39 xx40&lt;BR /&gt;xx41 xx42 xx43 xx44 xx45 xx46 xx47 xx48 xx49 xx50&lt;BR /&gt;xx51 xx52 xx53 xx54 xx55 xx56 xx57 xx58 xx59 xx60&lt;BR /&gt;xx61 xx62 xx63 xx64 xx65 xx66 xx67 xx68 xx69 xx70&lt;BR /&gt;xx71 xx72 xx73 xx74 xx75 xx76 xx77 xx78 xx79 xx80&lt;BR /&gt;xx81 xx82 xx83 xx84 xx85;&lt;BR /&gt;do i=1 to dim(ori);&lt;BR /&gt;if ori{i} in (999,.) then ind{i}=0; else ind{i}=1;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;BR /&gt;proc freq data=psm noprint; tables&lt;BR /&gt;xx1*xx2*xx3*xx4*xx5*xx6*xx7*xx8*xx9*xx10*xx11*xx12*xx13*xx14*xx15*&lt;BR /&gt;xx16*xx17*xx18*xx19*xx20*xx21*xx22*xx23*xx24*xx25*xx26*xx27*xx28*xx29*xx30*&lt;BR /&gt;xx31*xx32*xx33*xx34*xx35*xx36*xx37*xx38*xx39*xx40*xx41*xx42*xx43*xx44*xx45*&lt;BR /&gt;xx46*xx47*xx48*xx49*xx50*xx51*xx52*xx53*xx54*xx55*xx56*xx57*xx58*xx59*xx60*&lt;BR /&gt;xx61*xx62*xx63*xx64*xx65*xx66*xx67*xx68*xx69*xx70*xx71*xx72*xx73*xx74*xx75*&lt;BR /&gt;xx76*xx77*xx78*xx79*xx80*xx81*xx82*xx83*xx84*xx85&lt;BR /&gt;/ missing norow nocol nopercent&lt;BR /&gt;out=psm_miss; run;&lt;BR /&gt;proc print data=psm_miss; run;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 20:41:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/More-than-50-variables-using-proc-freq/m-p/577531#M75516</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2019-07-29T20:41:12Z</dc:date>
    </item>
    <item>
      <title>Re: More than 50 variables using proc freq</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/More-than-50-variables-using-proc-freq/m-p/577532#M75517</link>
      <description>&lt;P&gt;Here's a way to get what the program is attempting.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;At the end of the DATA step, combine your flags into a single variable:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;all_flags = cats(of xx1-xx85);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then run a PROC FREQ on the variable ALL_FLAGS.&amp;nbsp; (With a single variable, you could just let PROC FREQ print its results.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's not at all clear that this is what you are intending.&amp;nbsp; It's merely what your program would generate if it could work.&amp;nbsp; So if this isn't the right result, you would have to post a smaller example of what you are hoping to achieve.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;****************** EDITED:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Based on the sample table you posted, this approach should work just fine.&amp;nbsp; It might be a little work to identify the values within ALL_FLAGS, but the idea is sound.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 21:23:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/More-than-50-variables-using-proc-freq/m-p/577532#M75517</guid>
      <dc:creator>Astounding</dc:creator>
      <dc:date>2019-07-29T21:23:08Z</dc:date>
    </item>
    <item>
      <title>Re: More than 50 variables using proc freq</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/More-than-50-variables-using-proc-freq/m-p/577533#M75518</link>
      <description>&lt;P&gt;What you may be looking for is using PROC MI to create a grid describing the data.&lt;/P&gt;&lt;P&gt;&lt;A href="https://documentation.sas.com/?cdcId=pgmmvacdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=statug&amp;amp;docsetTarget=statug_mi_gettingstarted.htm&amp;amp;locale=en"&gt;https://documentation.sas.com/cdcId=pgmmvacdc&amp;amp;cdcVersion=9.4&amp;amp;docsetId=statug&amp;amp;docsetTarget=statug_mi_gettingstarted.htm&amp;amp;locale=en&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 20:52:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/More-than-50-variables-using-proc-freq/m-p/577533#M75518</guid>
      <dc:creator>Tommy1</dc:creator>
      <dc:date>2019-07-29T20:52:23Z</dc:date>
    </item>
    <item>
      <title>Re: More than 50 variables using proc freq</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/More-than-50-variables-using-proc-freq/m-p/577538#M75519</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/4954"&gt;@Astounding&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/104359"&gt;@Tommy1&lt;/a&gt;&amp;nbsp; thank you for your prompt responses!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I am looking for all possible combinations of missing data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just ran a smaller example with only 5 of my variables and this is the output I got.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2019-07-29 at 5.00.39 PM.png" style="width: 308px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/31401i12D39FB976FEDE7F/image-dimensions/308x122?v=v2" width="308" height="122" role="button" title="Screen Shot 2019-07-29 at 5.00.39 PM.png" alt="Screen Shot 2019-07-29 at 5.00.39 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In the end, what I would like to have is this same table, but using all 85 variables. Please excuse my lack of clarity. I hope it makes more sense now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/104359"&gt;@Tommy1&lt;/a&gt;&amp;nbsp;This is the first time I see that procedure. I see that it is similar to what I am looking for, but will it also show me the counts and proportions as shown in the table I just posted?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jul 2019 21:18:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/More-than-50-variables-using-proc-freq/m-p/577538#M75519</guid>
      <dc:creator>_see</dc:creator>
      <dc:date>2019-07-29T21:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: More than 50 variables using proc freq</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/More-than-50-variables-using-proc-freq/m-p/578142#M75554</link>
      <description>&lt;P&gt;Yea it will show you the frequency and proportions.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The third example here provides a good example of what it will look like&lt;/P&gt;&lt;P&gt;&lt;A href="https://stats.idre.ucla.edu/sas/faq/how-can-i-see-the-number-of-missing-values-and-patterns-of-missing-values-in-a-data-file/" target="_blank"&gt;https://stats.idre.ucla.edu/sas/faq/how-can-i-see-the-number-of-missing-values-and-patterns-of-missing-values-in-a-data-file/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2019 16:57:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/More-than-50-variables-using-proc-freq/m-p/578142#M75554</guid>
      <dc:creator>Tommy1</dc:creator>
      <dc:date>2019-07-31T16:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: More than 50 variables using proc freq</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/More-than-50-variables-using-proc-freq/m-p/578154#M75555</link>
      <description>Thanks so much! it worked</description>
      <pubDate>Wed, 31 Jul 2019 17:23:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/More-than-50-variables-using-proc-freq/m-p/578154#M75555</guid>
      <dc:creator>_see</dc:creator>
      <dc:date>2019-07-31T17:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: More than 50 variables using proc freq</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/More-than-50-variables-using-proc-freq/m-p/578357#M75557</link>
      <description>&lt;P&gt;As others have said, you can &lt;A href="https://blogs.sas.com/content/iml/2016/04/18/patterns-of-missing-data-in-sas.html" target="_self"&gt;use PROC MI to display patterns of missing values&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods select MissPattern;
proc mi data=Sashelp.Heart nimpute=0
        DISPLAYPATTERN=NOMEANS; /* this option requires SAS 9.4M5 */
   var AgeAtStart Height Weight Diastolic 
       Systolic MRW Smoking Cholesterol;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;.You can also use various &lt;A href="https://blogs.sas.com/content/iml/2017/11/29/visualize-patterns-missing-values.html" target="_self"&gt;graphical techniques to visualize patterns of missing values&lt;/A&gt;. For 50 variables, I recommend the heat map, assuming there are not too many observations.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Aug 2019 12:12:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/More-than-50-variables-using-proc-freq/m-p/578357#M75557</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2019-08-01T12:12:25Z</dc:date>
    </item>
  </channel>
</rss>

