<?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: using data response and datalabel in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735536#M21381</link>
    <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table want as
select date,var1,sum(var2) as sum,calculated sum/(select sum(var2) from x.test4 where date=a.date) as per format=percent8.2
 from x.test4 as a
  group by date,var1
   order by date,var1;
quit;
data want;
 set want;
 by date;
 if first.date then lag=0;
 mean=lag+per/2;
 lag+per;
run;


proc sgplot data=want;
vbarparm category=date response=per/group=var1 GROUPDISPLAY=stack;
scatter x=date y=mean / markerchar=sum;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="x.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58371i886853A345153EDE/image-size/large?v=v2&amp;amp;px=999" role="button" title="x.png" alt="x.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 20 Apr 2021 13:08:09 GMT</pubDate>
    <dc:creator>Ksharp</dc:creator>
    <dc:date>2021-04-20T13:08:09Z</dc:date>
    <item>
      <title>sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735212#M21366</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;Is it possible to specify a response and a different datalabel in sgplot. I mean I wish to display the relative (percent) values on the yaxis but the absolute on that bars. I used the following code but the pecentages are display in both cases. Is it possible to do that anyway?&lt;/P&gt;
&lt;PRE&gt;proc sgplot data =mergedat dattrmap=myattrimap pad=(bottom=5%) noautolegend noborder;
xaxis grid type=discrete discreteorder=data;
vbar year response=&lt;STRONG&gt;percentvar&lt;/STRONG&gt; group=grup attrid=grup  datalabel = &lt;STRONG&gt;absolutevar&lt;/STRONG&gt; datalabelattrs=(weight=bold) seglabel seglabelattrs=(size=0.25) 
seglabelfitpolicy=none barwidth=0.9 missing;
xaxis  display= (nolabel) valueattrs=(family="verdana" size=8pt) fitpolicy=rotate ValuesRotate=Vertical;
yaxis values=(0 to 60  by 10) display= (nolabel) valueattrs=(family="verdana" size=8pt);

run; &lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Apr 2021 11:01:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735212#M21366</guid>
      <dc:creator>Anita_n</dc:creator>
      <dc:date>2021-04-19T11:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735222#M21367</link>
      <description>&lt;P&gt;You code looks good . What you want to try ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;proc sql;
create table want as
select age,sex,sum(weight) as sum,calculated sum/(select sum(weight) from sashelp.class where sex=a.sex) as per format=percent8.2
 from sashelp.class as a
  group by age,sex;
quit;
proc sgplot data=want;
vbarparm category=age response=per/group=sex datalabel=sum;
run;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Apr 2021 12:00:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735222#M21367</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-04-19T12:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735275#M21368</link>
      <description>&lt;P&gt;Show the code from the log. &lt;BR /&gt;Your code as posted will throw at least one error because of a missing / option indicator.&lt;/P&gt;
&lt;P&gt;Data is nice.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 14:52:56 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735275#M21368</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2021-04-19T14:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735278#M21369</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;thanks for the Code but the bars aren't labelled&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 14:54:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735278#M21369</guid>
      <dc:creator>Anita_n</dc:creator>
      <dc:date>2021-04-19T14:54:29Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735280#M21370</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13884"&gt;@ballardw&lt;/a&gt;&amp;nbsp;I have no error in the log. The problem is that it uses the percent instead of the absolute values although I indicated datalabel= absolute value&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 14:57:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735280#M21370</guid>
      <dc:creator>Anita_n</dc:creator>
      <dc:date>2021-04-19T14:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735283#M21371</link>
      <description>&lt;P&gt;In&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt; code, add option GROUPDISPLAY=cluster to VBARPARM stmt see the data labels.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See doc for DATALABEL that says this is displayed only when groups are clustered, not stacked.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/n0mc5dtithid5mn13c54dlgaceq3.htm#p14nwead434yo5n0zxw4gb9zpul9d" target="_blank" rel="noopener"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/n0mc5dtithid5mn13c54dlgaceq3.htm#p14nwead434yo5n0zxw4gb9zpul9d&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want label for each bar segment, use SEGLABEL option.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/n0mc5dtithid5mn13c54dlgaceq3.htm#n0f9e89gx8pqjen1muljrgq8n4r6f" target="_blank"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.5/grstatproc/n0mc5dtithid5mn13c54dlgaceq3.htm#n0f9e89gx8pqjen1muljrgq8n4r6f&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/graphicallyspeaking/2013/09/20/stacked-bar-chart-with-segment-labels/" target="_blank"&gt;https://blogs.sas.com/content/graphicallyspeaking/2013/09/20/stacked-bar-chart-with-segment-labels/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 15:11:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735283#M21371</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2021-04-19T15:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735287#M21372</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13856"&gt;@Jay54&lt;/a&gt;&amp;nbsp;that displays the bars side by side. I wouldn't like to display them as clusters&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 15:14:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735287#M21372</guid>
      <dc:creator>Anita_n</dc:creator>
      <dc:date>2021-04-19T15:14:08Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735302#M21373</link>
      <description>&lt;P&gt;In ODS Graphics parlance, side-by-side is called "Clustered".&amp;nbsp; Default group display is stacked.&amp;nbsp; For labels on all stacked segments, use SEGLABEL option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;title 'Product Sales by Country';
proc sgplot data=sashelp.prdsale noborder;
    format actual dollar8.0;
    vbar country / response=actual group=product displaybaseline=auto barwidth=0.6
            seglabel datalabel dataskin=pressed;
    xaxis display=(noline noticks nolabel);
    yaxis display=(noline noticks nolabel) grid;
    keylegend / location=outside fillheight=10 fillaspect=2 ;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Apr 2021 15:55:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735302#M21373</guid>
      <dc:creator>Jay54</dc:creator>
      <dc:date>2021-04-19T15:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735318#M21374</link>
      <description>&lt;P&gt;Can you post your data, so we can experiment with it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 16:55:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735318#M21374</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2021-04-19T16:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735505#M21378</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table want as
