<?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 and transpose with multiple classes and variables in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889922#M39566</link>
    <description>&lt;P&gt;You can use PROC SUMMARY.&lt;/P&gt;
&lt;P&gt;Let's introduce some macro variables to give you more flexibility.&lt;/P&gt;
&lt;P&gt;One to have the list of grouping variables and a second to have the list of analysis variables.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let groups=region class1;
%let vars=sex weightclass ;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Now we can use those to generate a PROC SUMMARY call.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc summary data=have chartype completetypes;
 class &amp;amp;vars &amp;amp;groups ;
 types %sysfunc(translate(&amp;amp;groups,*,%str( )))*(&amp;amp;vars);
 output out=summary;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;We can process that output to generate some variable names.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data for_transpose;
  set summary;
  index=indexc(_type_,'1');
  length _name_ $32;
  _name_=scan("&amp;amp;vars",index,' ');
  _name_=catx('_',_name_,vvaluex(_name_));
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Now we can transpose that.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort;
  by &amp;amp;groups _type_;
run;

proc transpose data=for_transpose out=want(drop=_name_ );
  by &amp;amp;groups;
  id _name_;
  var _freq_;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Result&lt;/P&gt;
&lt;PRE&gt;                           weightclass_    weightclass_    weightclass_
Obs    region    class1          1               2               3         sex_F    sex_M

 1        0         0            1               0               2           2        1
 2        0         1            0               1               0           0        1
 3        1         0            0               0               0           0        0
 4        1         1            0               1               0           0        1
&lt;/PRE&gt;
&lt;P&gt;If you really want missing values instead of zeros then add this line to the FOR_TRANSPOSE data step.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;  if _freq_=0 then _freq_=.;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 18 Aug 2023 16:01:30 GMT</pubDate>
    <dc:creator>Tom</dc:creator>
    <dc:date>2023-08-18T16:01:30Z</dc:date>
    <item>
      <title>Proc freq and transpose with multiple classes and variables</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889819#M39551</link>
      <description>&lt;P&gt;Hi guys,&amp;nbsp; suppose to have the following:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;class1       class2      region      weightclass       sex        
  0             1          0            1               M      
  0             0          0            3               F
  1             1          1            2               M
  0             0          0            3               F
  1             1          0            2               M&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;would like to do proc freq of weightclass and sex by class1, class2 and region and then I would like to transpose. With a single variable I do the following:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE&gt;proc sort data=mydata;
             by class1 class2 region weightclass;
              proc freq noprint data=mydata;
             by class1 class2 region;
              table weightclass/ out=freqs;
              proc transpose data=freqs out=db(drop=_name_ _label_) prefix=var_;
              by class1 class2 region;
              id weightclass;
      var count;
