<?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: Selecting colours for plot lines by grouping variable in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214059#M7973</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;great thank you for your help.&amp;nbsp; I wanted to use minor tickmarks on the horizontal axis and offset the graoh slighty on the left so there was some space between the&amp;nbsp; graph and the border but I am unsure how to do this.&amp;nbsp; In terms of the label on the vertical axess i would like to rotate it 90 degrees but again am unsure of the syntax.I will take a look at the blog mentioned above to see if I can find the answer.&amp;nbsp; thank you again for all your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 May 2015 12:57:42 GMT</pubDate>
    <dc:creator>lisahoward</dc:creator>
    <dc:date>2015-05-14T12:57:42Z</dc:date>
    <item>
      <title>Selecting colours for plot lines by grouping variable</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214051#M7965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;proc gplot data=DM_Work.All_Rates;&lt;/P&gt;&lt;P&gt;plot ir*time=testrx / vaxis = axis1 haxis=axis2&lt;/P&gt;&lt;P&gt; legend=legend1;&lt;/P&gt;&lt;P&gt; run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to specify the colour for the grouping variable TestRX.&amp;nbsp; TestRX groups treated&amp;nbsp; v untreated.&amp;nbsp; I am not sure how to make one line blue and one line red. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help with the syntax would be greatly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 May 2015 09:41:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214051#M7965</guid>
      <dc:creator>lisahoward</dc:creator>
      <dc:date>2015-05-13T09:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting colours for plot lines by grouping variable</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214052#M7966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Move over to using proc sgplot and proc template, they will give you more controll over your output:&lt;/P&gt;&lt;P&gt;&lt;A href="http://support.sas.com/kb/35/864.html" title="http://support.sas.com/kb/35/864.html"&gt;35864 - Change line colors and styles for PROC SGPLOT output&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 May 2015 09:51:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214052#M7966</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-05-13T09:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting colours for plot lines by grouping variable</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214053#M7967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to continue to use GPLOT then the statement that provides control over lines and markers is SYMBOL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Symbol1 color=red I=join;&lt;/P&gt;&lt;P&gt;symbol2 color=blue I=join;&lt;/P&gt;&lt;P&gt;Place these before the gplot statement.&lt;/P&gt;&lt;P&gt;The first value of TestRX encountered will get the characteristics set in the first symbol statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 May 2015 15:05:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214053#M7967</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2015-05-13T15:05:42Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting colours for plot lines by grouping variable</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214054#M7968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I decided et go with Sgplot and use the code below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;proc sgplot data=DM_Work.All_Rates;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; series x=TIME y=IR / group=TestRx markers lineattrs=(pattern=solid ) ;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; REFLINE 1 2 3 4&amp;nbsp; ;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp; XAXIS TYPE = DISCRETE; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&amp;nbsp; yaxis label = 'AMI Rate per 1000' ;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; xaxis label = 'Time in Days ' grid values = (-360 to 360 by 30);&lt;/P&gt;&lt;P&gt;run&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However I want to change the markers so they are filled triangle and filled Circle.&amp;nbsp; How do I do this when using the group = option ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lucy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 11:12:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214054#M7968</guid>
      <dc:creator>lisahoward</dc:creator>
      <dc:date>2015-05-14T11:12:28Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting colours for plot lines by grouping variable</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214055#M7969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lucy, what version of SAS have you got?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 11:31:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214055#M7969</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2015-05-14T11:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting colours for plot lines by grouping variable</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214056#M7970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;9.2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am also trying to figure out how to get minor tick marks on the horizontal axis and rotate the label on the vertical access.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks in advance, SAS graph is new to me &lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://communities.sas.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 11:50:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214056#M7970</guid>
      <dc:creator>lisahoward</dc:creator>
      <dc:date>2015-05-14T11:50:47Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting colours for plot lines by grouping variable</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214057#M7971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your best bet is to have a look through Sanjay's blog at:&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://blogs.sas.com/content/graphicallyspeaking/" title="http://blogs.sas.com/content/graphicallyspeaking/"&gt;http://blogs.sas.com/content/graphicallyspeaking/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;He has working examples for most versions of pretty much everything graph wise.&amp;nbsp; Its better than the documentation.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 12:07:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214057#M7971</guid>
      <dc:creator>RW9</dc:creator>
      <dc:date>2015-05-14T12:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting colours for plot lines by grouping variable</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214058#M7972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Because you have SAS 9.2, I would use the %modstyle macro to change your markers. Such as this below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;%modstyle(&lt;/P&gt;&lt;P&gt;parent=statistical, &lt;/P&gt;&lt;P&gt;name=plotmod,&lt;/P&gt;&lt;P&gt;type=CLM, &lt;/P&gt;&lt;P&gt;colors=red blue, &lt;/P&gt;&lt;P&gt;fillcolors=colors, &lt;/P&gt;&lt;P&gt;markers=triangefilled circlefilled &lt;/P&gt;&lt;P&gt;);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can then call the updated template by using ods listling style = plotmod; (or even ods html style = plotmod;) before your Proc SGPLOT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For documentation on the %modstyle macro go to here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="active_link" href="http://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/viewer.htm#statug_odsgraph_sect056.htm" title="http://support.sas.com/documentation/cdl/en/statug/63347/HTML/default/viewer.htm#statug_odsgraph_sect056.htm"&gt;SAS/STAT(R) 9.22 User's Guide&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought the tickmarks and ticklabels would automatically be in the format you wanted them?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 12:26:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214058#M7972</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2015-05-14T12:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting colours for plot lines by grouping variable</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214059#M7973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;great thank you for your help.&amp;nbsp; I wanted to use minor tickmarks on the horizontal axis and offset the graoh slighty on the left so there was some space between the&amp;nbsp; graph and the border but I am unsure how to do this.&amp;nbsp; In terms of the label on the vertical axess i would like to rotate it 90 degrees but again am unsure of the syntax.I will take a look at the blog mentioned above to see if I can find the answer.&amp;nbsp; thank you again for all your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 12:57:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214059#M7973</guid>
      <dc:creator>lisahoward</dc:creator>
      <dc:date>2015-05-14T12:57:42Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting colours for plot lines by grouping variable</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214060#M7974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi do you know if It is possible to combine my proc template and the macro ?&lt;/P&gt;&lt;P&gt;proc template;&lt;/P&gt;&lt;P&gt;&amp;nbsp; define style myfont;&lt;/P&gt;&lt;P&gt;&amp;nbsp; parent=styles.default;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; style GraphFonts /&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'GraphFootnoteFont' = ("Arial",10pt,bold)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'GraphTitleFont' = ("Arial",6pt,bold)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'GraphValueFont' = ("Arial",8pt)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; 'GraphAnnoFont' =("Arial", 10pt)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'GraphUnicodeFont'=("Arial", 10pt)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'GraphLabelFont'=("Arial", 10pt)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'GraphDataFont'=("Arial", 10pt); &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; end;&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;%modstyle(&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;parent=statistical,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;name=plotmod,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;type=CLM,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;colors=red blue,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;fillcolors=colors,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;markers=triangefilled circlefilled&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; background-color: #ffffff;"&gt;);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 13:32:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214060#M7974</guid>
      <dc:creator>lisahoward</dc:creator>
      <dc:date>2015-05-14T13:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting colours for plot lines by grouping variable</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214061#M7975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lucy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes you can combine the proc template and the %modstyle macro by using parent=myfont in the %modstyle macro, which will reference the template that you have created instead of the STATISTICAL style.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Okay yes, I will try to look at your other questions later if you haven't found a solution by then.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS you could have also changed the colours of your groups solely by using Proc Template too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 13:37:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214061#M7975</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2015-05-14T13:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting colours for plot lines by grouping variable</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214062#M7976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;great thank you. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 13:56:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214062#M7976</guid>
      <dc:creator>lisahoward</dc:creator>
      <dc:date>2015-05-14T13:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: Selecting colours for plot lines by grouping variable</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214063#M7977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's fine. Can you please mark some of the responses to your questions as Correct Answers or Helpful Answers were appropriate?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 May 2015 14:09:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Selecting-colours-for-plot-lines-by-grouping-variable/m-p/214063#M7977</guid>
      <dc:creator>djrisks</dc:creator>
      <dc:date>2015-05-14T14:09:53Z</dc:date>
    </item>
  </channel>
</rss>

