<?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: remove observation and its associated observations in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562833#M10792</link>
    <description>&lt;P&gt;Yes, no problem &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In step 1, I create a hash object and fill it with the &lt;STRONG&gt;lopnr&amp;nbsp;&lt;/STRONG&gt;values for which case=1 and transp=1.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In step 2, I simply read the Micro2 data set one obs at the time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Step three, i use the Hash Object&amp;nbsp;&lt;A href="https://documentation.sas.com/?docsetId=lecompobjref&amp;amp;docsetTarget=p05xq2t4hac4ivn187tai050d5c2.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;Check Method&lt;/A&gt;&amp;nbsp;twice. Once, to search for the current &lt;STRONG&gt;lopnr&amp;nbsp;&lt;/STRONG&gt;value in the hash object and once to search for the current &lt;STRONG&gt;lopnr_fall&amp;nbsp;&lt;/STRONG&gt;value. If one of those searches are succesful, the method returns a positive non-zero value. Thus, I use the Min Function to check if they both fail the search. And if they do both fail the search, I output the observation.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data confused;
   /* 1 */
   if _N_ = 1 then do;
      declare hash h(dataset:'Micro2(where=(case=1 &amp;amp; transp=1))');
      h.defineKey('lopnr');
      h.defineDone();
   end;
   /* 2 */
   set micro2;
   /* 3 */
   if min(h.check(), h.check(key:lopnr_fall)) gt 0;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 31 May 2019 13:22:31 GMT</pubDate>
    <dc:creator>PeterClemmensen</dc:creator>
    <dc:date>2019-05-31T13:22:31Z</dc:date>
    <item>
      <title>remove observation and its associated observations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562511#M10754</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In this toy court data (have) I would like to remove all observations where the suspect (&lt;CODE class=" language-sas"&gt;suspect &lt;/CODE&gt;= 1) has been charged (&lt;CODE class=" language-sas"&gt;charged&lt;/CODE&gt; = 1), further, I also want to remove their respective witnesses (witnes_for_suspect), i.e. remove all suspects and their witnesses from the records and be left with observations where the charges haven't been made (&lt;CODE class=" language-sas"&gt;charged&lt;/CODE&gt; = 0).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The &lt;CODE class=" language-sas"&gt;id &lt;/CODE&gt;column is unique and applies to everyone in the data. The column &lt;CODE class=" language-sas"&gt;suspect &lt;/CODE&gt;shows who is a suspect (suspect = 1) and who is a witness (suspect = 0). The&amp;nbsp;&lt;CODE class=" language-sas"&gt;witnes_for_suspect &lt;/CODE&gt;column is not unique, it borrows information from the&amp;nbsp;&lt;CODE class=" language-sas"&gt;id &lt;/CODE&gt;column, and is useful to show to which suspect (their &lt;CODE class=" language-sas"&gt;id &lt;/CODE&gt;) a given witness belongs. e.g. the suspect (id = 1) has two witnesses (ids = 2 and 3) and has been charged (charged = 1) hence should be removed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input id witnes_for_suspect suspect charged;
cards;
1     .  1  1
2     1  0  0
3     1  0  0
4     .  1  1
5     4  0  0
6     4  0  0
7     4  0  0
8     .  1  0
9     8  0  0
10     8  0  0
11     8  0  0
12     8  0  0
;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output data (want) should be:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want;
input id witnes_to_suspect suspect charged;
cards;
8     .  1  0
9     8  0  0
10     8  0  0
11     8  0  0
12     8  0  0
;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for any help!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2019 11:02:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562511#M10754</guid>
      <dc:creator>Solsidan</dc:creator>
      <dc:date>2019-05-30T11:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: remove observation and its associated observations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562524#M10756</link>
      <description>&lt;P&gt;One way&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data want(drop=rc);
   if _N_ = 1 then do;
      declare hash h();
      h.defineKey('id');
      h.defineDone();
   end;

   set have end=lr;

   if suspect=1 &amp;amp; charged=1 then rc=h.add();
   if min(h.check(), h.check(key:witnes_for_suspect)) gt 0;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 30 May 2019 11:30:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562524#M10756</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-05-30T11:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: remove observation and its associated observations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562527#M10758</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;&amp;nbsp; Thank you for the attempt and maybe I misunderstand your code or I didn't clarify what i need.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, it seems the code provided does not yield the expected result.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The suspects with id = 1 and id = 4 have been charged (charged = 1), and therefore they, together with their witnesses (ids (2,3) and ids(5,6,7 respectively) should not be in the dataset want. The dataset want should only have the observations created in the second code I posted.&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2019 12:00:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562527#M10758</guid>
      <dc:creator>Solsidan</dc:creator>
      <dc:date>2019-05-30T12:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: remove observation and its associated observations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562530#M10760</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/265869"&gt;@Solsidan&lt;/a&gt;,&amp;nbsp;my code creates exactly the result you want &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The below code&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input id witnes_for_suspect suspect charged;
