<?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 summary for duplicate values in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/proc-summary-for-duplicate-values/m-p/696255#M33606</link>
    <description>&lt;A href="https://communities.sas.com/t5/General-SAS-Programming/6-ways-of-removing-duplicate/td-p/124984" target="_blank"&gt;https://communities.sas.com/t5/General-SAS-Programming/6-ways-of-removing-duplicate/td-p/124984&lt;/A&gt;</description>
    <pubDate>Tue, 03 Nov 2020 16:33:50 GMT</pubDate>
    <dc:creator>BrahmanandaRao</dc:creator>
    <dc:date>2020-11-03T16:33:50Z</dc:date>
    <item>
      <title>proc summary for duplicate values</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-summary-for-duplicate-values/m-p/696125#M33594</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;how to remove duplicate values using proc summary and proc tabulate give example&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Nov 2020 09:19:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-summary-for-duplicate-values/m-p/696125#M33594</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2020-11-03T09:19:58Z</dc:date>
    </item>
    <item>
      <title>Re: proc summary for duplicate values</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-summary-for-duplicate-values/m-p/696126#M33595</link>
      <description>&lt;P&gt;Why do you want to use either of those to remove duplicates in your data?&lt;/P&gt;</description>
      <pubDate>Tue, 03 Nov 2020 09:21:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-summary-for-duplicate-values/m-p/696126#M33595</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2020-11-03T09:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: proc summary for duplicate values</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-summary-for-duplicate-values/m-p/696129#M33596</link>
      <description>for best practice</description>
      <pubDate>Tue, 03 Nov 2020 09:28:23 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-summary-for-duplicate-values/m-p/696129#M33596</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2020-11-03T09:28:23Z</dc:date>
    </item>
    <item>
      <title>Re: proc summary for duplicate values</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-summary-for-duplicate-values/m-p/696134#M33597</link>
      <description>&lt;P&gt;Best practice is to use PROC SORT with NODUPKEY, a DATA step with FIRST. or LAST., or SQL with DISTINCT, depending on your data structure and the details of your needs.&lt;/P&gt;
&lt;P&gt;(PS if that was an interviewer's question, he/she wants the above as answer; the fact that you even think about trying such stupidity during an interview immediately exposes you as a SAS noob).&lt;/P&gt;</description>
      <pubDate>Tue, 03 Nov 2020 09:58:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-summary-for-duplicate-values/m-p/696134#M33597</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-11-03T09:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: proc summary for duplicate values</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-summary-for-duplicate-values/m-p/696236#M33605</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/265860"&gt;@BrahmanandaRao&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi Guys,&lt;/P&gt;
&lt;P&gt;how to remove duplicate values using proc summary and proc tabulate give example&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Proc SUMMARY summarizes numeric values and could be done so for groups of BY or Class variables. Not really removing duplicates.&lt;/P&gt;
&lt;P&gt;Proc tabulate by default creates a report for people to read and removes nothing and the output data sets created by Proc tabulate are structured quite a bit differently than you might expect, not a good tool for "removing duplicates" in my opinion but useful for certain restructuring issues. Additionally since Proc Tabulate can have multiple Table descriptions in a single procedure the output data set can be quite complicated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So a very explicit detailed example of starting data and desired result are needed to properly answer a question.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Nov 2020 15:45:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-summary-for-duplicate-values/m-p/696236#M33605</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2020-11-03T15:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: proc summary for duplicate values</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/proc-summary-for-duplicate-values/m-p/696255#M33606</link>
      <description>&lt;A href="https://communities.sas.com/t5/General-SAS-Programming/6-ways-of-removing-duplicate/td-p/124984" target="_blank"&gt;https://communities.sas.com/t5/General-SAS-Programming/6-ways-of-removing-duplicate/td-p/124984&lt;/A&gt;</description>
      <pubDate>Tue, 03 Nov 2020 16:33:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/proc-summary-for-duplicate-values/m-p/696255#M33606</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2020-11-03T16:33:50Z</dc:date>
    </item>
  </channel>
</rss>

