<?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: Modification in  Scatter Plot in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785383#M22421</link>
    <description>&lt;P&gt;Try this one ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
ods rtf file='c:\temp\temp.rtf';
proc sgplot data=All noborder;
 scatter x=treatment y=response;
 scatter x=Treatment y=mean / markerattrs=(symbol=Plus size=16) discreteoffset=-0.1 ;
 scatter x=Treatment y=median / markerattrs=(symbol=Star size=16) discreteoffset=0.1;
 xaxis type=discrete offsetmin=0.25 offsetmax=0.25;
run;
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1639141748033.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66613i52A18230E21E0439/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1639141748033.png" alt="Ksharp_0-1639141748033.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 10 Dec 2021 13:09:14 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2021-12-10T13:09:14Z</dc:date>
    <item>
      <title>Modification in  Scatter Plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785049#M22398</link>
      <description>&lt;P&gt;Hi, I am creating a scatter plot.&amp;nbsp; I am new to the&amp;nbsp; different types of graphs.&amp;nbsp; When I run the code, I am able to generate the graph, however I am not sure how I can achieve that.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. How I can move the treatments in to middle instead . Presently it printing at the both end of x axis.&lt;/P&gt;
&lt;P&gt;2. Please ignore the circle made in green and red. I Just want to show where I want to display the new data points.&lt;/P&gt;
&lt;P&gt;3. I need to display the Mean value right to the trt on x axis and median to the left to the trt ( Make sure these are not in the same x axis of data points or too far from the data points.. How I can achieve this because we did not given any values on X axis.&lt;/P&gt;
&lt;P&gt;Please give suggestions. Thanks.&lt;/P&gt;
&lt;P&gt;Fig 1 How it prints&lt;/P&gt;
&lt;P&gt;fig2 How I want&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SASuserlot_0-1639013215771.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66536i3213CFCBF45041FF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SASuserlot_0-1639013215771.png" alt="SASuserlot_0-1639013215771.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SASuserlot_0-1639013381215.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66537iAC3FD1EE3586FC8D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SASuserlot_0-1639013381215.png" alt="SASuserlot_0-1639013381215.png" /&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 test;
input Treatment$ trtcode  response;
cards;
trt1 1 5
trt1 1 2
trt1 1 3
trt1 1 5
trt1 1 6
trt1 1 1
trt1 1 3
trt1 1 2
trt1 1 0
trt2 2 2
trt2 2 3
trt2 2 4
trt2 2 6
trt2 2 1
trt2 2 9
trt2 2 10
;
run;
ods graphics on/ width= 8in height= 4in   ;
options orientation = landscape errors = 2 missing = ' ' nofmterr ls = 175 validvarname = upcase nofmterr nobyline 
noquotelenmax ;
ods results on; 
ods listing close; 
ods rtf file = "\&amp;amp;location.\dotted-plot.rtf";
proc sgplot data=test;
 scatter x=treatment y=response / group=trtcode;
run;
ods _all_ close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 01:29:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785049#M22398</guid>
      <dc:creator>SASuserlot</dc:creator>
      <dc:date>2021-12-09T01:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Modification in  Scatter Plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785052#M22399</link>
      <description>&lt;P&gt;One way:&lt;/P&gt;
&lt;PRE&gt;proc sgplot data=test;
 scatter x=treatment y=response / group=trtcode;
 xaxis offsetmin=.3 offsetmax=.3 ;
run;&lt;/PRE&gt;
&lt;P&gt;The offsetmin=.3 says place the smallest value on the xaxis at the 30 percent of the width of the axis, the offsetmax=.3 is 30 percent space above (right) of the largest value. Use values of 0 to 1. The space can be reserved independently, if the max and min total 1 or more the default behavior will return because you attempted to use more than 100 percent of the width of the axis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Where do you expect to get the mean and medians from? You may find that calculating where to place an x value on a character axis is awkward at best. Often it is better to have a numeric value for the axis with a format to display text like "Trt1" so that you can do things like add other text/markers with small offsets.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you have more than a small number of points you may want to look at a VBOX instead of Scatter plot as it displays more information about the distribution of values.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/350312"&gt;@SASuserlot&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi, I am creating a scatter plot.&amp;nbsp; I am new to the&amp;nbsp; different types of graphs.&amp;nbsp; When I run the code, I am able to generate the graph, however I am not sure how I can achieve that.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. How I can move the treatments in to middle instead . Presently it printing at the both end of x axis.&lt;/P&gt;
&lt;P&gt;2. Please ignore the circle made in green and red. I Just want to show where I want to display the new data points.&lt;/P&gt;
&lt;P&gt;3. I need to display the Mean value right to the trt on x axis and median to the left to the trt ( Make sure these are not in the same x axis of data points or too far from the data points.. How I can achieve this because we did not given any values on X axis.&lt;/P&gt;
&lt;P&gt;Please give suggestions. Thanks.&lt;/P&gt;
&lt;P&gt;Fig 1 How it prints&lt;/P&gt;
&lt;P&gt;fig2 How I want&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SASuserlot_0-1639013215771.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66536i3213CFCBF45041FF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SASuserlot_0-1639013215771.png" alt="SASuserlot_0-1639013215771.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SASuserlot_0-1639013381215.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66537iAC3FD1EE3586FC8D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SASuserlot_0-1639013381215.png" alt="SASuserlot_0-1639013381215.png" /&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 test;
input Treatment$ trtcode  response;
cards;
trt1 1 5
trt1 1 2
trt1 1 3
trt1 1 5
trt1 1 6
trt1 1 1
trt1 1 3
trt1 1 2
trt1 1 0
trt2 2 2
trt2 2 3
trt2 2 4
trt2 2 6
trt2 2 1
trt2 2 9
trt2 2 10
;
run;
ods graphics on/ width= 8in height= 4in   ;
options orientation = landscape errors = 2 missing = ' ' nofmterr ls = 175 validvarname = upcase nofmterr nobyline 
noquotelenmax ;
ods results on; 
ods listing close; 
ods rtf file = "\&amp;amp;location.\dotted-plot.rtf";
proc sgplot data=test;
 scatter x=treatment y=response / group=trtcode;
run;
ods _all_ close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 01:52:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785052#M22399</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-12-09T01:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: Modification in  Scatter Plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785072#M22401</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp; Thanks for the response. Your offset option solved my first query. I do understand your suggestion about the vbox plot. I chose this graph template because of my requirement from statisticians where they want to see drug concentration in plasma and compare with mean/ median (I guess).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can calculate the mean/ median using Proc Summary&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc summary data= test nway;
var response;
class treatment trtcode;
output out= mean1 (keep=treatment _Mean _median) mean= _mean median=_median;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;However, I am not sure do I have to append or merge my mean1 dataset with the test dataset. Because of my requirement in placing the mean/ median data points adjacent to the 'response' data points. unfortunately, they want mean and median data points with different symbols compared to the 'response' data points, Therefore I think we can not append them. Please suggest your thoughts in achieving this. Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 05:03:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785072#M22401</guid>
      <dc:creator>SASuserlot</dc:creator>
      <dc:date>2021-12-09T05:03:37Z</dc:date>
    </item>
    <item>
      <title>Re: Modification in  Scatter Plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785209#M22411</link>
      <description>&lt;P&gt;The means/medians could be appended just have the values in different variables. Two different scatter plots would allow you to specify different markers, colors and such as well as adding to the legend. The problem is just what X value you would use. When you have axis values that are text like 'trt1' there is no natural increment to have a value just a bit to the right/left of the other symbols. 'trt.09' for example would be a completely separate text entry and not be "close" to the existing column of 'trt1' values. IF you&amp;nbsp; use a numeric value with a custom format such that 1 displays as 'trt1' and 2 as 'trt2' then you could use X values like&amp;nbsp; 0.8 or 1.2 or similar for the markers of the mean and median.&amp;nbsp; Then on the xaxis statement use values to only display the 1 and 2&amp;nbsp; and either using the format in a Valuesformat to display 'trt1' or use the ValuesDisplay= option to display text if you don't want to create a format.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another approach, define the axis as discrete and try the Discreteoffset= option for your mean/median variable scatter plots.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 17:21:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785209#M22411</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-12-09T17:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: Modification in  Scatter Plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785210#M22412</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;.&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp; helped me out by appending and using discreet option. Thanks again&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 17:26:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785210#M22412</guid>
      <dc:creator>SASuserlot</dc:creator>
      <dc:date>2021-12-09T17:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: Modification in  Scatter Plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785218#M22413</link>
      <description>&lt;P&gt;In the future, please do not double-post the same question. It wastes people's time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is my answer from &lt;A href="https://communities.sas.com/t5/Graphics-Programming/Scatter-plot-matrix-axes/m-p/785178" target="_self"&gt;the other thread&lt;/A&gt;:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Compute the mean and median, then merge the statistics and the data. As for moving the graphics towards the center of the display, use the OFFSETMIN= and OFFSETMAX= options in the XAXIS statement:&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;/* compute the means and medians for each treatment group */
proc means data=test;
class Treatment;
var response;
output out=MeansOut mean=Mean median=Median;
run;

/* merge the data and the statistics */
data All;
set test MeansOut(where=(_Type_=1));
run;

proc sgplot data=All;
 scatter x=treatment y=response;
 scatter x=Treatment y=mean / markerattrs=(symbol=Plus size=16) discreteoffset=-0.1 ;
 scatter x=Treatment y=median / markerattrs=(symbol=Star size=16) discreteoffset=0.1;
 xaxis type=discrete offsetmin=0.25 offsetmax=0.25;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 09 Dec 2021 17:44:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785218#M22413</guid>
      <dc:creator>Rick_SAS</dc:creator>
      <dc:date>2021-12-09T17:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: Modification in  Scatter Plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785225#M22414</link>
      <description>&lt;P&gt;Sorry&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp; I will keep in mind of it next time ( I thought I can do it in different forum.) &lt;FONT color="#008000"&gt;I need a suggestion , can you guys please suggest links or documents,&amp;nbsp; to understand the small nuances or things in adjusting the graphs when do ODS RTF outputs, such controlling what access to print, increase or decrease the size of the graph, controlling legends&amp;nbsp; and titles inside the figure or outside etc.&lt;/FONT&gt;. for example, the solution you provided&amp;nbsp; I tried to do RTF output.&amp;nbsp; I don't want the right border ( circled in red).Thanks again.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SASuserlot_1-1639073437203.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66583i8CCDDD1F89DC0166/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SASuserlot_1-1639073437203.png" alt="SASuserlot_1-1639073437203.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 18:15:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785225#M22414</guid>
      <dc:creator>SASuserlot</dc:creator>
      <dc:date>2021-12-09T18:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: Modification in  Scatter Plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785250#M22415</link>
      <description>&lt;P&gt;The documentation is the place to start.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look at the ODS Graphics statement for things that apply across multiple procedures such as the graphic display area size and such.&lt;/P&gt;
&lt;P&gt;The the procedure and statement options.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Many examples with data of different graphing types at &lt;A href="https://support.sas.com/en/knowledge-base/graph-samples-gallery.html" target="_blank"&gt;Graph Samples Gallery | SAS Support&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you haven't figured it out yet, many specific ODS destinations have there own default ODS style. So you may want to specify the ods style instead of the default as that is the base place for default color schemes and appearance of graph objects like markers and lines plus font type and size. &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 19:08:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785250#M22415</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-12-09T19:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: Modification in  Scatter Plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785256#M22416</link>
      <description>&lt;P&gt;Thank you. It helped.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Dec 2021 19:25:43 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785256#M22416</guid>
      <dc:creator>SASuserlot</dc:creator>
      <dc:date>2021-12-09T19:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Modification in  Scatter Plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785383#M22421</link>
      <description>&lt;P&gt;Try this one ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
ods rtf file='c:\temp\temp.rtf';
proc sgplot data=All noborder;
 scatter x=treatment y=response;
 scatter x=Treatment y=mean / markerattrs=(symbol=Plus size=16) discreteoffset=-0.1 ;
 scatter x=Treatment y=median / markerattrs=(symbol=Star size=16) discreteoffset=0.1;
 xaxis type=discrete offsetmin=0.25 offsetmax=0.25;
run;
ods rtf close;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1639141748033.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/66613i52A18230E21E0439/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1639141748033.png" alt="Ksharp_0-1639141748033.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 13:09:14 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785383#M22421</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-12-10T13:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: Modification in  Scatter Plot</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785391#M22424</link>
      <description>&lt;P&gt;worked , Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This Query is Answered Now.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Dec 2021 13:47:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Modification-in-Scatter-Plot/m-p/785391#M22424</guid>
      <dc:creator>SASuserlot</dc:creator>
      <dc:date>2021-12-10T13:47:01Z</dc:date>
    </item>
  </channel>
</rss>