run;         &lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How would it become if I add sex together with weightclass? I don't want the cross-product (weigtclass*sex) but only stratifications by class1 class2 region.&lt;/P&gt;
&lt;P&gt;Thank you in advance&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit: with only class1 (to simplify) desired output:&amp;nbsp;&lt;/P&gt;
&lt;TABLE style="border-collapse: collapse; width: 455pt;" border="0" width="455" cellspacing="0" cellpadding="0"&gt;
&lt;TBODY&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD width="65" height="15" class="xl63" style="height: 15.0pt; width: 65pt;"&gt;Region&lt;/TD&gt;
&lt;TD width="65" class="xl63" style="width: 65pt;"&gt;class1&lt;/TD&gt;
&lt;TD width="65" class="xl63" style="width: 65pt;"&gt;weightclass1&lt;/TD&gt;
&lt;TD width="65" class="xl63" style="width: 65pt;"&gt;weightclass2&lt;/TD&gt;
&lt;TD width="65" class="xl63" style="width: 65pt;"&gt;weightclass3&lt;/TD&gt;
&lt;TD width="65" class="xl63" style="width: 65pt;"&gt;sexM&lt;/TD&gt;
&lt;TD width="65" class="xl63" style="width: 65pt;"&gt;sexF&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="15" class="xl63" style="height: 15.0pt;"&gt;0&lt;/TD&gt;
&lt;TD class="xl63"&gt;0&lt;/TD&gt;
&lt;TD class="xl63"&gt;1&lt;/TD&gt;
&lt;TD class="xl63"&gt;na&lt;/TD&gt;
&lt;TD class="xl63"&gt;2&lt;/TD&gt;
&lt;TD class="xl63"&gt;1&lt;/TD&gt;
&lt;TD class="xl63"&gt;2&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="15" class="xl63" style="height: 15.0pt;"&gt;1&lt;/TD&gt;
&lt;TD class="xl63"&gt;0&lt;/TD&gt;
&lt;TD class="xl63"&gt;na&lt;/TD&gt;
&lt;TD class="xl63"&gt;1&lt;/TD&gt;
&lt;TD class="xl63"&gt;na&lt;/TD&gt;
&lt;TD class="xl63"&gt;1&lt;/TD&gt;
&lt;TD class="xl63"&gt;na&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="15" class="xl63" style="height: 15.0pt;"&gt;0&lt;/TD&gt;
&lt;TD class="xl63"&gt;1&lt;/TD&gt;
&lt;TD class="xl63"&gt;na&lt;/TD&gt;
&lt;TD class="xl63"&gt;na&lt;/TD&gt;
&lt;TD class="xl63"&gt;na&lt;/TD&gt;
&lt;TD class="xl63"&gt;na&lt;/TD&gt;
&lt;TD class="xl63"&gt;na&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR style="height: 15.0pt;"&gt;
&lt;TD height="15" class="xl63" style="height: 15.0pt;"&gt;1&lt;/TD&gt;
&lt;TD class="xl63"&gt;1&lt;/TD&gt;
&lt;TD class="xl63"&gt;na&lt;/TD&gt;
&lt;TD class="xl63"&gt;1&lt;/TD&gt;
&lt;TD class="xl63"&gt;na&lt;/TD&gt;
&lt;TD class="xl63"&gt;1&lt;/TD&gt;
&lt;TD class="xl63"&gt;na&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;Note that, for weightclass3 as well as for sexF, 2 is because there are two records corresponding to region= 0 and class1 = 0&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 14:02:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889819#M39551</guid>
      <dc:creator>NewUsrStat</dc:creator>
      <dc:date>2023-08-18T14:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: Proc freq and transpose with multiple classes and variables</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889821#M39552</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq noprint data=mydata;
    by class1 class2 region;
    table weightclass/out=freqs1;
    table sex/out=freqs2;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I assume you know how transpose these two data sets.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 10:18:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889821#M39552</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-08-18T10:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: Proc freq and transpose with multiple classes and variables</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889838#M39553</link>
      <description>No, how to transpose is also an issue for me. Btw thank you very much!&lt;BR /&gt;</description>
      <pubDate>Fri, 18 Aug 2023 12:05:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889838#M39553</guid>
      <dc:creator>NewUsrStat</dc:creator>
      <dc:date>2023-08-18T12:05:48Z</dc:date>
    </item>
    <item>
      <title>Re: Proc freq and transpose with multiple classes and variables</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889842#M39554</link>
      <description>&lt;P&gt;I cannot tell what output you want from that input.&lt;/P&gt;
&lt;P&gt;I am not sure I get the distinct between a cross product and a stratification when talking about PROC FREQ.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Perhaps you should switch to PROC MEANS?&amp;nbsp; That can also count and you have full control over the combinations of class variables.&amp;nbsp; To get all combinations of variables try:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  input class1 class2 region weightclass sex $;
cards;
0 1 0 1 M
0 0 0 3 F
1 1 1 2 M
0 0 0 3 F
1 1 0 2 M
;

proc summary data=have chartype ;
  class _all_;
  output out=ways;
run;

proc print;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can either filter by the _TYPE_ variable or use the WAYS or TYPES statement to limit the combinations that are produced.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 12:38:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889842#M39554</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-08-18T12:38:17Z</dc:date>
    </item>
    <item>
      <title>Re: Proc freq and transpose with multiple classes and variables</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889851#M39555</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/134532"&gt;@NewUsrStat&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;No, how to transpose is also an issue for me. Btw thank you very much!&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;since you don't state what the desired result of this transpose is, we need you to provide a clear explanation of what you want and what the desired output is&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 13:01:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889851#M39555</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2023-08-18T13:01:40Z</dc:date>
    </item>
    <item>
      <title>Re: Proc freq and transpose with multiple classes and variables</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889869#M39556</link>
      <description>Ok I will edit soon</description>
      <pubDate>Fri, 18 Aug 2023 13:34:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889869#M39556</guid>
      <dc:creator>NewUsrStat</dc:creator>
      <dc:date>2023-08-18T13:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: Proc freq and transpose with multiple classes and variables</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889876#M39558</link>
      <description>&lt;P&gt;I'm not able to edit I don't know why. Btw&lt;BR /&gt;regarding proc transpose I just need to add together with id "weightclass", the id "sex". I tried simply adding the word but it doesn't work. Is there a way to do proc transpose one time for both variables that will be concatenated by columns? Let say: if I run the code for one variable it runs perfectly. I just want to run it for two variables without writing the code two times.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 13:48:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889876#M39558</guid>
      <dc:creator>NewUsrStat</dc:creator>
      <dc:date>2023-08-18T13:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: Proc freq and transpose with multiple classes and variables</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889879#M39560</link>
      <description>&lt;P&gt;Just make a new post with the expected output for the input you posted.&lt;/P&gt;
