<?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: Splitting a dataset into multiple dataset in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Splitting-a-dataset-into-multiple-dataset/m-p/7842#M211</link>
    <description>What about something like this:&lt;BR /&gt;
&lt;BR /&gt;
Change for your data.&lt;BR /&gt;
&lt;BR /&gt;
data ds1 ds2 ds3;&lt;BR /&gt;
    set sashelp.class;&lt;BR /&gt;
    if weight &amp;lt; 85 then output ds1;&lt;BR /&gt;
    else if weight &amp;gt;= 85 and weight &amp;lt;= 110 then output ds2;&lt;BR /&gt;
    else if weight &amp;gt; 110 then output ds3;&lt;BR /&gt;
 run;&lt;BR /&gt;
&lt;BR /&gt;
Nancy</description>
    <pubDate>Mon, 06 Jun 2011 19:36:20 GMT</pubDate>
    <dc:creator>SASHunter</dc:creator>
    <dc:date>2011-06-06T19:36:20Z</dc:date>
    <item>
      <title>Splitting a dataset into multiple dataset</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Splitting-a-dataset-into-multiple-dataset/m-p/7841#M210</link>
      <description>I have a dataset and I need to split this dataset based on a variable (say deptid) in it . The number of splits depends on the number of distinct departments.The name of the output dataset comes from the deptdescription.&lt;BR /&gt;
&lt;BR /&gt;
For eg:&lt;BR /&gt;
This is how my data looks now&lt;BR /&gt;
&lt;BR /&gt;
deptid deptdescription etc....... ;&lt;BR /&gt;
1 Maths&lt;BR /&gt;
2 Astronomy&lt;BR /&gt;
1 Maths&lt;BR /&gt;
3 Physics&lt;BR /&gt;
4 Public Health&lt;BR /&gt;
3 Physics&lt;BR /&gt;
.....&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
This is how I want my output&lt;BR /&gt;
&lt;BR /&gt;
Dataset named Maths&lt;BR /&gt;
1 Maths&lt;BR /&gt;
1 Maths&lt;BR /&gt;
&lt;BR /&gt;
Dataset named Astronomy&lt;BR /&gt;
2 Astronomy&lt;BR /&gt;
&lt;BR /&gt;
and Etc&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thank You.</description>
      <pubDate>Mon, 06 Jun 2011 19:07:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Splitting-a-dataset-into-multiple-dataset/m-p/7841#M210</guid>
      <dc:creator>Anu_R</dc:creator>
      <dc:date>2011-06-06T19:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a dataset into multiple dataset</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Splitting-a-dataset-into-multiple-dataset/m-p/7842#M211</link>
      <description>What about something like this:&lt;BR /&gt;
&lt;BR /&gt;
Change for your data.&lt;BR /&gt;
&lt;BR /&gt;
data ds1 ds2 ds3;&lt;BR /&gt;
    set sashelp.class;&lt;BR /&gt;
    if weight &amp;lt; 85 then output ds1;&lt;BR /&gt;
    else if weight &amp;gt;= 85 and weight &amp;lt;= 110 then output ds2;&lt;BR /&gt;
    else if weight &amp;gt; 110 then output ds3;&lt;BR /&gt;
 run;&lt;BR /&gt;
&lt;BR /&gt;
Nancy</description>
      <pubDate>Mon, 06 Jun 2011 19:36:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Splitting-a-dataset-into-multiple-dataset/m-p/7842#M211</guid>
      <dc:creator>SASHunter</dc:creator>
      <dc:date>2011-06-06T19:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a dataset into multiple dataset</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Splitting-a-dataset-into-multiple-dataset/m-p/7843#M212</link>
      <description>This will work if I know the class labels(i.e. weight 85 or 110 etc).&lt;BR /&gt;
There are over 100 classes (departments) in my dataset.&lt;BR /&gt;
&lt;BR /&gt;
I am thinking of something that will read these different classes from the dataset and split it accordingly.</description>
      <pubDate>Mon, 06 Jun 2011 20:19:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Splitting-a-dataset-into-multiple-dataset/m-p/7843#M212</guid>
      <dc:creator>Anu_R</dc:creator>
      <dc:date>2011-06-06T20:19:27Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a dataset into multiple dataset</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Splitting-a-dataset-into-multiple-dataset/m-p/7844#M213</link>
      <description>data have;&lt;BR /&gt;
  infile datalines truncover;&lt;BR /&gt;
  input deptid 1-1 deptdescription $ 3-20;&lt;BR /&gt;
datalines;&lt;BR /&gt;
1 Maths&lt;BR /&gt;
2 Astronomy&lt;BR /&gt;
1 Maths&lt;BR /&gt;
3 Physics&lt;BR /&gt;
4 Public Health&lt;BR /&gt;
3 Physics&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
proc sql noprint;&lt;BR /&gt;
  select DISTINCT &lt;BR /&gt;
    catx(' ',compress(deptdescription)),&lt;BR /&gt;
    cat('when (',deptid,') output ',compress(deptdescription),';')&lt;BR /&gt;
      into :DSnames separated by ' '&lt;BR /&gt;
          ,:WhenStatements separated by ' '&lt;BR /&gt;
    from have&lt;BR /&gt;
    order by deptid&lt;BR /&gt;
    ;&lt;BR /&gt;
quit;&lt;BR /&gt;
&lt;BR /&gt;
%put &amp;amp;DSNames;&lt;BR /&gt;
%put %bquote(&amp;amp;WhenStatements);&lt;BR /&gt;
&lt;BR /&gt;
data &amp;amp;DSNames;&lt;BR /&gt;
  set have;&lt;BR /&gt;
  select(deptid);&lt;BR /&gt;
    &amp;amp;WhenStatements&lt;BR /&gt;
    otherwise;&lt;BR /&gt;
  end;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
