<?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: ploting data in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847037#M334887</link>
    <description>I'm sorry you are right.&lt;BR /&gt;the PL values for season1,2 and 3 are in the vertical axis.</description>
    <pubDate>Wed, 30 Nov 2022 13:14:46 GMT</pubDate>
    <dc:creator>always-good</dc:creator>
    <dc:date>2022-11-30T13:14:46Z</dc:date>
    <item>
      <title>ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846903#M334809</link>
      <description>&lt;P&gt;&lt;FONT color="#000000"&gt;Hello SAS community!&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm working on fitting the lactation curve of dairy cows according to the calving season (1=winter, 2= spring and 3= summer) using the model of Wood for fitting.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;My question here is that I want to draw the three curves together as one curve according to the three seasons and not each curve separately.&lt;/P&gt;&lt;P&gt;Can anyone please correct the code for me. I really need help!&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the data and the tried code:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;data&amp;nbsp;&lt;/SPAN&gt;curves;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;input season days&amp;nbsp;&lt;/SPAN&gt;Milk;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;datalines;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1 22 7.63 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1 54 7.25 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1 85 8.40 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1 113 8.10 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1 142 5.75 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1 174 6.00 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1 208 5.00 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1 230 4.00 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1 263 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1 299 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2 17 8.54 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2 46 8.71 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2 75 7.27 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2 107 5.46 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2 140 5.82 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2 167 6.22 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2 187 6.60 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2 219 3.00 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2 258 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2 285 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;3 16 7.00 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;3 50 9.00 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;3 84 7.00 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;3 107 9.50 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;3 140 8.00 &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;3&amp;nbsp;&lt;/SPAN&gt;163&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc nlin data = curves plots = fit;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;parms A = 15 B = 0.19 C = -0.0012 ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;bounds A B C &amp;gt; 0;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;by season;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;model PL = A * days **b * exp(-C*days);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;output out = Fit predicted = Pred;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;by season;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;title1' lactation curve ';&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;proc gplot data=fit; plot pred*days milk*days/overlay;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;by season;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you, the community!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 20:02:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846903#M334809</guid>
      <dc:creator>always-good</dc:creator>
      <dc:date>2022-11-29T20:02:05Z</dc:date>
    </item>
    <item>
      <title>Re: ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846906#M334811</link>
      <description>&lt;P&gt;Please look at the log for this code and fix the error. (That could be why you can't get a plot; or it may be there are additional errors)&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 20:05:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846906#M334811</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-11-29T20:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846911#M334813</link>
      <description>Thank you for your reply!&lt;BR /&gt;The code is running well, but that's not exactly the result I'm asking for.&lt;BR /&gt;I want to plot three curves in the same curve and I'm not familiar with that.</description>
      <pubDate>Tue, 29 Nov 2022 20:12:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846911#M334813</guid>
      <dc:creator>always-good</dc:creator>
      <dc:date>2022-11-29T20:12:36Z</dc:date>
    </item>
    <item>
      <title>Re: ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846914#M334815</link>
      <description>&lt;P&gt;Maybe you are running different code than what you showed above? When I copy and paste that code into SAS, there is an error in PROC NLIN.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 20:31:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846914#M334815</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-11-29T20:31:30Z</dc:date>
    </item>
    <item>
      <title>Re: ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846920#M334818</link>
      <description>Please try this code. It is running:&lt;BR /&gt;data curves;&lt;BR /&gt;input saison Jours PL;&lt;BR /&gt;datalines;&lt;BR /&gt;1 22 7.63&lt;BR /&gt;1 54 7.25&lt;BR /&gt;1 85 8.40&lt;BR /&gt;1 113 8.10&lt;BR /&gt;1 142 5.75&lt;BR /&gt;1 174 6.00&lt;BR /&gt;1 208 5.00&lt;BR /&gt;1 230 4.00&lt;BR /&gt;1 263&lt;BR /&gt;1 299&lt;BR /&gt;2 17 8.54&lt;BR /&gt;2 46 8.71&lt;BR /&gt;2 75 7.27&lt;BR /&gt;2 107 5.46&lt;BR /&gt;2 140 5.82&lt;BR /&gt;2 167 6.22&lt;BR /&gt;2 187 6.60&lt;BR /&gt;2 219 3.00&lt;BR /&gt;2 258&lt;BR /&gt;2 285&lt;BR /&gt;3 16 7.00&lt;BR /&gt;3 50 9.00&lt;BR /&gt;3 84 7.00&lt;BR /&gt;3 107 9.50&lt;BR /&gt;3 140 8.00&lt;BR /&gt;3 163&lt;BR /&gt;;&lt;BR /&gt;proc nlin data = curves plots = fit;&lt;BR /&gt;parms A = 15 B = 0.19 C = -0.0012 ;&lt;BR /&gt;bounds A B C &amp;gt; 0;&lt;BR /&gt;by saison;&lt;BR /&gt;model PL = A * Jours **b * exp(-C*Jours);&lt;BR /&gt;output out = Fit predicted = Pred ;&lt;BR /&gt;by saison;&lt;BR /&gt;run;&lt;BR /&gt;title1' courbe de lactation ';&lt;BR /&gt;proc gplot data=fit;&lt;BR /&gt;plot pred*Jours PL*Jours/overlay;&lt;BR /&gt;by saison;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 29 Nov 2022 20:58:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846920#M334818</guid>
      <dc:creator>always-good</dc:creator>
      <dc:date>2022-11-29T20:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846941#M334833</link>
      <description>&lt;P&gt;Thank you, your code now works. However, I don't really understand this part:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to draw the three curves together as one curve according to the three seasons and not each curve separately.&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does this mean you want values 1 2 and 3 on the horizontal axis? If so, what should go on the vertical axis? Or do you want something else? I really need a more clear explanation.&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 22:22:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846941#M334833</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-11-29T22:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846945#M334837</link>
      <description>Yes this is what I mean, values 1,2 and 3 on the horizontal axis and the same vertical axis for all curves like in the code, I means "Jours".&lt;BR /&gt;I want to fit the curve of Milk production "PL" (horizontal axis) for the three seasons 1,2 and 3, according to the days "Jours" (vertical axis).&lt;BR /&gt;</description>
      <pubDate>Tue, 29 Nov 2022 22:42:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846945#M334837</guid>
      <dc:creator>always-good</dc:creator>
      <dc:date>2022-11-29T22:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846946#M334838</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/437029"&gt;@always-good&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;Yes this is what I mean, values 1,2 and 3 on the horizontal axis and the same vertical axis for all curves like in the code, I means "Jours".&lt;BR /&gt;I want to fit the curve of Milk production "PL" (horizontal axis) for the three seasons 1,2 and 3, according to the days "Jours" (vertical axis).&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I'm still not grasping what you want. What "curves"? What is the value on the Y-axis? Can you show me a similar plot that is on the internet somewhere?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 22:54:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846946#M334838</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-11-29T22:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846947#M334839</link>
      <description>&lt;P&gt;Please check this out&lt;/P&gt;</description>
      <pubDate>Tue, 29 Nov 2022 23:06:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/846947#M334839</guid>
      <dc:creator>always-good</dc:creator>
      <dc:date>2022-11-29T23:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847017#M334874</link>
      <description>&lt;P&gt;Please include a screen capture of this plot by clicking on the "Insert Photos" icon. I refuse to download files; and furthermore Microsoft Office documents can be a security threat.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 11:24:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847017#M334874</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-11-30T11:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847027#M334880</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="lactation curves according to different season of calving" style="width: 864px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/77857iA807C2F34164DC74/image-size/large?v=v2&amp;amp;px=999" role="button" title="lactation curves according to different season of calving.PNG" alt="lactation curves according to different season of calving" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;lactation curves according to different season of calving&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 11:57:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847027#M334880</guid>
      <dc:creator>always-good</dc:creator>
      <dc:date>2022-11-30T11:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847028#M334881</link>
      <description>&lt;P&gt;This does not look anything like what you said earlier "&lt;SPAN&gt;Yes this is what I mean, values 1,2 and 3 on the horizontal axis"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;This doesn't seem to match your original description of the plot "My question here is that I want to draw the three curves together as one curve", this plot shows separate curves and does not draw the three curves together as one curve.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 12:24:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847028#M334881</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-11-30T12:24:48Z</dc:date>
    </item>
    <item>
      <title>Re: ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847029#M334882</link>
      <description>Please if you understand what I mean, you can help me! I think it is the same thing meant:&lt;BR /&gt;The "PL" for the three seasons 1,2 and 3 are in the horizontal axis. I think it is clear with the picture.&lt;BR /&gt;what is the thing that you didn't understand? we can find a solution?</description>
      <pubDate>Wed, 30 Nov 2022 12:32:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847029#M334882</guid>
      <dc:creator>always-good</dc:creator>
      <dc:date>2022-11-30T12:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847031#M334883</link>
      <description>&lt;P&gt;Not clear. The plot shows a horizontal axis going from 5 to 305. Do you want a horizontal axis that has only values 1, 2 and 3? (Because that's what you said earlier) And do you want "&lt;SPAN&gt;"My question here is that I want to draw the three curves together as one curve", or do you want three curves?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 12:38:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847031#M334883</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-11-30T12:38:49Z</dc:date>
    </item>
    <item>
      <title>Re: ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847037#M334887</link>
      <description>I'm sorry you are right.&lt;BR /&gt;the PL values for season1,2 and 3 are in the vertical axis.</description>
      <pubDate>Wed, 30 Nov 2022 13:14:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847037#M334887</guid>
      <dc:creator>always-good</dc:creator>
      <dc:date>2022-11-30T13:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847038#M334888</link>
      <description>&lt;P&gt;The example you show does not have 1,2,3 on the vertical axis either.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's time for a re-write. Please start from scratch, and write what you want in the plot in detail, correctly, clearly, completely. Put some effort into this, make sure everything is clear, complete, correct. Please explain how the data in the output data set named FIT corresponds to the plot that you show.&amp;nbsp;I want this all in one place so I don't have to keep scrolling up and down to read the various parts of your message and see your example, and so I don't have to ask five more questions, so I don't even have to ask one more question.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 13:22:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847038#M334888</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2022-11-30T13:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847043#M334890</link>
      <description>&lt;P&gt;I suggest you use the &lt;A href="https://blogs.sas.com/content/iml/2014/02/17/the-missing-value-trick-for-scoring-a-regression-model.html" target="_self"&gt;"missing value trick"&lt;/A&gt; to create an evenly spaced set of Jours for scoring. Then run the model and use PROC SGPLOT to overlay the data and curves. You do this by using the GROUP=saison option:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* to improve the visualization, add a sequence of evenly spaced
values to the data. This is the scoring set. */
data Score;
Score = 1;
do saison = 1 to 3;
   do Jours = 15 to 250 by 5;
      output;
   end;
end;
run;

data All;
set curves Score;
run;

proc sort data=All;
by saison Jours;
run;

proc nlin data = All plots = fit;
parms A = 15 B = 0.19 C = -0.0012 ;
bounds A B C &amp;gt; 0;
by saison;
model PL = A * Jours **b * exp(-C*Jours);
output out = Fit predicted = Pred ;
run;

title1' courbe de lactation ';
proc sgplot data=fit;
scatter y=PL x=Jours / group=saison;
series y=pred x=Jours / group=saison;
run;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Nov 2022 13:55:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847043#M334890</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2022-11-30T13:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: ploting data</title>
      <link>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847053#M334893</link>
      <description>Dear Rick,&lt;BR /&gt;This is exactly what I'm talking about. This is what I'm asking for!&lt;BR /&gt;The code is running well.&lt;BR /&gt;Thanks a lot, and I'm so grateful!&lt;BR /&gt;Best regards.</description>
      <pubDate>Wed, 30 Nov 2022 14:39:11 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/ploting-data/m-p/847053#M334893</guid>
      <dc:creator>always-good</dc:creator>
      <dc:date>2022-11-30T14:39:11Z</dc:date>
    </item>
  </channel>
</rss>

