<?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: Merging two datasets by MATCHED dates in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509934#M137166</link>
    <description>&lt;P&gt;you need to fix get the incoming data so that the variables are the same type.&amp;nbsp; If a variable is defined in two datasets or incoming process's as both character and numeric they will not stack. &amp;nbsp;&lt;img id="smileyfrustrated" class="emoticon emoticon-smileyfrustrated" src="https://communities.sas.com/i/smilies/16x16_smiley-frustrated.png" alt="Smiley Frustrated" title="Smiley Frustrated" /&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 02 Nov 2018 16:01:44 GMT</pubDate>
    <dc:creator>VDD</dc:creator>
    <dc:date>2018-11-02T16:01:44Z</dc:date>
    <item>
      <title>Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509639#M137029</link>
      <description>&lt;P&gt;Hi everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am struggling&amp;nbsp;with merging two datasets by date. I have the following&amp;nbsp;datasets:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dataset DEMO:&lt;/P&gt;&lt;P&gt;PT_ID Visit_Date&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dataset Diss:&lt;/P&gt;&lt;P&gt;PT_ID Diagnosis_date ICD-Code&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;DATA DEMOA;&lt;BR /&gt;MERGE&amp;nbsp;DEMO (in=a)&lt;BR /&gt;Diss (in=b);&lt;BR /&gt;BY PT_ID;&lt;BR /&gt;if a and b;&lt;BR /&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The&amp;nbsp;resulting dataset looks&amp;nbsp;like this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;PT_ID Visit_Date&amp;nbsp; &amp;nbsp; &amp;nbsp;Diagnosis_date&amp;nbsp; &amp;nbsp;ICD-Code&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 31OCT2016&amp;nbsp; &amp;nbsp; 30OCT2016&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 599&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 31OCT2016&amp;nbsp; &amp;nbsp; 31OCT2016&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 599&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;29NOV2012&amp;nbsp; &amp;nbsp;29NOV2012&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;466&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 07SEP2014&amp;nbsp; &amp;nbsp;&amp;nbsp;24JUN2013&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 486&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&gt;I have two problems here:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1) The date in both files are not matched SOMETIMES, Is there any way that I can round the date if the (Diagnosis date) one or two days after the (ER Visit)??&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2) How can I merge the two files without repeating the observations more than once if the patient has matched date?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks,&amp;nbsp;&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 18:10:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509639#M137029</guid>
      <dc:creator>alotaibifm</dc:creator>
      <dc:date>2018-11-01T18:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509644#M137030</link>
      <description>&lt;P&gt;First you need to change&amp;nbsp;&lt;SPAN&gt;Diagnosis_date&lt;/SPAN&gt; or visit_date to the same names and add that date column to your merge.&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;Dataset DEMO:
PT_ID Visit_Date 
 
