<?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>stat_sas Tracker</title>
    <link>https://communities.sas.com/kntur85557/tracker</link>
    <description>stat_sas Tracker</description>
    <pubDate>Wed, 06 May 2026 00:42:28 GMT</pubDate>
    <dc:date>2026-05-06T00:42:28Z</dc:date>
    <item>
      <title>Re: Averaging count by two variables</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Averaging-count-by-two-variables/m-p/538149#M148124</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How about using sql?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;BR /&gt;select id,year(test_date) as year, avg(test_value) as avg_test_value format=8.2&lt;BR /&gt;from have&lt;BR /&gt;group by id,calculated year;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Feb 2019 22:50:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Averaging-count-by-two-variables/m-p/538149#M148124</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2019-02-24T22:50:24Z</dc:date>
    </item>
    <item>
      <title>Re: How do I Bootstrap a Custom-Made Statistic??</title>
      <link>https://communities.sas.com/t5/SAS-Studio/How-do-I-Bootstrap-a-Custom-Made-Statistic/m-p/537976#M7113</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;BR /&gt;if _n_=1 then set SRM;&lt;BR /&gt;set sample;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Sat, 23 Feb 2019 15:32:06 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Studio/How-do-I-Bootstrap-a-Custom-Made-Statistic/m-p/537976#M7113</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2019-02-23T15:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: Extracting date, month, year and time from a datetime variable</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Extracting-date-month-year-and-time-from-a-datetime-variable/m-p/536252#M147340</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something like this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;BR /&gt;set date;&lt;BR /&gt;year = substr(date,length(date)-3);&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Feb 2019 16:15:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Extracting-date-month-year-and-time-from-a-datetime-variable/m-p/536252#M147340</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2019-02-17T16:15:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do I solve the errors?</title>
      <link>https://communities.sas.com/t5/SAS-Programming/How-do-I-solve-the-errors/m-p/536114#M147293</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc tabulate data=clinic.admit7;&lt;BR /&gt; class team;&lt;BR /&gt;var startweight endweight;&lt;BR /&gt;table team,(startweight endweight)*mean;&lt;BR /&gt;run;&lt;/PRE&gt;</description>
      <pubDate>Sat, 16 Feb 2019 03:41:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/How-do-I-solve-the-errors/m-p/536114#M147293</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2019-02-16T03:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: t-test after regression by year</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/t-test-after-regression-by-year/m-p/460337#M24062</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Check frequency distribution of variable g before t-test.&lt;/P&gt;</description>
      <pubDate>Sun, 06 May 2018 23:56:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/t-test-after-regression-by-year/m-p/460337#M24062</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2018-05-06T23:56:36Z</dc:date>
    </item>
    <item>
      <title>Re: Shapiro Wilk Test and ANOVA</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Shapiro-Wilk-Test-and-ANOVA/m-p/460325#M24039</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This provides a decision boundary to decide whether a variable is normally distributed or not using&amp;nbsp;&lt;SPAN&gt;shapiro wilk based on probability of observing&amp;nbsp;shapiro statistic under the null hypothesis. Same is true for ANOVA which is used to compare means of a continuous variable across different levels of a classification variable.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 06 May 2018 21:52:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Shapiro-Wilk-Test-and-ANOVA/m-p/460325#M24039</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2018-05-06T21:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: Give the Discount to the Last column value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Give-the-Discount-to-the-Last-column-value/m-p/446926#M112211</link>
      <description>&lt;P&gt;Does this work with your initial data set?&lt;/P&gt;</description>
      <pubDate>Mon, 19 Mar 2018 19:43:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Give-the-Discount-to-the-Last-column-value/m-p/446926#M112211</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2018-03-19T19:43:15Z</dc:date>
    </item>
    <item>
      <title>Re: Give the Discount to the Last column value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Give-the-Discount-to-the-Last-column-value/m-p/446852#M112188</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure, seems like you are trying to create a variable based on 20% of last populated variable value. Please try this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want(drop=i);&lt;BR /&gt;set have;&lt;BR /&gt;array m(*) _numeric_;&lt;BR /&gt;do i=1 to dim(m);&lt;BR /&gt;&amp;nbsp; &amp;nbsp;if m(i)&amp;gt;. then Apr=0.2*m(i);&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Mar 2018 16:29:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Give-the-Discount-to-the-Last-column-value/m-p/446852#M112188</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2018-03-19T16:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: using proc standardize to put the missing value to zero</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/using-proc-standardize-to-put-the-missing-value-to-zero/m-p/443012#M28593</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try this&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc stdize data=&lt;SPAN&gt;Dataset1&lt;/SPAN&gt;(drop=&lt;SPAN&gt;var12&lt;/SPAN&gt;) reponly out=&lt;SPAN&gt;dataset2&lt;/SPAN&gt; missing=0;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Mar 2018 19:38:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/using-proc-standardize-to-put-the-missing-value-to-zero/m-p/443012#M28593</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2018-03-06T19:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: Why Proc SQL left join output duplicates values?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-Proc-SQL-left-join-output-duplicates-values/m-p/442071#M20577</link>
      <description>&lt;P&gt;For a single variable this is not a cross tab. This will be a frequency distribution of the variable id. Try this to get the freq distribution of variable id in a data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc freq data=eq;&lt;BR /&gt;tables id;&lt;BR /&gt;where z ne . ;&lt;BR /&gt;ods output OneWayFreqs=OneWayFreqs;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Mar 2018 17:58:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-Proc-SQL-left-join-output-duplicates-values/m-p/442071#M20577</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2018-03-03T17:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Why Proc SQL left join output duplicates values?</title>
      <link>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-Proc-SQL-left-join-output-duplicates-values/m-p/442067#M20575</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is because your proc freq syntax is not creating a cross tab. In order to get a cross tabulation in a data set then you have to generate a cross tab. Please try this to see the output data set&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc freq data=eq;&lt;BR /&gt;tables id*y;&lt;BR /&gt;where z ne . ;&lt;BR /&gt;ods output CrossTabFreqs=CrossTabFreqs;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc print data = CrossTabFreqs;&lt;/P&gt;
