<?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: Sgplot : How to use variable name of variable name in diagram in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Sgplot-How-to-use-variable-name-of-variable-name-in-diagram/m-p/547220#M17963</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC REPORT DATA=WORK.AAA LS=120 PS=64  SPLIT="/" CENTER 
    style(report)=[background=green cellspacing=2]
    style(column)=[background=yellow]
    style(header)=[background=pink foreground=blue]
	;    
COLUMN  Age_Bins ("Indiab"  SysBP Dia_BP ) 
                 ("MDRF"  SysBP_M DiaBP_M );

DEFINE  Age_Bins / DISPLAY FORMAT= $8. WIDTH=8    SPACING=2   LEFT  "Age_Bins" ;
DEFINE  SysBP    / SUM FORMAT= BEST9. WIDTH=9     SPACING=2   RIGHT "SBP"      ;
DEFINE  Dia_BP   / SUM FORMAT= BEST9. WIDTH=9     SPACING=2   RIGHT "DBP"      ;
DEFINE  SysBP_M  / SUM FORMAT= BEST9. WIDTH=9     SPACING=2   RIGHT "SBP_M"    ;
DEFINE  DiaBP_M  / SUM FORMAT= BEST9. WIDTH=9     SPACING=2   RIGHT "DBP_M"    ;
RUN;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 29 Mar 2019 14:52:09 GMT</pubDate>
    <dc:creator>sbxkoenk</dc:creator>
    <dc:date>2019-03-29T14:52:09Z</dc:date>
    <item>
      <title>Sgplot : How to use variable name of variable name in diagram</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Sgplot-How-to-use-variable-name-of-variable-name-in-diagram/m-p/547142#M17962</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Experts,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I share the Image of my table as well in the dataset format.&lt;/P&gt;&lt;P&gt;First please have a look at my images (Excel, sgplot) I want my diagram in the given format&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;data aaa;
input Age_Bins$ SysBP Dia_BP SysBP_M DiaBP_M;
cards;
20-29 199.8 82 116.3 76.9
30-39 134 88.4 119.3 78.3
40-49 135.2 85.5 121.4 79.9
50-59 141.3 82.6 124.6 80.7
60-69 142.7 79.4 128.4 81.4
70-80 148.9 82.6 132.8 81.4
;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="img3.jpg" style="width: 339px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28314i818A0CDEEDF3A442/image-size/large?v=v2&amp;amp;px=999" role="button" title="img3.jpg" alt="img3.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;DIV class="branch"&gt;&lt;DIV class="c"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="c"&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Proc sgplot data=aaa;
   reg x=Age_Bins y=DiaBP;
	reg x=Age_Bins y=DiaBP_M; 
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;DIV class="c"&gt;Using the above code I draw a sgplot.&lt;/DIV&gt;&lt;DIV class="c"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="img4.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28317i64B6747D8E214435/image-size/large?v=v2&amp;amp;px=999" role="button" title="img4.jpg" alt="img4.jpg" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;DIV class="c"&gt;But I don't&amp;nbsp;know how to put the group (INDIAB, MDRF), and the value of plot points in sgplot.&lt;/DIV&gt;&lt;DIV class="c"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="c"&gt;My expected plot which look like : (Sample)&lt;/DIV&gt;&lt;DIV class="c"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="c"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Img5.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28316iF5E6E38DAF9C2B10/image-size/large?v=v2&amp;amp;px=999" role="button" title="Img5.jpg" alt="Img5.jpg" /&gt;&lt;/span&gt;&lt;/DIV&gt;&lt;DIV class="c"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="c"&gt;Please suggest me some ideas to solve this method.&lt;/DIV&gt;&lt;DIV class="c"&gt;Thanks in advance!&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 29 Mar 2019 11:01:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Sgplot-How-to-use-variable-name-of-variable-name-in-diagram/m-p/547142#M17962</guid>
      <dc:creator>Sathish_jammy</dc:creator>
      <dc:date>2019-03-29T11:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: Sgplot : How to use variable name of variable name in diagram</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Sgplot-How-to-use-variable-name-of-variable-name-in-diagram/m-p/547220#M17963</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;PROC REPORT DATA=WORK.AAA LS=120 PS=64  SPLIT="/" CENTER 
    style(report)=[background=green cellspacing=2]
    style(column)=[background=yellow]
    style(header)=[background=pink foreground=blue]
	;    
COLUMN  Age_Bins ("Indiab"  SysBP Dia_BP ) 
                 ("MDRF"  SysBP_M DiaBP_M );