select age,sex,sum(weight) as sum,calculated sum/(select sum(weight) from sashelp.class where sex=a.sex) as per format=percent8.2
 from sashelp.class as a
  group by age,sex
   order by age,sex;
quit;
data want;
 set want;
 by age;
 retain lag;
 if first.age then lag=0;
 mean=lag+per/2;
 lag=per;
run;


proc sgplot data=want;
vbarparm category=age response=per/group=sex GROUPDISPLAY=stack;
scatter x=age y=mean / markerchar=sum;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="x.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58364iCB475BA70928A8D1/image-size/large?v=v2&amp;amp;px=999" role="button" title="x.png" alt="x.png" /&gt;&lt;/span&gt;You want this one ?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 12:20:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735505#M21378</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-04-20T12:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735518#M21379</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@all&amp;nbsp; : Thankyou all for your suggestions.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt; Since I already&amp;nbsp; used vbar, I taught I could continue with it.&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13856"&gt;@Jay54&lt;/a&gt;&amp;nbsp;I tried that code but it still writes the percentage values in the segment, I wanted instead the absolute values&lt;/P&gt;
&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13585"&gt;@GraphGuy&lt;/a&gt;&amp;nbsp;I have attached a sample data and my code&lt;/P&gt;
&lt;PRE&gt;proc sgplot data =t.test4 pad=(bottom=5%) noautolegend noborder;
xaxis grid type=discrete discreteorder=data;
vbar date /response=freq group=var1 attrid=var1  seglabel seglabelattrs=(size=0.25) 
seglabelfitpolicy=none barwidth=0.6 missing;
xaxis  display= (nolabel) valueattrs=(family="verdana" size=8pt) fitpolicy=rotate ValuesRotate=Vertical;
yaxis  display= (nolabel) valueattrs=(family="verdana" size=8pt);

run; &lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Apr 2021 12:43:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735518#M21379</guid>
      <dc:creator>Anita_n</dc:creator>
      <dc:date>2021-04-20T12:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735536#M21381</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
create table want as
select date,var1,sum(var2) as sum,calculated sum/(select sum(var2) from x.test4 where date=a.date) as per format=percent8.2
 from x.test4 as a
  group by date,var1
   order by date,var1;
quit;
data want;
 set want;
 by date;
 if first.date then lag=0;
 mean=lag+per/2;
 lag+per;
run;


proc sgplot data=want;
vbarparm category=date response=per/group=var1 GROUPDISPLAY=stack;
scatter x=date y=mean / markerchar=sum;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="x.png" style="width: 640px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/58371i886853A345153EDE/image-size/large?v=v2&amp;amp;px=999" role="button" title="x.png" alt="x.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 13:08:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735536#M21381</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-04-20T13:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735540#M21383</link>
      <description>&lt;P&gt;okay, is this not possible with vbar&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 13:16:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735540#M21383</guid>
      <dc:creator>Anita_n</dc:creator>
      <dc:date>2021-04-20T13:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735541#M21384</link>
      <description>&lt;P&gt;Or could be simpler. I see your data has been orgonized very well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;data want;
 set x.test4;
 by date;
 if first.date then lag=0;
 mean=lag+freq/2;
 lag+freq;
run;


proc sgplot data=want;
vbarparm category=date response=freq/group=var1 GROUPDISPLAY=stack;
scatter x=date y=mean / markerchar=var2;
run;&lt;/PRE&gt;</description>
      <pubDate>Tue, 20 Apr 2021 13:17:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735541#M21384</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-04-20T13:17:31Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735545#M21385</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;
data want;
 set x.test4;
 by date;
 if first.date then lag=0;
 mean=lag+freq/2;
 lag+freq;
run;


proc sgplot data=want;
vbarbasic date /response=freq group=var1 GROUPDISPLAY=stack;
scatter x=date y=mean / markerchar=var2;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you really want VBAR ,try this one .&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 13:21:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735545#M21385</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-04-20T13:21:12Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735761#M21391</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/18408"&gt;@Ksharp&lt;/a&gt;&amp;nbsp;what is the difference between the vbar statement and the vbarparm statement?&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 20:23:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735761#M21391</guid>
      <dc:creator>Anita_n</dc:creator>
      <dc:date>2021-04-20T20:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735772#M21394</link>
      <description>&lt;P&gt;VBAR statement will compute the summary statistics for you. The VBARPARM is for pre-summarized data. The VBARPARM statement has more flexibility with the type of plots statements that it can be overlaid with it.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Apr 2021 20:41:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735772#M21394</guid>
      <dc:creator>DanH_sas</dc:creator>
      <dc:date>2021-04-20T20:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735830#M21398</link>
      <description>&lt;P&gt;Thankyou&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 06:10:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735830#M21398</guid>
      <dc:creator>Anita_n</dc:creator>
      <dc:date>2021-04-21T06:10:49Z</dc:date>
    </item>
    <item>
      <title>Re: sgplot: using data response and datalabel</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735925#M21402</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13684"&gt;@Rick_SAS&lt;/a&gt;&amp;nbsp; wrote an excellent blog about this topic . You can ask him .&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blogs.sas.com/content/iml/2021/04/14/overlay-graphs-basic-bar-chart.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2021/04/14/overlay-graphs-basic-bar-chart.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Apr 2021 12:07:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/sgplot-using-data-response-and-datalabel/m-p/735925#M21402</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-04-21T12:07:32Z</dc:date>
    </item>
  </channel>
</rss>