&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Mar 2018 17:43:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/ODS-and-Base-Reporting/Why-Proc-SQL-left-join-output-duplicates-values/m-p/442067#M20575</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2018-03-03T17:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: Missing value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Missing-value/m-p/433934#M107651</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am glad you have the solution. I am also&amp;nbsp; learning from&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;'s&amp;nbsp;posts&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2018 03:25:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Missing-value/m-p/433934#M107651</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2018-02-04T03:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: Getting summary statistics without procfreq</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Getting-summary-statistics-without-procfreq/m-p/433933#M107650</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something like this may produce the desired output.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data have;&lt;BR /&gt;input colx coly colz;&lt;BR /&gt;datalines;&lt;BR /&gt;0 1 0 &lt;BR /&gt;0 1 1 &lt;BR /&gt;0 1 0&lt;BR /&gt;;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want(keep=name value);&lt;BR /&gt;set have;&lt;BR /&gt;array v(*) col:;&lt;BR /&gt;do i = 1 to dim(v);&lt;BR /&gt;&amp;nbsp; &amp;nbsp; name=vname(v(i));&lt;BR /&gt;&amp;nbsp; &amp;nbsp;value=v(i);&lt;BR /&gt;&amp;nbsp; &amp;nbsp;output;&lt;BR /&gt;end;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;proc sql;&lt;BR /&gt;select name,value,count(*) as count from want&lt;BR /&gt;group by name, value;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Sun, 04 Feb 2018 03:17:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Getting-summary-statistics-without-procfreq/m-p/433933#M107650</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2018-02-04T03:17:40Z</dc:date>
    </item>
    <item>
      <title>Re: Missing value</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Missing-value/m-p/433836#M107602</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Missing values can be replaced with various statistics using proc stdize. Below is an example replacing missing values with median.&lt;/P&gt;
