<?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 Creating graphs in sas in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Creating-graphs-in-sas/m-p/188736#M47744</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a list of 20-30 factors which I would like to create 4 graphs each for. Ideally I would like them in an excel file, each on a separate sheet (four graphs per sheet) but I know that's next too impossible. Exporting to powerpoint and pdf are sufficient alternatives. What I like about Excel is that you can separate each factor into its own workbook. I have started the process off using robslink.com as a reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code is below (which I took from &lt;A href="http://www.robslink.com/SAS/democd7/clin1_info.htm" title="http://www.robslink.com/SAS/democd7/clin1_info.htm"&gt;http://www.robslink.com/SAS/democd7/clin1_info.htm&lt;/A&gt;) &lt;/P&gt;&lt;P&gt;Couple of points:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I am trying to get one factor right so I have just created a dataset with one factor and dummy values.&lt;/LI&gt;&lt;LI&gt;I want 4 graphs but using the same graph here 4 times for illustrative purposes&lt;/LI&gt;&lt;LI&gt;In the reference above, the first few lines of code where he defines htmlvar, I'm not sure what this does.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My main challenges are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;In the link above he creates a bar chart with a line chart on a secondary graph and retains with a "MS excel look". I can reproduce a single graph but I need guidance on how to create 4 on a single page, that are the same size. I'm not sure what the code highlighted in red does.&lt;/LI&gt;&lt;LI&gt;I want the code to be flexible so that it can handle loads of different factors with different ranges of levels, some numeric (age) and some character (occupation).&lt;/LI&gt;&lt;LI&gt;The code highlighted in pink is not from the above link. I took it from a different source about exporting 4 graphs to a pdf. it doesn't work properly for me (graphs appear on a pdf but they don't have the format&amp;nbsp; created by robslink code and they are not fitted correctly on the page.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data my_data; &lt;BR /&gt;INFILE DATALINES DLM=',';&lt;BR /&gt;format factor level $16.;&lt;BR /&gt;input factor $ level $ exposure lossratio ;&lt;BR /&gt;datalines ;&lt;BR /&gt;occupation,professional,500,.44&lt;BR /&gt;occupation,student,1000,.55&lt;BR /&gt;occupation,retired,2000,.75&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;data my_data; set my_data;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;length htmlvar $500;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;htmlvar=&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt; 'title='||quote(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; 'Level: '|| trim(left(level)) ||'0D'x||&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; 'Vehicle Exposure Years: '|| trim(left(v01_veh_exp_years))||&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; 'Loss Ratio: '|| trim(left(all_LR)))||&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt; ' href="clin1_info.htm"';&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;goptions device=png;&lt;BR /&gt;goptions xpixels=750 ypixels=500;&lt;BR /&gt;goptions noborder;&lt;/P&gt;&lt;P&gt;ODS LISTING CLOSE;&lt;BR /&gt;ODS HTML path=odsout body="&amp;amp;name..htm" &lt;BR /&gt; (title="SAS/Graph gbarline Line &amp;amp; Column Chart") style=sasweb;&lt;/P&gt;&lt;P&gt;goptions gunit=pct htitle=6 ftitle="albany amt/bold" htext=4.25 ftext="albany amt/bold";&lt;/P&gt;&lt;P&gt;title1 ls=1.5 "&amp;amp;name. - LR";&lt;BR /&gt;/*title2 "Classic Combination Chart";*/&lt;/P&gt;&lt;P&gt;pattern1 v=solid color=cx993366;&amp;nbsp; &lt;/P&gt;&lt;P&gt;symbol1 interpol=join width=3 value=dot height=4 color=navy;&amp;nbsp; &lt;/P&gt;&lt;P&gt;axis1 label=(a=90 'Exposure Years') offset=(0,2) order=(0 to 30000 by 5000) major=(h=-1) minor=none;&lt;BR /&gt;axis2 label=(a=90 'Loss Ratio') offset=(0,2) order=(0 to 2 by .5) major=(h=-1) minor=none;&lt;BR /&gt;axis3 label = none value=(angle=90) offset=(13,13) ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;device=pdfc&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff00ff;"&gt;ftext="swissb";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff00ff;"&gt;ods pdf file="H:\Commercial\Fleet\Presentations\four in one.pdf" startpage=never;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff00ff;"&gt;ods proclabel "Four graphs on one page" ;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff00ff;"&gt;goptions hsize=5.20 in vsize=3.75 in;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff00ff;"&gt;title1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc gbarline data=my_data2;&lt;BR /&gt;&lt;SPAN style="color: #ff00ff;"&gt;goptions horigin=0in vorigin=3.99 in;&lt;/SPAN&gt;&lt;BR /&gt; bar level / discrete &lt;BR /&gt;&amp;nbsp; type=sum sumvar=v01_veh_exp_years &lt;BR /&gt;&amp;nbsp; axis=axis1 maxis=axis3 &lt;BR /&gt;&amp;nbsp; space=5 width=6 &lt;BR /&gt;&amp;nbsp; html=htmlvar &lt;BR /&gt;&amp;nbsp; des='' name="&amp;amp;name" ;&lt;BR /&gt; plot / &lt;BR /&gt;&amp;nbsp; type=sum sumvar=all_LR &lt;BR /&gt;&amp;nbsp; axis=axis2 &lt;BR /&gt;&amp;nbsp; html=htmlvar;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;proc gbarline data=my_data2;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;goptions horigin=5.25;&lt;/SPAN&gt;&lt;BR /&gt; bar level / discrete &lt;BR /&gt;&amp;nbsp; type=sum sumvar=v01_veh_exp_years &lt;BR /&gt;&amp;nbsp; axis=axis1 maxis=axis3 &lt;BR /&gt;&amp;nbsp; space=5 width=6 &lt;BR /&gt;&amp;nbsp; html=htmlvar &lt;BR /&gt;&amp;nbsp; des='' name="&amp;amp;name" ;&lt;BR /&gt; plot / &lt;BR /&gt;&amp;nbsp; type=sum sumvar=all_LR &lt;BR /&gt;&amp;nbsp; axis=axis2 &lt;BR /&gt;&amp;nbsp; html=htmlvar;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc gbarline data=my_data2;&lt;BR /&gt;&lt;SPAN style="color: #ff00ff;"&gt;goptions hsize= 5.20in vsize= 3.75in device=pdfc ftext="swissb"&lt;/SPAN&gt;&lt;BR /&gt; bar level / discrete &lt;BR /&gt;&amp;nbsp; type=sum sumvar=v01_veh_exp_years &lt;BR /&gt;&amp;nbsp; axis=axis1 maxis=axis3 &lt;BR /&gt;&amp;nbsp; space=5 width=6 &lt;BR /&gt;&amp;nbsp; html=htmlvar &lt;BR /&gt;&amp;nbsp; des='' name="&amp;amp;name" ;&lt;BR /&gt; plot / &lt;BR /&gt;&amp;nbsp; type=sum sumvar=all_LR &lt;BR /&gt;&amp;nbsp; axis=axis2 &lt;BR /&gt;&amp;nbsp; html=htmlvar;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc gbarline data=my_data2;&lt;BR /&gt;&lt;SPAN style="color: #ff00ff;"&gt;goptions horigin=5.25 in;&lt;/SPAN&gt;&lt;BR /&gt; bar level / discrete &lt;BR /&gt;&amp;nbsp; type=sum sumvar=v01_veh_exp_years &lt;BR /&gt;&amp;nbsp; axis=axis1 maxis=axis3 &lt;BR /&gt;&amp;nbsp; space=5 width=6 &lt;BR /&gt;&amp;nbsp; html=htmlvar &lt;BR /&gt;&amp;nbsp; des='' name="&amp;amp;name" ;&lt;BR /&gt; plot / &lt;BR /&gt;&amp;nbsp; type=sum sumvar=all_LR &lt;BR /&gt;&amp;nbsp; axis=axis2 &lt;BR /&gt;&amp;nbsp; html=htmlvar;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;ods pdf close;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Mar 2015 17:03:48 GMT</pubDate>
    <dc:creator>brophymj</dc:creator>
    <dc:date>2015-03-02T17:03:48Z</dc:date>
    <item>
      <title>Creating graphs in sas</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Creating-graphs-in-sas/m-p/188736#M47744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a list of 20-30 factors which I would like to create 4 graphs each for. Ideally I would like them in an excel file, each on a separate sheet (four graphs per sheet) but I know that's next too impossible. Exporting to powerpoint and pdf are sufficient alternatives. What I like about Excel is that you can separate each factor into its own workbook. I have started the process off using robslink.com as a reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code is below (which I took from &lt;A href="http://www.robslink.com/SAS/democd7/clin1_info.htm" title="http://www.robslink.com/SAS/democd7/clin1_info.htm"&gt;http://www.robslink.com/SAS/democd7/clin1_info.htm&lt;/A&gt;) &lt;/P&gt;&lt;P&gt;Couple of points:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I am trying to get one factor right so I have just created a dataset with one factor and dummy values.&lt;/LI&gt;&lt;LI&gt;I want 4 graphs but using the same graph here 4 times for illustrative purposes&lt;/LI&gt;&lt;LI&gt;In the reference above, the first few lines of code where he defines htmlvar, I'm not sure what this does.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My main challenges are:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;In the link above he creates a bar chart with a line chart on a secondary graph and retains with a "MS excel look". I can reproduce a single graph but I need guidance on how to create 4 on a single page, that are the same size. I'm not sure what the code highlighted in red does.&lt;/LI&gt;&lt;LI&gt;I want the code to be flexible so that it can handle loads of different factors with different ranges of levels, some numeric (age) and some character (occupation).&lt;/LI&gt;&lt;LI&gt;The code highlighted in pink is not from the above link. I took it from a different source about exporting 4 graphs to a pdf. it doesn't work properly for me (graphs appear on a pdf but they don't have the format&amp;nbsp; created by robslink code and they are not fitted correctly on the page.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data my_data; &lt;BR /&gt;INFILE DATALINES DLM=',';&lt;BR /&gt;format factor level $16.;&lt;BR /&gt;input factor $ level $ exposure lossratio ;&lt;BR /&gt;datalines ;&lt;BR /&gt;occupation,professional,500,.44&lt;BR /&gt;occupation,student,1000,.55&lt;BR /&gt;occupation,retired,2000,.75&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;data my_data; set my_data;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;length htmlvar $500;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;htmlvar=&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt; 'title='||quote(&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; 'Level: '|| trim(left(level)) ||'0D'x||&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; 'Vehicle Exposure Years: '|| trim(left(v01_veh_exp_years))||&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;&amp;nbsp; 'Loss Ratio: '|| trim(left(all_LR)))||&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt; ' href="clin1_info.htm"';&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;goptions device=png;&lt;BR /&gt;goptions xpixels=750 ypixels=500;&lt;BR /&gt;goptions noborder;&lt;/P&gt;&lt;P&gt;ODS LISTING CLOSE;&lt;BR /&gt;ODS HTML path=odsout body="&amp;amp;name..htm" &lt;BR /&gt; (title="SAS/Graph gbarline Line &amp;amp; Column Chart") style=sasweb;&lt;/P&gt;&lt;P&gt;goptions gunit=pct htitle=6 ftitle="albany amt/bold" htext=4.25 ftext="albany amt/bold";&lt;/P&gt;&lt;P&gt;title1 ls=1.5 "&amp;amp;name. - LR";&lt;BR /&gt;/*title2 "Classic Combination Chart";*/&lt;/P&gt;&lt;P&gt;pattern1 v=solid color=cx993366;&amp;nbsp; &lt;/P&gt;&lt;P&gt;symbol1 interpol=join width=3 value=dot height=4 color=navy;&amp;nbsp; &lt;/P&gt;&lt;P&gt;axis1 label=(a=90 'Exposure Years') offset=(0,2) order=(0 to 30000 by 5000) major=(h=-1) minor=none;&lt;BR /&gt;axis2 label=(a=90 'Loss Ratio') offset=(0,2) order=(0 to 2 by .5) major=(h=-1) minor=none;&lt;BR /&gt;axis3 label = none value=(angle=90) offset=(13,13) ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;device=pdfc&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff00ff;"&gt;ftext="swissb";&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff00ff;"&gt;ods pdf file="H:\Commercial\Fleet\Presentations\four in one.pdf" startpage=never;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff00ff;"&gt;ods proclabel "Four graphs on one page" ;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff00ff;"&gt;goptions hsize=5.20 in vsize=3.75 in;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #ff00ff;"&gt;title1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc gbarline data=my_data2;&lt;BR /&gt;&lt;SPAN style="color: #ff00ff;"&gt;goptions horigin=0in vorigin=3.99 in;&lt;/SPAN&gt;&lt;BR /&gt; bar level / discrete &lt;BR /&gt;&amp;nbsp; type=sum sumvar=v01_veh_exp_years &lt;BR /&gt;&amp;nbsp; axis=axis1 maxis=axis3 &lt;BR /&gt;&amp;nbsp; space=5 width=6 &lt;BR /&gt;&amp;nbsp; html=htmlvar &lt;BR /&gt;&amp;nbsp; des='' name="&amp;amp;name" ;&lt;BR /&gt; plot / &lt;BR /&gt;&amp;nbsp; type=sum sumvar=all_LR &lt;BR /&gt;&amp;nbsp; axis=axis2 &lt;BR /&gt;&amp;nbsp; html=htmlvar;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;proc gbarline data=my_data2;&lt;BR /&gt;&lt;SPAN style="color: #ff0000;"&gt;goptions horigin=5.25;&lt;/SPAN&gt;&lt;BR /&gt; bar level / discrete &lt;BR /&gt;&amp;nbsp; type=sum sumvar=v01_veh_exp_years &lt;BR /&gt;&amp;nbsp; axis=axis1 maxis=axis3 &lt;BR /&gt;&amp;nbsp; space=5 width=6 &lt;BR /&gt;&amp;nbsp; html=htmlvar &lt;BR /&gt;&amp;nbsp; des='' name="&amp;amp;name" ;&lt;BR /&gt; plot / &lt;BR /&gt;&amp;nbsp; type=sum sumvar=all_LR &lt;BR /&gt;&amp;nbsp; axis=axis2 &lt;BR /&gt;&amp;nbsp; html=htmlvar;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc gbarline data=my_data2;&lt;BR /&gt;&lt;SPAN style="color: #ff00ff;"&gt;goptions hsize= 5.20in vsize= 3.75in device=pdfc ftext="swissb"&lt;/SPAN&gt;&lt;BR /&gt; bar level / discrete &lt;BR /&gt;&amp;nbsp; type=sum sumvar=v01_veh_exp_years &lt;BR /&gt;&amp;nbsp; axis=axis1 maxis=axis3 &lt;BR /&gt;&amp;nbsp; space=5 width=6 &lt;BR /&gt;&amp;nbsp; html=htmlvar &lt;BR /&gt;&amp;nbsp; des='' name="&amp;amp;name" ;&lt;BR /&gt; plot / &lt;BR /&gt;&amp;nbsp; type=sum sumvar=all_LR &lt;BR /&gt;&amp;nbsp; axis=axis2 &lt;BR /&gt;&amp;nbsp; html=htmlvar;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc gbarline data=my_data2;&lt;BR /&gt;&lt;SPAN style="color: #ff00ff;"&gt;goptions horigin=5.25 in;&lt;/SPAN&gt;&lt;BR /&gt; bar level / discrete &lt;BR /&gt;&amp;nbsp; type=sum sumvar=v01_veh_exp_years &lt;BR /&gt;&amp;nbsp; axis=axis1 maxis=axis3 &lt;BR /&gt;&amp;nbsp; space=5 width=6 &lt;BR /&gt;&amp;nbsp; html=htmlvar &lt;BR /&gt;&amp;nbsp; des='' name="&amp;amp;name" ;&lt;BR /&gt; plot / &lt;BR /&gt;&amp;nbsp; type=sum sumvar=all_LR &lt;BR /&gt;&amp;nbsp; axis=axis2 &lt;BR /&gt;&amp;nbsp; html=htmlvar;&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;quit;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;ods pdf close;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 17:03:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Creating-graphs-in-sas/m-p/188736#M47744</guid>
      <dc:creator>brophymj</dc:creator>
      <dc:date>2015-03-02T17:03:48Z</dc:date>
    </item>
    <item>
      <title>Re: Creating graphs in sas</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Creating-graphs-in-sas/m-p/188737#M47745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to post this under the graphics forum:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/resources/papers/proceedings12/285-2012.pdf" title="http://support.sas.com/resources/papers/proceedings12/285-2012.pdf"&gt;http://support.sas.com/resources/papers/proceedings12/285-2012.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2015 19:04:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Creating-graphs-in-sas/m-p/188737#M47745</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2015-03-02T19:04:26Z</dc:date>
    </item>
  </channel>
</rss>