&lt;P&gt;Here is the data you posted before:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
  input class1 class2 region weightclass sex $;
cards;
0 1 0 1 M
0 0 0 3 F
1 1 1 2 M
0 0 0 3 F
1 1 0 2 M
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;You can use the same type of simple data step to post the output you want.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 13:49:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889879#M39560</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-08-18T13:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: Proc freq and transpose with multiple classes and variables</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889884#M39561</link>
      <description>Edited successfully for the output</description>
      <pubDate>Fri, 18 Aug 2023 14:03:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889884#M39561</guid>
      <dc:creator>NewUsrStat</dc:creator>
      <dc:date>2023-08-18T14:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: Proc freq and transpose with multiple classes and variables</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889916#M39564</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/134532"&gt;@NewUsrStat&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I'm not able to edit I don't know why. Btw&lt;BR /&gt;regarding proc transpose I just need to add together with id "weightclass", the id "sex". I tried simply adding the word but it doesn't work. Is there a way to do proc transpose one time for both variables that will be concatenated by columns? Let say: if I run the code for one variable it runs perfectly. I just want to run it for two variables without writing the code two times.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Doesn't work is awful vague.&lt;BR /&gt;&lt;BR /&gt;Are there errors in the log?: Post the code and log in a code box opened with the "&amp;lt;/&amp;gt;" to maintain formatting of error messages.&lt;BR /&gt;&lt;BR /&gt;No output? Post any log in a code box.&lt;BR /&gt;&lt;BR /&gt;Unexpected output? Provide input data in the form of data step code pasted into a code box, the actual results and the expected results. Instructions here: &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt; will show how to turn an existing SAS data set into data step code that can be pasted into a forum code box using the "&amp;lt;/&amp;gt;" icon or attached as text to show exactly what you have and that we can test code against.&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 15:31:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889916#M39564</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2023-08-18T15:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: Proc freq and transpose with multiple classes and variables</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889918#M39565</link>
      <description>&lt;P&gt;Seems simple enough with TABULATE.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc tabulate data=have;
 class class1 class2 region weightclass sex ;
 table region*class1
     , weightclass*N sex*N
 ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Tom_0-1692372961221.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/86820i929915EFC4B49643/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Tom_0-1692372961221.png" alt="Tom_0-1692372961221.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Aug 2023 15:36:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889918#M39565</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-08-18T15:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: Proc freq and transpose with multiple classes and variables</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889922#M39566</link>
      <description>&lt;P&gt;You can use PROC SUMMARY.&lt;/P&gt;
&lt;P&gt;Let's introduce some macro variables to give you more flexibility.&lt;/P&gt;
&lt;P&gt;One to have the list of grouping variables and a second to have the list of analysis variables.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;%let groups=region class1;
%let vars=sex weightclass ;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Now we can use those to generate a PROC SUMMARY call.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc summary data=have chartype completetypes;
 class &amp;amp;vars &amp;amp;groups ;
 types %sysfunc(translate(&amp;amp;groups,*,%str( )))*(&amp;amp;vars);
 output out=summary;
run;
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;We can process that output to generate some variable names.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data for_transpose;
  set summary;
  index=indexc(_type_,'1');
  length _name_ $32;
  _name_=scan("&amp;amp;vars",index,' ');
  _name_=catx('_',_name_,vvaluex(_name_));
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Now we can transpose that.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sort;
  by &amp;amp;groups _type_;
run;

proc transpose data=for_transpose out=want(drop=_name_ );
  by &amp;amp;groups;
  id _name_;
  var _freq_;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Result&lt;/P&gt;
&lt;PRE&gt;                           weightclass_    weightclass_    weightclass_
Obs    region    class1          1               2               3         sex_F    sex_M

 1        0         0            1               0               2           2        1
 2        0         1            0               1               0           0        1
 3        1         0            0               0               0           0        0
 4        1         1            0               1               0           0        1
&lt;/PRE&gt;
&lt;P&gt;If you really want missing values instead of zeros then add this line to the FOR_TRANSPOSE data step.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;  if _freq_=0 then _freq_=.;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 18 Aug 2023 16:01:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889922#M39566</guid>
      <dc:creator>Tom</dc:creator>
      <dc:date>2023-08-18T16:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: Proc freq and transpose with multiple classes and variables</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889923#M39567</link>
      <description>Thank you very much Tom! It works perfectly!</description>
      <pubDate>Fri, 18 Aug 2023 16:16:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Proc-freq-and-transpose-with-multiple-classes-and-variables/m-p/889923#M39567</guid>
      <dc:creator>NewUsrStat</dc:creator>
      <dc:date>2023-08-18T16:16:43Z</dc:date>
    </item>
  </channel>
</rss>