DEFINE  Age_Bins / DISPLAY FORMAT= $8. WIDTH=8    SPACING=2   LEFT  "Age_Bins" ;
DEFINE  SysBP    / SUM FORMAT= BEST9. WIDTH=9     SPACING=2   RIGHT "SBP"      ;
DEFINE  Dia_BP   / SUM FORMAT= BEST9. WIDTH=9     SPACING=2   RIGHT "DBP"      ;
DEFINE  SysBP_M  / SUM FORMAT= BEST9. WIDTH=9     SPACING=2   RIGHT "SBP_M"    ;
DEFINE  DiaBP_M  / SUM FORMAT= BEST9. WIDTH=9     SPACING=2   RIGHT "DBP_M"    ;
RUN;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 Mar 2019 14:52:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Sgplot-How-to-use-variable-name-of-variable-name-in-diagram/m-p/547220#M17963</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2019-03-29T14:52:09Z</dc:date>
    </item>
    <item>
      <title>Re: Sgplot : How to use variable name of variable name in diagram</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Sgplot-How-to-use-variable-name-of-variable-name-in-diagram/m-p/547222#M17964</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Proc sgplot data=aaa;
   reg x=Age_Bins y=Dia_BP  / datalabel=Dia_BP; 
   reg x=Age_Bins y=DiaBP_M / datalabel=DiaBP_M; 
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 29 Mar 2019 14:58:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Sgplot-How-to-use-variable-name-of-variable-name-in-diagram/m-p/547222#M17964</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2019-03-29T14:58:12Z</dc:date>
    </item>
    <item>
      <title>Re: Sgplot : How to use variable name of variable name in diagram</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Sgplot-How-to-use-variable-name-of-variable-name-in-diagram/m-p/547228#M17965</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/215282"&gt;@Sathish_jammy&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hi&amp;nbsp;Experts,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I share the Image of my table as well in the dataset format.&lt;/P&gt;
&lt;P&gt;First please have a look at my images (Excel, sgplot) I want my diagram in the given format&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;data aaa;
input Age_Bins$ SysBP Dia_BP SysBP_M DiaBP_M;
cards;
20-29 199.8 82 116.3 76.9
30-39 134 88.4 119.3 78.3
40-49 135.2 85.5 121.4 79.9
50-59 141.3 82.6 124.6 80.7
60-69 142.7 79.4 128.4 81.4
70-80 148.9 82.6 132.8 81.4
;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="img3.jpg" style="width: 339px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28314i818A0CDEEDF3A442/image-size/large?v=v2&amp;amp;px=999" role="button" title="img3.jpg" alt="img3.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;DIV class="branch"&gt;
&lt;DIV class="c"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="c"&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;Proc sgplot data=aaa;
   reg x=Age_Bins y=DiaBP;
	reg x=Age_Bins y=DiaBP_M; 
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;DIV class="c"&gt;Using the above code I draw a sgplot.&lt;/DIV&gt;
&lt;DIV class="c"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="img4.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28317i64B6747D8E214435/image-size/large?v=v2&amp;amp;px=999" role="button" title="img4.jpg" alt="img4.jpg" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;DIV class="c"&gt;But I don't&amp;nbsp;know how to put the group (INDIAB, MDRF), and the value of plot points in sgplot.&lt;/DIV&gt;
&lt;DIV class="c"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="c"&gt;My expected plot which look like : (Sample)&lt;/DIV&gt;
&lt;DIV class="c"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="c"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Img5.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28316iF5E6E38DAF9C2B10/image-size/large?v=v2&amp;amp;px=999" role="button" title="Img5.jpg" alt="Img5.jpg" /&gt;&lt;/span&gt;&lt;/DIV&gt;
&lt;DIV class="c"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="c"&gt;Please suggest me some ideas to solve this method.&lt;/DIV&gt;
&lt;DIV class="c"&gt;Thanks in advance!&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Please provide data step AND proc step that actually generate your output. The data step does not have a variable DIABP mentioned in the SGPLOT code. I assumed that should have been DIA_BP. However your X variable&amp;nbsp;AGE_BINS is character in the data set and you can't use a character variable for regression.&lt;/P&gt;
&lt;P&gt;Also you mention &amp;nbsp;"group (INDIAB, MDRF),". There are no variables or data values of those so where are we supposed to get that information. We need those variables, or the variable with those values in the data step.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Typically to get SGPLOT to do something similar to your desired graph you would be plotting a single y variable with a group variable that indicates which group of data each record comes from. IF dia_BP is supposed to be the INDIAB group and DIABP_M is supposed to be from the MDRF group then your data needs to be restructured to have a variable holding the group:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data aaa;
input Age_Bins  SysBP Dia_BP SysBP_M DiaBP_M;
cards;
20 199.8 82 116.3 76.9
30 134 88.4 119.3 78.3
40 135.2 85.5 121.4 79.9
50 141.3 82.6 124.6 80.7
60 142.7 79.4 128.4 81.4
70 148.9 82.6 132.8 81.4
;
run;

data want;
   set aaa;
   SysBP=SysBP   ; DiaBP=Dia_bp; pop="INDIAB"; output;
   SysBP=SysBP_M; DiaBP=DiaBP_M; pop="MDRF"; output;
   keep age_bins sysbp diabp pop;
run;


Proc sgplot data=want;
   reg x=Age_Bins y=DiaBP/ group=pop datalabel;
   label pop='Data';

