<?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: Data Manipulation and Freq in SAS Health and Life Sciences</title>
    <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6823#M715</link>
    <description>As Cynthia and others have pointed out, it depends on what you want produced.  Here is yet another option (sorry about the look, but I can't seem to produce the nice formatting that others use):&lt;BR /&gt;
&lt;BR /&gt;
data in;&lt;BR /&gt;
	input (system defect) (:$24.);&lt;BR /&gt;
cards;&lt;BR /&gt;
Cardiovascular Atheroscelorosis&lt;BR /&gt;
Neurology Vertigo&lt;BR /&gt;
Cardiovascular Myocardialinfaction&lt;BR /&gt;
Nephrology Renal Failure&lt;BR /&gt;
Gastroenterology Gastritis&lt;BR /&gt;
Gastroenterology Jaundice&lt;BR /&gt;
Gastroenterology Gastritis&lt;BR /&gt;
Cardiovascular Myocardialinfaction&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
options nocenter;&lt;BR /&gt;
proc report data=in nowindows;&lt;BR /&gt;
	columns system defect N;&lt;BR /&gt;
	define system / group noprint;&lt;BR /&gt;
	define defect / group;&lt;BR /&gt;
	break after system / skip;&lt;BR /&gt;
	compute before system;&lt;BR /&gt;
		line @3 system $24.;&lt;BR /&gt;
	endcomp;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
Output:&lt;BR /&gt;
&lt;BR /&gt;
  defect                            N&lt;BR /&gt;
  Cardiovascular&lt;BR /&gt;
  Atheroscelorosis                  1&lt;BR /&gt;
  Myocardialinfaction               2&lt;BR /&gt;
&lt;BR /&gt;
  Gastroenterology&lt;BR /&gt;
  Gastritis                         2&lt;BR /&gt;
  Jaundice                          1&lt;BR /&gt;
&lt;BR /&gt;
  Nephrology&lt;BR /&gt;
  Renal                             1&lt;BR /&gt;
&lt;BR /&gt;
  Neurology&lt;BR /&gt;
  Vertigo                           1</description>
    <pubDate>Thu, 07 Feb 2008 18:27:26 GMT</pubDate>
    <dc:creator>1162</dc:creator>
    <dc:date>2008-02-07T18:27:26Z</dc:date>
    <item>
      <title>Data Manipulation and Freq</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6819#M711</link>
      <description>Hi Guys,&lt;BR /&gt;
I need a code to generate the following output...I am including the data set.&lt;BR /&gt;
&lt;BR /&gt;
Data set:&lt;BR /&gt;
&lt;BR /&gt;
    &lt;U&gt;System&lt;/U&gt;               &lt;U&gt;Defect&lt;/U&gt;&lt;BR /&gt;
&lt;BR /&gt;
Cardiovascular           Atheroscelorosis&lt;BR /&gt;
Neurology	                 Vertigo&lt;BR /&gt;
Cardiovascular            Myocardialinfaction&lt;BR /&gt;
Nephrology                Renal Failure&lt;BR /&gt;
Gastroenterology       Gastritis&lt;BR /&gt;
Gastroenterology	Jaundice&lt;BR /&gt;
Gastroenterology	Gastritis&lt;BR /&gt;
Cardiovascular	Myocardialinfaction&lt;BR /&gt;
&lt;BR /&gt;
Output:&lt;BR /&gt;
&lt;U&gt;Defect&lt;/U&gt;         &lt;U&gt;Frequency&lt;/U&gt;&lt;BR /&gt;
&lt;BR /&gt;
Cardiovascular	&lt;BR /&gt;
Atheroscelorosis	1&lt;BR /&gt;
Myocardialinfaction	2&lt;BR /&gt;
Nephrology	&lt;BR /&gt;
Renal Failure	1&lt;BR /&gt;
Gastroenterology	&lt;BR /&gt;
Gastritis	                1&lt;BR /&gt;
Jaundice	                1&lt;BR /&gt;
Gastritis	                1&lt;BR /&gt;
&lt;BR /&gt;
Thanks &amp;amp; Regards&lt;BR /&gt;
Nani</description>
      <pubDate>Thu, 07 Feb 2008 08:00:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6819#M711</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-02-07T08:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: Data Manipulation and Freq</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6820#M712</link>
      <description>Maybe something like this:&lt;BR /&gt;
&lt;BR /&gt;
data read;&lt;BR /&gt;
	length system_defect $ 200;&lt;BR /&gt;
	input system_defect &amp;amp;;&lt;BR /&gt;
	system=scan(system_defect,1);&lt;BR /&gt;
	defect=left(tranwrd(system_defect,trimn(system),''));&lt;BR /&gt;
cards;&lt;BR /&gt;
Cardiovascular Atheroscelorosis&lt;BR /&gt;
Neurology Vertigo&lt;BR /&gt;
Cardiovascular Myocardialinfaction&lt;BR /&gt;
Nephrology Renal Failure&lt;BR /&gt;
Gastroenterology Gastritis&lt;BR /&gt;
Gastroenterology Jaundice&lt;BR /&gt;
Gastroenterology Gastritis&lt;BR /&gt;
Cardiovascular Myocardialinfaction&lt;BR /&gt;
;run;&lt;BR /&gt;
proc sort;&lt;BR /&gt;
	by system defect;&lt;BR /&gt;
run;&lt;BR /&gt;
data result;&lt;BR /&gt;
	set read(drop=system_defect);&lt;BR /&gt;
	by system defect;&lt;BR /&gt;
	if first.defect then count=0;&lt;BR /&gt;
	count+1;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
&lt;BR /&gt;
Rens, SAS NL</description>
      <pubDate>Thu, 07 Feb 2008 09:44:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6820#M712</guid>
      <dc:creator>Rens_SASNL</dc:creator>
      <dc:date>2008-02-07T09:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: Data Manipulation and Freq</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6821#M713</link>
      <description>Change last data step to:&lt;BR /&gt;
data result;&lt;BR /&gt;
set read(drop=system_defect);&lt;BR /&gt;
by system defect;&lt;BR /&gt;
if first.defect then count=0;&lt;BR /&gt;
count+1;&lt;BR /&gt;
if last.defect then output;&lt;BR /&gt;
run;</description>
      <pubDate>Thu, 07 Feb 2008 17:20:30 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6821#M713</guid>
      <dc:creator>advoss</dc:creator>
      <dc:date>2008-02-07T17:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: Data Manipulation and Freq</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6822#M714</link>
      <description>Hi:&lt;BR /&gt;
  Either PROC REPORT or PROC TABULATE will give you a table based on your data.&lt;BR /&gt;
[pre]&lt;BR /&gt;
data defects;&lt;BR /&gt;
length system $20 defect $20;&lt;BR /&gt;
  infile datalines;&lt;BR /&gt;
  input system $ defect $;&lt;BR /&gt;
return;&lt;BR /&gt;
datalines;&lt;BR /&gt;
Cardiovascular Atheroscelorosis&lt;BR /&gt;
Neurology Vertigo&lt;BR /&gt;
Cardiovascular Myocardialinfaction&lt;BR /&gt;
Nephrology Renal Failure&lt;BR /&gt;
Gastroenterology Gastritis&lt;BR /&gt;
Gastroenterology Jaundice&lt;BR /&gt;
Gastroenterology Gastritis&lt;BR /&gt;
Cardiovascular Myocardialinfaction&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
  &lt;BR /&gt;
[/pre]&lt;BR /&gt;
 &lt;BR /&gt;
Then PROC REPORT looks like this in the LISTING window:&lt;BR /&gt;
[pre]&lt;BR /&gt;
&lt;BR /&gt;
proc report data=defects nowd;&lt;BR /&gt;
  title 'With Proc Report';&lt;BR /&gt;
  column system defect n;&lt;BR /&gt;
  define system /group;&lt;BR /&gt;
  define defect /group;&lt;BR /&gt;
run;&lt;BR /&gt;
 &lt;BR /&gt;
The OUTPUT:&lt;BR /&gt;
 With Proc Report          &lt;BR /&gt;
&lt;BR /&gt;
  system                defect                        n&lt;BR /&gt;
  Cardiovascular        Atheroscelorosis              1&lt;BR /&gt;
                        Myocardialinfaction           2&lt;BR /&gt;
  Gastroenterology      Gastritis                     2&lt;BR /&gt;
                        Jaundice                      1&lt;BR /&gt;
  Nephrology            Renal                         1&lt;BR /&gt;
  Neurology             Vertigo                       1&lt;BR /&gt;
&lt;BR /&gt;
[/pre]&lt;BR /&gt;
&lt;BR /&gt;
There are other ways to pretty up the PROC REPORT output, but PROC TABULATE does exactly what you want. And, PROC TABULATE looks like this in the LISTING window:&lt;BR /&gt;
&lt;BR /&gt;
[pre]&lt;BR /&gt;
proc tabulate data=defects f=9. noseps&lt;BR /&gt;
     formchar='           ';&lt;BR /&gt;
  title 'With Proc Tabulate';&lt;BR /&gt;
  class system defect;&lt;BR /&gt;
  table system*defect,n='Frequency'/&lt;BR /&gt;
        row=float indent=2 box='Defect'&lt;BR /&gt;
        rts=24;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
The OUTPUT:&lt;BR /&gt;
 &lt;BR /&gt;
With Proc Tabulate          &lt;BR /&gt;
&lt;BR /&gt;
 Defect                 Frequency&lt;BR /&gt;
&lt;BR /&gt;
 Cardiovascular&lt;BR /&gt;
   Atheroscelorosis             1&lt;BR /&gt;
   Myocardialinfaction          2&lt;BR /&gt;
 Gastroenterology&lt;BR /&gt;
   Gastritis                    2&lt;BR /&gt;
   Jaundice                     1&lt;BR /&gt;
 Nephrology&lt;BR /&gt;
   Renal                        1&lt;BR /&gt;
 Neurology&lt;BR /&gt;
   Vertigo                      1&lt;BR /&gt;
&lt;BR /&gt;
[/pre]&lt;BR /&gt;
 &lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 07 Feb 2008 17:23:15 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6822#M714</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-02-07T17:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: Data Manipulation and Freq</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6823#M715</link>
      <description>As Cynthia and others have pointed out, it depends on what you want produced.  Here is yet another option (sorry about the look, but I can't seem to produce the nice formatting that others use):&lt;BR /&gt;
&lt;BR /&gt;
data in;&lt;BR /&gt;
	input (system defect) (:$24.);&lt;BR /&gt;
cards;&lt;BR /&gt;
Cardiovascular Atheroscelorosis&lt;BR /&gt;
Neurology Vertigo&lt;BR /&gt;
Cardiovascular Myocardialinfaction&lt;BR /&gt;
Nephrology Renal Failure&lt;BR /&gt;
Gastroenterology Gastritis&lt;BR /&gt;
Gastroenterology Jaundice&lt;BR /&gt;
Gastroenterology Gastritis&lt;BR /&gt;
Cardiovascular Myocardialinfaction&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
options nocenter;&lt;BR /&gt;
proc report data=in nowindows;&lt;BR /&gt;
	columns system defect N;&lt;BR /&gt;
	define system / group noprint;&lt;BR /&gt;
	define defect / group;&lt;BR /&gt;
	break after system / skip;&lt;BR /&gt;
	compute before system;&lt;BR /&gt;
		line @3 system $24.;&lt;BR /&gt;
	endcomp;&lt;BR /&gt;
run;&lt;BR /&gt;
&lt;BR /&gt;
Output:&lt;BR /&gt;
&lt;BR /&gt;
  defect                            N&lt;BR /&gt;
  Cardiovascular&lt;BR /&gt;
  Atheroscelorosis                  1&lt;BR /&gt;
  Myocardialinfaction               2&lt;BR /&gt;
&lt;BR /&gt;
  Gastroenterology&lt;BR /&gt;
  Gastritis                         2&lt;BR /&gt;
  Jaundice                          1&lt;BR /&gt;
&lt;BR /&gt;
  Nephrology&lt;BR /&gt;
  Renal                             1&lt;BR /&gt;
&lt;BR /&gt;
  Neurology&lt;BR /&gt;
  Vertigo                           1</description>
      <pubDate>Thu, 07 Feb 2008 18:27:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6823#M715</guid>
      <dc:creator>1162</dc:creator>
      <dc:date>2008-02-07T18:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Data Manipulation and Freq</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6824#M716</link>
      <description>Hi:&lt;BR /&gt;
  to get the "nice" formatting, use square bracket-pre-square bracket before your code&lt;BR /&gt;
and &lt;BR /&gt;
square bracket - /pre-square bracket&lt;BR /&gt;
after your code&lt;BR /&gt;
&lt;BR /&gt;
square bracket = [ ]&lt;BR /&gt;
[-pre-] (without the dashes) and&lt;BR /&gt;
[-/pre-] (without the dashes)&lt;BR /&gt;
cynthia</description>
      <pubDate>Thu, 07 Feb 2008 20:21:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6824#M716</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-02-07T20:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: Data Manipulation and Freq</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6825#M717</link>
      <description>Hi Cynthia ,&lt;BR /&gt;
&lt;BR /&gt;
The code u have posted actually approximately meets my needs.But the problem I have is I need to get the total count(&amp;amp; percentage as xx.x%) of all the defects persystem along with the defects in each system.&lt;BR /&gt;
Some thing like this...&lt;BR /&gt;
&lt;BR /&gt;
CardioVascular 3&lt;BR /&gt;
   Atheroscelorosis 1&lt;BR /&gt;
   Myocardialinfaction 2&lt;BR /&gt;
Neurology 1&lt;BR /&gt;
   Vertigo 1&lt;BR /&gt;
&lt;BR /&gt;
And further I need to generate the same as a Dataset or a ODS output..&lt;BR /&gt;
&lt;BR /&gt;
Thanks &amp;amp; Regards&lt;BR /&gt;
Rajesh</description>
      <pubDate>Fri, 08 Feb 2008 11:38:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6825#M717</guid>
      <dc:creator>madhu</dc:creator>
      <dc:date>2008-02-08T11:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: Data Manipulation and Freq</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6826#M718</link>
      <description>I do have a problem similar to that of Mr.Rajesh.Can anybody help me out?&lt;BR /&gt;
&lt;BR /&gt;
Regards,&lt;BR /&gt;
Nani</description>
      <pubDate>Wed, 13 Feb 2008 07:58:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6826#M718</guid>
      <dc:creator>deleted_user</dc:creator>
      <dc:date>2008-02-13T07:58:17Z</dc:date>
    </item>
    <item>
      <title>Re: Data Manipulation and Freq</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6827#M719</link>
      <description>Hi:&lt;BR /&gt;
  You can get counts and percents from either PROC REPORT or PROC TABULATE using the N and PCTN statistic.&lt;BR /&gt;
&lt;BR /&gt;
  For more help with the syntax of either procedure or the syntax of the program example below or for help creating a dataset from ODS procedure output, your best bet is to contact SAS Technical Support. Also, many companies that do clinical trial reporting ALREADY have procedures and macro programs that they use to generate the kinds of reports that you ask about. So, before you go too far down the road of ANY procedure, you should check with other programmers at your company to determine what validated programs and methods are already in use.&lt;BR /&gt;
&lt;BR /&gt;
  To contact SAS Technical Support, go to &lt;A href="http://support.sas.com/" target="_blank"&gt;http://support.sas.com/&lt;/A&gt; and in the left-hand navigation pane, click on the link entitled "Submit a Problem".&lt;BR /&gt;
 &lt;BR /&gt;
cynthia&lt;BR /&gt;
&lt;BR /&gt;
Some example code:&lt;BR /&gt;
[pre]&lt;BR /&gt;
data defects;&lt;BR /&gt;
length system $20 defect $20;&lt;BR /&gt;
  infile datalines;&lt;BR /&gt;
  input system $ defect $;&lt;BR /&gt;
return;&lt;BR /&gt;
datalines;&lt;BR /&gt;
Cardiovascular Atheroscelorosis&lt;BR /&gt;
Neurology Vertigo&lt;BR /&gt;
Cardiovascular Myocardialinfarction&lt;BR /&gt;
Nephrology Renal Failure&lt;BR /&gt;
Gastroenterology Gastritis&lt;BR /&gt;
Gastroenterology Jaundice&lt;BR /&gt;
Gastroenterology Gastritis&lt;BR /&gt;
Cardiovascular Myocardialinfarction&lt;BR /&gt;
;&lt;BR /&gt;
run;&lt;BR /&gt;
     &lt;BR /&gt;
proc format;&lt;BR /&gt;
  picture pct low-high='009.99%';&lt;BR /&gt;
run;&lt;BR /&gt;
   &lt;BR /&gt;
ods html file='c:\temp\pctrept.html' style=sasweb;&lt;BR /&gt;
    &lt;BR /&gt;
proc tabulate data=defects ;&lt;BR /&gt;
  title 'Percents and Counts with PROC TABULATE';&lt;BR /&gt;
  class system defect;&lt;BR /&gt;
  table system=' ' * (all defect=' ' ) all,&lt;BR /&gt;
        n pctn*f=pct. /&lt;BR /&gt;
        box='system and defect';&lt;BR /&gt;
run;&lt;BR /&gt;
     &lt;BR /&gt;
proc report data=defects nowd&lt;BR /&gt;
  style(summary)=Header;&lt;BR /&gt;
  title 'Percents and Counts with PROC REPORT';&lt;BR /&gt;
  column system defect n pctn;&lt;BR /&gt;
  define system /group&lt;BR /&gt;
     style(column)=Header;&lt;BR /&gt;
  define defect/group&lt;BR /&gt;
     style(column)=Header;&lt;BR /&gt;
  define n/ 'N' f=comma6.;&lt;BR /&gt;
  define pctn / 'PctN' f=percent8.2;&lt;BR /&gt;
  break before system/  summarize;&lt;BR /&gt;
  compute before system;&lt;BR /&gt;
    defect = 'All';&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  compute after system;&lt;BR /&gt;
    line ' ';&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
  rbreak after /summarize;&lt;BR /&gt;
  compute after;&lt;BR /&gt;
    system = 'All';&lt;BR /&gt;
    defect = 'All';&lt;BR /&gt;
  endcomp;&lt;BR /&gt;
run;&lt;BR /&gt;
ods html close;&lt;BR /&gt;
[/pre]</description>
      <pubDate>Wed, 13 Feb 2008 18:47:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6827#M719</guid>
      <dc:creator>Cynthia_sas</dc:creator>
      <dc:date>2008-02-13T18:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: Data Manipulation and Freq</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6828#M720</link>
      <description>Another alternative is that you calculate your frequency counts and totals using a summary procedure (FREQ, SQL, MEANS, UNIVARIATE - take your pick - I've seen lots of different methods) and merge the totals and frequencies together. Calculate %age, create a character variable {xx (xxx%)} and use PROC REPORT to print out the xx (xxx%) variables along with labels, headers, footers, etc.&lt;BR /&gt;
&lt;BR /&gt;
That's pretty much what I do anyway ... mainly because I dislike TABULATE ...</description>
      <pubDate>Thu, 14 Feb 2008 07:49:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6828#M720</guid>
      <dc:creator>LawrenceHW</dc:creator>
      <dc:date>2008-02-14T07:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: Data Manipulation and Freq</title>
      <link>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6829#M721</link>
      <description>Thanks for the replies guys..&lt;BR /&gt;
&lt;BR /&gt;
cheers,&lt;BR /&gt;
rajesh</description>
      <pubDate>Thu, 14 Feb 2008 10:11:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Health-and-Life-Sciences/Data-Manipulation-and-Freq/m-p/6829#M721</guid>
      <dc:creator>madhu</dc:creator>
      <dc:date>2008-02-14T10:11:48Z</dc:date>
    </item>
  </channel>
</rss>