HTH&lt;BR /&gt;
Patrick</description>
      <pubDate>Mon, 06 Jun 2011 21:06:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Splitting-a-dataset-into-multiple-dataset/m-p/7844#M213</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2011-06-06T21:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a dataset into multiple dataset</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Splitting-a-dataset-into-multiple-dataset/m-p/7845#M214</link>
      <description>Annu,&lt;BR /&gt;
&lt;BR /&gt;
Take a look at the method suggested in the following tip:&lt;BR /&gt;
&lt;A href="http://www.listserv.uga.edu/cgi-bin/wa?A2=ind1101C&amp;amp;L=sas-l&amp;amp;P=R29917&amp;amp;D=1&amp;amp;H=0&amp;amp;O=D&amp;amp;T=1" target="_blank"&gt;http://www.listserv.uga.edu/cgi-bin/wa?A2=ind1101C&amp;amp;L=sas-l&amp;amp;P=R29917&amp;amp;D=1&amp;amp;H=0&amp;amp;O=D&amp;amp;T=1&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
It provides a general method, using hash, that only requires that you first sort and index the file (and shows you how to do that as well).&lt;BR /&gt;
&lt;BR /&gt;
HTH,&lt;BR /&gt;
Art&lt;BR /&gt;
&amp;gt; This will work if I know the class labels(i.e. weight&lt;BR /&gt;
&amp;gt; 85 or 110 etc).&lt;BR /&gt;
&amp;gt; There are over 100 classes (departments) in my&lt;BR /&gt;
&amp;gt; dataset.&lt;BR /&gt;
&amp;gt; &lt;BR /&gt;
&amp;gt; I am thinking of something that will read these&lt;BR /&gt;
&amp;gt; different classes from the dataset and split it&lt;BR /&gt;
&amp;gt; accordingly.</description>
      <pubDate>Mon, 06 Jun 2011 21:07:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Splitting-a-dataset-into-multiple-dataset/m-p/7845#M214</guid>
      <dc:creator>art297</dc:creator>
      <dc:date>2011-06-06T21:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a dataset into multiple dataset</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Splitting-a-dataset-into-multiple-dataset/m-p/7846#M215</link>
      <description>For a third method take a look at&lt;BR /&gt;
&lt;A href="http://www.sascommunity.org/wiki/Automatically_Separating_Data_into_Excel_Sheets" target="_blank"&gt;http://www.sascommunity.org/wiki/Automatically_Separating_Data_into_Excel_Sheets&lt;/A&gt;&lt;BR /&gt;
The article is similar to what you are doing.</description>
      <pubDate>Tue, 07 Jun 2011 04:36:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Splitting-a-dataset-into-multiple-dataset/m-p/7846#M215</guid>
      <dc:creator>ArtC</dc:creator>
      <dc:date>2011-06-07T04:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: Splitting a dataset into multiple dataset</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Splitting-a-dataset-into-multiple-dataset/m-p/399904#M66679</link>
      <description>&lt;P&gt;This is an approach to put all observations of the same Deptid value into separate data sets named&amp;nbsp;from the Datadescription variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;　&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;data&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; have;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;infile&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; datalines &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;truncover&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;input&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; @&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; deptid &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; deptdescription $ &amp;amp; &lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;3&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;-&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;20&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;datalines&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;1 Maths&lt;/P&gt;
&lt;P&gt;2 Astronomy&lt;/P&gt;
&lt;P&gt;1 Maths&lt;/P&gt;
&lt;P&gt;3 Physics&lt;/P&gt;
&lt;P&gt;4 Public Health&lt;/P&gt;
&lt;P&gt;3 Physics&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;run&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;/* Sort by Deptid so first./last. logic can be used in the next step */&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;proc&lt;/FONT&gt;&lt;/STRONG&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;sort&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;data&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;=have;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;by&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; deptid;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;run&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;/* CALL SYMPUTX creates macro variables &amp;amp;Subj1, &amp;amp;Subj2, etc from the&amp;nbsp;values of Deptdescription.*/&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;/* The total unique values of Deptdescription are stored in &amp;amp;Total&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; */&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;data&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;_null_&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;set&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; have;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;by&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; deptid;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;if&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; first.deptid &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;then&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;do&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt; i+&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;call&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; symputx(&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'subj'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;|| left(put(i,&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;2.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;)),deptdescription);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;end&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;if&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; last.deptid &lt;/FONT&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;then&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;call&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; symputx(&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;'total'&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;,i);&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;run&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;/* Within a macro %DO loop the data sets are created and those observations with the same */&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;/* Deptdescription values are read with a WHERE clause&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;*/&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;%macro&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; &lt;STRONG&gt;&lt;I&gt;test&lt;/I&gt;&lt;/STRONG&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;%do&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; i=&lt;/FONT&gt;&lt;STRONG&gt;&lt;FONT color="#008080" face="Courier New" size="2"&gt;1&lt;/FONT&gt;&lt;/STRONG&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;%to&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; &amp;amp;total;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;data &amp;amp;&amp;amp;subj&amp;amp;i;&lt;/P&gt;
&lt;P&gt;set have;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt; where deptdescription=&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;"&amp;amp;&amp;amp;subj&amp;amp;i"&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;%end&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;%mend&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT face="Courier New" size="2"&gt; test;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;/* invoke the macro */&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;%&lt;STRONG&gt;&lt;I&gt;test&lt;/I&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Sep 2017 19:38:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Splitting-a-dataset-into-multiple-dataset/m-p/399904#M66679</guid>
      <dc:creator>kmw</dc:creator>
      <dc:date>2017-09-29T19:38:17Z</dc:date>
    </item>
  </channel>
</rss>