run;&lt;/PRE&gt;
&lt;P&gt;You would need a custom format to apply the labels to the X axis&amp;nbsp;values as ranges. I leave that as an exercise for the interested reader.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Instructions here: &lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt; will show how to turn an existing SAS data set into data step code that can be pasted into a forum code box using the {i} icon or attached as text to show exactly what you have and that we can test code against.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Mar 2019 15:13:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Sgplot-How-to-use-variable-name-of-variable-name-in-diagram/m-p/547228#M17965</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2019-03-29T15:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: Sgplot : How to use variable name of variable name in diagram</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Sgplot-How-to-use-variable-name-of-variable-name-in-diagram/m-p/547409#M17966</link>
      <description>&lt;P&gt;Dear&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/60547"&gt;@sbxkoenk&lt;/a&gt;&amp;nbsp;&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your suggestions.&amp;nbsp;Your code works well... I worked on both of your codes its wondering...&lt;/P&gt;&lt;P&gt;Everything is perfect except the LABEL description...&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="img5.jpg" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28351i32644FF5C7DF921E/image-size/large?v=v2&amp;amp;px=999" role="button" title="img5.jpg" alt="img5.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I can't see that LABEL - DATA at the bottom of the plot which we used a group in sgplot...&lt;/P&gt;&lt;P&gt;(&amp;nbsp;Data :&amp;nbsp; &amp;nbsp;x Dia_BP&amp;nbsp; &amp;nbsp; &amp;nbsp; o DiaBP_M )&amp;nbsp; ????????&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Mar 2019 12:17:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Sgplot-How-to-use-variable-name-of-variable-name-in-diagram/m-p/547409#M17966</guid>
      <dc:creator>Sathish_jammy</dc:creator>
      <dc:date>2019-03-30T12:17:39Z</dc:date>
    </item>
    <item>
      <title>Re: Sgplot : How to use variable name of variable name in diagram</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Sgplot-How-to-use-variable-name-of-variable-name-in-diagram/m-p/547517#M17970</link>
      <description>&lt;P&gt;To put curvelabels, see here:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Advanced ODS Graphics: Curve labels and date axes&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2017/10/25/advanced-ods-graphics-curve-labels-and-date-axes/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2017/10/25/advanced-ods-graphics-curve-labels-and-date-axes/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;By Warren F. Kuhfeld on the "Graphically Speaking" BLOG&amp;nbsp; | October 25, 2017&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 31 Mar 2019 20:19:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Sgplot-How-to-use-variable-name-of-variable-name-in-diagram/m-p/547517#M17970</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2019-03-31T20:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Sgplot : How to use variable name of variable name in diagram</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Sgplot-How-to-use-variable-name-of-variable-name-in-diagram/m-p/547862#M17974</link>
      <description>&lt;P&gt;If you use a 'scatter' plot instead of a 'reg' plot, it will have an automatic legend at the bottom:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;data aaa;&lt;BR /&gt;input Age_Bins$ SysBP Dia_BP SysBP_M DiaBP_M;&lt;BR /&gt;cards;&lt;BR /&gt;20-29 199.8 82 116.3 76.9&lt;BR /&gt;30-39 134 88.4 119.3 78.3&lt;BR /&gt;40-49 135.2 85.5 121.4 79.9&lt;BR /&gt;50-59 141.3 82.6 124.6 80.7&lt;BR /&gt;60-69 142.7 79.4 128.4 81.4&lt;BR /&gt;70-80 148.9 82.6 132.8 81.4&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;title1 "Whatever title you want";&lt;BR /&gt;Proc sgplot data=aaa;&lt;BR /&gt;scatter x=Age_Bins y=Dia_BP / datalabel=Dia_BP; &lt;BR /&gt;scatter x=Age_Bins y=DiaBP_M / datalabel=DiaBP_M; &lt;BR /&gt;keylegend / title='Data:';&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="legend.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/28392i4050A738D7CDBBB7/image-size/large?v=v2&amp;amp;px=999" role="button" title="legend.png" alt="legend.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Apr 2019 11:46:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Sgplot-How-to-use-variable-name-of-variable-name-in-diagram/m-p/547862#M17974</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2019-04-02T11:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: Sgplot : How to use variable name of variable name in diagram</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Sgplot-How-to-use-variable-name-of-variable-name-in-diagram/m-p/548709#M17982</link>
      <description>&lt;P&gt;This too works Perfectly... for label change options...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Proc sgplot data=aaa;&lt;BR /&gt;scatter x=Age_Bins y=SysBP / datalabel=SysBP LEGENDLABEL = 'INDIAB' markerattrs=(symbol=CircleFilled size=10);&lt;BR /&gt;scatter x=Age_Bins y=SysBP_M / datalabel=SysBP_M LEGENDLABEL = 'MDRF' markerattrs=(symbol=CircleFilled size=10);&lt;BR /&gt;YAXIS LABEL = 'SysBP';&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Fri, 05 Apr 2019 08:18:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Sgplot-How-to-use-variable-name-of-variable-name-in-diagram/m-p/548709#M17982</guid>
      <dc:creator>Sathish_jammy</dc:creator>
      <dc:date>2019-04-05T08:18:39Z</dc:date>
    </item>
  </channel>
</rss>