&lt;P&gt;Defining a cap would be based on your analysis. You can flag variables containing a certain percentage of missing values for imputation.&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;proc stdize data=have reponly method=median out=imputed;&lt;BR /&gt;var a b c; /* Assuming a, b and c are 3 numeric variables */&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2018 19:51:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Missing-value/m-p/433836#M107602</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2018-02-03T19:51:53Z</dc:date>
    </item>
    <item>
      <title>Re: Run Regression using data in only specific rows</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Run-Regression-using-data-in-only-specific-rows/m-p/433829#M281891</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something like this? I am using a sample data set and you can try on the same pattern on your data set.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data have ;&lt;BR /&gt; input var1-var4 ;&lt;BR /&gt;&lt;STRONG&gt;n = _n_;&lt;/STRONG&gt;&lt;BR /&gt;cards;&lt;BR /&gt;0.5 1 1.2 0.4&lt;BR /&gt;0.9 1 1.5 0.2&lt;BR /&gt;0.7 1 1.1 0.3&lt;BR /&gt;1 1 1 1&lt;BR /&gt;3 1 3 1&lt;BR /&gt;4 1 6 7&lt;BR /&gt;;&lt;BR /&gt;proc reg data=have&lt;STRONG&gt;(where = (n&amp;gt;3))&lt;/STRONG&gt;;&lt;BR /&gt;model var1=var2;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2018 18:57:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Run-Regression-using-data-in-only-specific-rows/m-p/433829#M281891</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2018-02-03T18:57:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to Predict Cluster Group of New Observations</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/How-to-Predict-Cluster-Group-of-New-Observations/m-p/433741#M6667</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This can be used but you can predict cluster membership of new observation based on it's distance from the closest cluster center..&lt;/P&gt;</description>
      <pubDate>Sat, 03 Feb 2018 01:28:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/How-to-Predict-Cluster-Group-of-New-Observations/m-p/433741#M6667</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2018-02-03T01:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Removing a variable conditionally</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Removing-a-variable-conditionally/m-p/427532#M105465</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you are comfortable with some statistical stuff then try this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc means data=have stackods var;&lt;BR /&gt;ods output summary=stats;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;proc sql;&lt;BR /&gt;select Variable into :drop_vars from stats&lt;BR /&gt;where Var=0;&lt;BR /&gt;quit;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data want;&lt;BR /&gt;set have(drop=&amp;amp;drop_vars);&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Jan 2018 18:26:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Removing-a-variable-conditionally/m-p/427532#M105465</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2018-01-14T18:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: Count the number of individuals with the same characteristics</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Count-the-number-of-individuals-with-the-same-characteristics/m-p/427524#M105459</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Something like this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;/P&gt;
&lt;P&gt;select *,count(*) as Count from have&lt;/P&gt;
&lt;P&gt;group by name, c1,c2,c3;&lt;/P&gt;
&lt;P&gt;quit;&lt;/P&gt;</description>
      <pubDate>Sun, 14 Jan 2018 17:39:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Count-the-number-of-individuals-with-the-same-characteristics/m-p/427524#M105459</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2018-01-14T17:39:11Z</dc:date>
    </item>
    <item>
      <title>Re: create summary percentage tables by subsets of one variables.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/create-summary-percentage-tables-by-subsets-of-one-variables/m-p/427098#M105297</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc freq data=have order=data;&lt;BR /&gt;table sex*age/norow nocum nofreq nopercent ;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jan 2018 04:00:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/create-summary-percentage-tables-by-subsets-of-one-variables/m-p/427098#M105297</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2018-01-12T04:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: fill missing values with known non-missing values</title>
      <link>https://communities.sas.com/t5/SAS-Programming/fill-missing-values-with-known-non-missing-values/m-p/424833#M281071</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please try this.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;proc sql;&lt;BR /&gt;create table want as&lt;BR /&gt;select ID, company, max(variable) as variable from have&lt;BR /&gt;group by id;&lt;BR /&gt;quit;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2018 06:10:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/fill-missing-values-with-known-non-missing-values/m-p/424833#M281071</guid>
      <dc:creator>stat_sas</dc:creator>
      <dc:date>2018-01-04T06:10:22Z</dc:date>
    </item>
  </channel>
</rss>

