<?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 proc freq for only zero values in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/proc-freq-for-only-zero-values/m-p/937711#M368440</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=sashelp.cars;
tables make*origin/norow nocol nopercent nocum sparse;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hi Experts,&lt;/P&gt;
&lt;P&gt;I want to get only zero values from sashelp.cars using proc freq make and origin wise from above code not give zero values&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 31 Jul 2024 06:13:42 GMT</pubDate>
    <dc:creator>pavank</dc:creator>
    <dc:date>2024-07-31T06:13:42Z</dc:date>
    <item>
      <title>proc freq for only zero values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-freq-for-only-zero-values/m-p/937711#M368440</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc freq data=sashelp.cars;
tables make*origin/norow nocol nopercent nocum sparse;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hi Experts,&lt;/P&gt;
&lt;P&gt;I want to get only zero values from sashelp.cars using proc freq make and origin wise from above code not give zero values&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2024 06:13:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-freq-for-only-zero-values/m-p/937711#M368440</guid>
      <dc:creator>pavank</dc:creator>
      <dc:date>2024-07-31T06:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: proc freq for only zero values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-freq-for-only-zero-values/m-p/937712#M368441</link>
      <description>&lt;P&gt;Post the desired output you are looking for.&lt;/P&gt;
&lt;P&gt;Check 'WANT' table whether it is the output you want or not ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc freq data=sashelp.cars noprint;
tables make*origin/norow nocol nopercent nocum sparse out=want(where=(COUNT=0)) ;
run;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2024 06:39:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-freq-for-only-zero-values/m-p/937712#M368441</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-07-31T06:39:02Z</dc:date>
    </item>
    <item>
      <title>Re: proc freq for only zero values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-freq-for-only-zero-values/m-p/937713#M368442</link>
      <description>&lt;PRE&gt;Make	Origin	Frequency
Acura	Europe	0
Acura	USA	0
Audi	Asia	0
Audi	USA	0
BMW	Asia	0
BMW	USA	0
Buick	Asia	0
Buick	Europe	0
Cadillac	Asia	0
Cadillac	Europe	0
Chevrolet	Asia	0
Chevrolet	Europe	0
Chrysler	Asia	0
Chrysler	Europe	0
Dodge	Asia	0
Dodge	Europe	0
Ford	Asia	0
Ford	Europe	0
GMC	Asia	0
GMC	Europe	0
Honda	Europe	0
Honda	USA	0
Hummer	Asia	0
Hummer	Europe	0
Hyundai	Europe	0
Hyundai	USA	0
Infiniti	Europe	0
Infiniti	USA	0
Isuzu	Europe	0
Isuzu	USA	0
Jaguar	Asia	0
Jaguar	USA	0
Jeep	Asia	0
Jeep	Europe	0
Kia	Europe	0
Kia	USA	0
Land Rover	Asia	0
Land Rover	USA	0
Lexus	Europe	0
Lexus	USA	0
Lincoln	Asia	0
Lincoln	Europe	0
MINI	Asia	0
MINI	USA	0
Mazda	Europe	0
Mazda	USA	0
Mercedes-Benz	Asia	0
Mercedes-Benz	USA	0
Mercury	Asia	0
Mercury	Europe	0
Mitsubishi	Europe	0
Mitsubishi	USA	0
Nissan	Europe	0
Nissan	USA	0
Oldsmobile	Asia	0
Oldsmobile	Europe	0
Pontiac	Asia	0
Pontiac	Europe	0
Porsche	Asia	0
Porsche	USA	0
Saab	Asia	0
Saab	USA	0
Saturn	Asia	0
Saturn	Europe	0
Scion	Europe	0
Scion	USA	0
Subaru	Europe	0
Subaru	USA	0
Suzuki	Europe	0
Suzuki	USA	0
Toyota	Europe	0
Toyota	USA	0
Volkswagen	Asia	0
Volkswagen	USA	0
Volvo	Asia	0
Volvo	USA	0
&lt;/PRE&gt;</description>
      <pubDate>Wed, 31 Jul 2024 06:48:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-freq-for-only-zero-values/m-p/937713#M368442</guid>
      <dc:creator>pavank</dc:creator>
      <dc:date>2024-07-31T06:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: proc freq for only zero values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/proc-freq-for-only-zero-values/m-p/937718#M368444</link>
      <description>&lt;P&gt;Check the "WANT" table generated by my code.&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="Ksharp_0-1722411384128.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/98857iB737CACAAEDFB85E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1722411384128.png" alt="Ksharp_0-1722411384128.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jul 2024 07:36:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/proc-freq-for-only-zero-values/m-p/937718#M368444</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2024-07-31T07:36:33Z</dc:date>
    </item>
  </channel>
</rss>

