<?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: Frequency table in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Frequency-table/m-p/768432#M30817</link>
    <description>&lt;P&gt;I agree! I want to change the percents to decimal.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 18 Sep 2021 16:49:56 GMT</pubDate>
    <dc:creator>398740</dc:creator>
    <dc:date>2021-09-18T16:49:56Z</dc:date>
    <item>
      <title>Frequency table</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Frequency-table/m-p/768429#M30815</link>
      <description>&lt;P&gt;Is there a way to modify this code for the frequency table so that the percent is displayed as proportions?&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc freq DATA=x;&lt;BR /&gt;tables y;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Sep 2021 16:32:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Frequency-table/m-p/768429#M30815</guid>
      <dc:creator>398740</dc:creator>
      <dc:date>2021-09-18T16:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: Frequency table</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Frequency-table/m-p/768431#M30816</link>
      <description>&lt;P&gt;????&lt;/P&gt;
&lt;P&gt;The Percent column IS giving the proportions.&lt;/P&gt;
&lt;P&gt;Submit this and tell us what you would like to see instead:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC FREQ data=sashelp.class;
 tables sex;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sat, 18 Sep 2021 16:44:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Frequency-table/m-p/768431#M30816</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-09-18T16:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: Frequency table</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Frequency-table/m-p/768432#M30817</link>
      <description>&lt;P&gt;I agree! I want to change the percents to decimal.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 18 Sep 2021 16:49:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Frequency-table/m-p/768432#M30817</guid>
      <dc:creator>398740</dc:creator>
      <dc:date>2021-09-18T16:49:56Z</dc:date>
    </item>
    <item>
      <title>Re: Frequency table</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Frequency-table/m-p/768433#M30818</link>
      <description>&lt;P&gt;You mean, like this??&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC FREQ data=sashelp.class noprint;
 tables sex / out=work.count;
run;
data work.count;
 set work.count;
 proportion=percent/100;
run;
proc print data=work.count;
run;
/* end of program */&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Sat, 18 Sep 2021 16:58:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Frequency-table/m-p/768433#M30818</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2021-09-18T16:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Frequency table</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Frequency-table/m-p/768434#M30819</link>
      <description>&lt;P&gt;Yes! Thank you so much, Koen.&lt;/P&gt;</description>
      <pubDate>Sat, 18 Sep 2021 17:05:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Frequency-table/m-p/768434#M30819</guid>
      <dc:creator>398740</dc:creator>
      <dc:date>2021-09-18T17:05:02Z</dc:date>
    </item>
  </channel>
</rss>