Dataset Diss:
PT_ID visit_date /*dummy name to merge on */ ICD-Code 
 
 
DATA DEMOA;
MERGE DEMO (in=a)
Diss (in=b);
BY PT_ID visit_date;
if a and b;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 01 Nov 2018 18:38:19 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509644#M137030</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2018-11-01T18:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509659#M137032</link>
      <description>&lt;P&gt;It didn't work. I have tried that option before, but gave me only 4 observations in the merged dataset, which is impossible that over 40,000 observations, only 4 observations were matched by date. I have doubled checked manually and there are a lot of observations have the same dates between the two files.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 19:02:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509659#M137032</guid>
      <dc:creator>alotaibifm</dc:creator>
      <dc:date>2018-11-01T19:02:26Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509661#M137034</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/157757"&gt;@alotaibifm&lt;/a&gt;Please post sample data in the form of a SAS dataset with datalines that represent your data in the 2 datasets that you are referencing?&amp;nbsp; You need only represent 7-10 records in each dataset to express your concerns.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 19:29:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509661#M137034</guid>
      <dc:creator>VDD</dc:creator>
      <dc:date>2018-11-01T19:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509663#M137036</link>
      <description>Is there any errors in your log? Are the variable types and formats the same?</description>
      <pubDate>Thu, 01 Nov 2018 19:42:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509663#M137036</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-11-01T19:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509668#M137040</link>
      <description>&lt;P&gt;Attached a sample of my datasets.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 20:00:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509668#M137040</guid>
      <dc:creator>alotaibifm</dc:creator>
      <dc:date>2018-11-01T20:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509670#M137042</link>
      <description>&lt;P&gt;The codes are correct but merge something I don't want. Thus, no errors on the log.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 20:03:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509670#M137042</guid>
      <dc:creator>alotaibifm</dc:creator>
      <dc:date>2018-11-01T20:03:45Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509671#M137043</link>
      <description>So when I set the formats attached to the variables, everything works correctly. Otherwise it doesn't. &lt;BR /&gt;&lt;BR /&gt;You can set the formats using:&lt;BR /&gt;&lt;BR /&gt;format _numeric_ 8.;&lt;BR /&gt;&lt;BR /&gt;libname demo 'C:\Users\fareeza.khurshed\Downloads';&lt;BR /&gt;options nofmterr;&lt;BR /&gt;&lt;BR /&gt;proc sort data=demo.erDiss; by pt_id visit_date;&lt;BR /&gt;proc sort data=demo.erdemo; by pt_id visit_date;&lt;BR /&gt;data demo;&lt;BR /&gt;set demo.erdiss;&lt;BR /&gt;format _numeric_ 8.;&lt;BR /&gt;data diss;&lt;BR /&gt;set demo.erdiss;&lt;BR /&gt;format _numeric_ 8.;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;DATA DEMOA;&lt;BR /&gt;MERGE demo (in=a)&lt;BR /&gt;Diss (in=b);&lt;BR /&gt;BY PT_ID visit_date;&lt;BR /&gt;if a and b;&lt;BR /&gt;run;</description>
      <pubDate>Thu, 01 Nov 2018 20:06:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509671#M137043</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-11-01T20:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509673#M137045</link>
      <description>&lt;P&gt;I merged the same code without changing the format and gave me the same results. only 4 observations were matched??!! I am sure 100% that there are more than 4 observations should be matched.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 20:13:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509673#M137045</guid>
      <dc:creator>alotaibifm</dc:creator>
      <dc:date>2018-11-01T20:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509675#M137046</link>
      <description>&lt;P&gt;I uploaded the datasets if you wanna have a look.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 20:15:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509675#M137046</guid>
      <dc:creator>alotaibifm</dc:creator>
      <dc:date>2018-11-01T20:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509677#M137047</link>
      <description>It's something with your data, but not sure what. Where did you originally get the data from?</description>
      <pubDate>Thu, 01 Nov 2018 20:16:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509677#M137047</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-11-01T20:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509678#M137048</link>
      <description>&lt;P&gt;I got them from the Bioinformatics department in our institution. I have received&amp;nbsp;the dataset as an excel format and each file is separate&amp;nbsp;than the other.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 20:18:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509678#M137048</guid>
      <dc:creator>alotaibifm</dc:creator>
      <dc:date>2018-11-01T20:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509679#M137049</link>
      <description>Are they actually xlsx files or csv? Did you import them using PROC IMPORT? If so, try converting the files to CSV, re-importing and I suspect this issue will go away.</description>
      <pubDate>Thu, 01 Nov 2018 20:21:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509679#M137049</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-11-01T20:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509697#M137056</link>
      <description>&lt;P&gt;The files&amp;nbsp;are CSV format. I don't think the problem in the file itself. I just need to know if it's possible to match dates, if yes, what is the appropriate codes. Thanks,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 21:13:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509697#M137056</guid>
      <dc:creator>alotaibifm</dc:creator>
      <dc:date>2018-11-01T21:13:42Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509699#M137058</link>
      <description>There's nothing wrong with the code, the problem is with the data.</description>
      <pubDate>Thu, 01 Nov 2018 21:21:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509699#M137058</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-11-01T21:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509704#M137062</link>
      <description>&lt;P&gt;can I change the date format&amp;nbsp;from the original file (excel file)? will that help?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 21:36:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509704#M137062</guid>
      <dc:creator>alotaibifm</dc:creator>
      <dc:date>2018-11-01T21:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509705#M137063</link>
      <description>Nope, your best bet is to import ID as character and ensure that dates are imported as a SAS date and then try merging it. Make sure to import your data using a data step (not proc import) and verify your types/values.</description>
      <pubDate>Thu, 01 Nov 2018 21:39:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509705#M137063</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-11-01T21:39:01Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509717#M137071</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/157757"&gt;@alotaibifm&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Attached a sample of my datasets.&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Your data shows signs of coming from Excel with date time values.&lt;/P&gt;
&lt;P&gt;When I change the format from DATE9 to best12. I see values like&amp;nbsp; 20602.772222 for visit date.&lt;/P&gt;
&lt;P&gt;You need to truncate the values so that the values are integers. The DATE9. only displays the formatted integer portion of the data but comparisons are using the decimal portion as well.&lt;/P&gt;
&lt;P&gt;Something like this in data step modifying your data is needed.&lt;/P&gt;
&lt;P&gt;Visit_date = floor(Visit_date);&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 22:19:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509717#M137071</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-11-01T22:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509718#M137072</link>
      <description>If he imported from CSV files that shouldn't have happened....</description>
      <pubDate>Thu, 01 Nov 2018 22:20:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509718#M137072</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-11-01T22:20:57Z</dc:date>
    </item>
    <item>
      <title>Re: Merging two datasets by MATCHED dates</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509721#M137075</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;If he imported from CSV files that shouldn't have happened....&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I agree that the prior steps are somewhat suspect with such values. Unless he didn't set the entire column to the correct display before doing a SAVE AS.&lt;/P&gt;
&lt;P&gt;Or perhaps another step such as taking a MEAN or similar statistic of the date field.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Nov 2018 22:24:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Merging-two-datasets-by-MATCHED-dates/m-p/509721#M137075</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-11-01T22:24:46Z</dc:date>
    </item>
  </channel>
</rss>