cards;
1     .  1  1
2     1  0  0
3     1  0  0
4     .  1  1
5     4  0  0
6     4  0  0
7     4  0  0
8     .  1  0
9     8  0  0
10     8  0  0
11     8  0  0
12     8  0  0
;
run;

data want(drop=rc);
   if _N_ = 1 then do;
      declare hash h();
      h.defineKey('id');
      h.defineDone();
   end;

   set have end=lr;

   if suspect=1 &amp;amp; charged=1 then rc=h.add();
   if min(h.check(), h.check(key:witnes_for_suspect)) gt 0;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Creates the data set below. If this is not correct, please explain how the data below differs from your posted 'want' data set &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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-left" image-alt="Capture.PNG" style="width: 558px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/29880iF6E154A42FD89D0F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2019 12:05:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562530#M10760</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-05-30T12:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: remove observation and its associated observations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562534#M10762</link>
      <description>&lt;P&gt;Thank you &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt; - you were absolutely right! Sorry &lt;img id="mansad" class="emoticon emoticon-mansad" src="https://communities.sas.com/i/smilies/16x16_man-sad.png" alt="Man Sad" title="Man Sad" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I figured out where the bug was:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In creating the toy dataset, I changed the variable name (from "&lt;CODE class=" language-sas"&gt;witnes&lt;FONT color="#FF0000"&gt;_&lt;STRONG&gt;to&lt;/STRONG&gt;_&lt;/FONT&gt;suspect&lt;/CODE&gt;" to "&lt;CODE class=" language-sas"&gt;witnes&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;_for_&lt;/FONT&gt;&lt;/STRONG&gt;suspect&lt;/CODE&gt;") on the "Insert SAS code" window so that it reads better, and that alas was the bug. So when I ran your code with my data which has the variable name "&lt;CODE class=" language-sas"&gt;witnes_to_suspect&lt;/CODE&gt;" it gave wrong results. Very dumb of me &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your time and code!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input id witnes_to_suspect suspect charged;
cards;
1     .  1  1
2     1  0  0
3     1  0  0
4     .  1  1
5     4  0  0
6     4  0  0
7     4  0  0
8     .  1  0
9     8  0  0
10     8  0  0
11     8  0  0
12     8  0  0
;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 30 May 2019 12:26:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562534#M10762</guid>
      <dc:creator>Solsidan</dc:creator>
      <dc:date>2019-05-30T12:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: remove observation and its associated observations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562536#M10763</link>
      <description>&lt;P&gt;Ah ok. Makes sense. No problem, glad you found your answer &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 May 2019 12:30:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562536#M10763</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-05-30T12:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: remove observation and its associated observations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562784#M10789</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;Sorry to drag you back to this, but perhaps you can help me figure out what am doing wrong in applying your code. I am afraid I have now tangled myself as I tried to apply your kindly provided code to several datasets (with tens of thousands of observations) that share similar structure to the toy dataset - but it does not seem to work as it did on the toy dataset. Of course it works perfectly fine on the toy dataset, no question, but I think it must be that I really don't understand what your code is doing for me to tweak it to work on other datasets.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I apply it to a new sample data, the code only removes the suspects (cases) who have been charged (transp) but not their witnesses (lopnr_fall). id of course is lopnr.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I attach the new dataset and adapted code for you to try. The expected result is only observations with lopnr/lopnr_fall = 52.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data confused (drop=rc);
   if _N_ = 1 then do;
      declare hash h();
      h.defineKey('lopnr');
      h.defineDone();
   end;

   set micro2 end=lr;

   if case=1 &amp;amp; transp=1 then rc=h.add();
   if min(h.check(), h.check(key:lopnr_fall)) gt 0;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 31 May 2019 06:56:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562784#M10789</guid>
      <dc:creator>Solsidan</dc:creator>
      <dc:date>2019-05-31T06:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: remove observation and its associated observations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562794#M10790</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/265869"&gt;@Solsidan&lt;/a&gt;&amp;nbsp;no problem &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; In the initial solution, I assume that the data is sorted. This is not the case in your actual data. I should have handled that from the beginning.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Anyway, you can do this instead. It is simpler &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data confused;
   if _N_ = 1 then do;
      declare hash h(dataset:'Micro2(where=(case=1 &amp;amp; transp=1))');
      h.defineKey('lopnr');
      h.defineDone();
   end;

   set micro2;

   if min(h.check(), h.check(key:lopnr_fall)) gt 0;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Which gives&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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-left" image-alt="Capture.PNG" style="width: 408px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/29917i2653529EC9173DD5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2019 07:40:21 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562794#M10790</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-05-31T07:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: remove observation and its associated observations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562830#M10791</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31304"&gt;@PeterClemmensen&lt;/a&gt;Many thanks, this works!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Of all the things I tried to and planeed to troubleshoot with, sorting was/would not have been one of them. Amazing how such a humble step has great implications.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you kindly walk me though your code, so I and perhaps others (like me) in future will understand it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again for all your time!&lt;/P&gt;</description>
      <pubDate>Fri, 31 May 2019 13:15:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562830#M10791</guid>
      <dc:creator>Solsidan</dc:creator>
      <dc:date>2019-05-31T13:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: remove observation and its associated observations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562833#M10792</link>
      <description>&lt;P&gt;Yes, no problem &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In step 1, I create a hash object and fill it with the &lt;STRONG&gt;lopnr&amp;nbsp;&lt;/STRONG&gt;values for which case=1 and transp=1.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In step 2, I simply read the Micro2 data set one obs at the time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In Step three, i use the Hash Object&amp;nbsp;&lt;A href="https://documentation.sas.com/?docsetId=lecompobjref&amp;amp;docsetTarget=p05xq2t4hac4ivn187tai050d5c2.htm&amp;amp;docsetVersion=9.4&amp;amp;locale=en" target="_self"&gt;Check Method&lt;/A&gt;&amp;nbsp;twice. Once, to search for the current &lt;STRONG&gt;lopnr&amp;nbsp;&lt;/STRONG&gt;value in the hash object and once to search for the current &lt;STRONG&gt;lopnr_fall&amp;nbsp;&lt;/STRONG&gt;value. If one of those searches are succesful, the method returns a positive non-zero value. Thus, I use the Min Function to check if they both fail the search. And if they do both fail the search, I output the observation.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data confused;
   /* 1 */
   if _N_ = 1 then do;
      declare hash h(dataset:'Micro2(where=(case=1 &amp;amp; transp=1))');
      h.defineKey('lopnr');
      h.defineDone();
   end;
   /* 2 */
   set micro2;
   /* 3 */
   if min(h.check(), h.check(key:lopnr_fall)) gt 0;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 31 May 2019 13:22:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562833#M10792</guid>
      <dc:creator>PeterClemmensen</dc:creator>
      <dc:date>2019-05-31T13:22:31Z</dc:date>
    </item>
    <item>
      <title>Re: remove observation and its associated observations</title>
      <link>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562893#M10804</link>
      <description>Clearly explained, thank you!</description>
      <pubDate>Fri, 31 May 2019 15:56:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/remove-observation-and-its-associated-observations/m-p/562893#M10804</guid>
      <dc:creator>Solsidan</dc:creator>
      <dc:date>2019-05-31T15:56:05Z</dc:date>
    </item>
  </channel>
</rss>

