<?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: Multiple line graphs in one graph. in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Multiple-line-graphs-in-one-graph/m-p/677239#M204272</link>
    <description>&lt;P&gt;Thanks million&amp;nbsp;&lt;/P&gt;&lt;P&gt;It works perfectly&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 17 Aug 2020 14:22:51 GMT</pubDate>
    <dc:creator>Barkamih</dc:creator>
    <dc:date>2020-08-17T14:22:51Z</dc:date>
    <item>
      <title>Multiple line graphs in one graph.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-line-graphs-in-one-graph/m-p/677177#M204254</link>
      <description>&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using&amp;nbsp; the following code for my data to preset 4 groups in one graph, as you see this code can do what I'm looking for but the only issue is that I couldn't make the line graphs in different looking such as, continues dots, not continues line or whatever any differentiation to make line different for each group.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;by default, these graphs are in different colours, but different colures do not work for black and white printing.&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'll be happy for your help&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Barkamih&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc nlin data = milkno method = marquardt;&lt;BR /&gt;parms A = 15 B = -0.19 C = 0.0012 ;&lt;BR /&gt;by pr ;&lt;BR /&gt;model TEST_DAY_milk_kg = A * Time **b * exp(-C*Time);&lt;BR /&gt;output out = Fit predicted = pred ;&lt;BR /&gt;symbol1 interpol= join value = star color= black;&lt;BR /&gt;symbol2 interpol = none value = none color = red;&lt;BR /&gt;run;&lt;BR /&gt;QUIT;&lt;/P&gt;&lt;P&gt;proc sort data=fit;&lt;BR /&gt;by time;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;proc sgplot data=fit;&lt;BR /&gt;series y=pred x=time / group=pr;&lt;BR /&gt;xaxis values=(1 to 12 by 1);&lt;BR /&gt;yaxis values=(0 to 40 by 5);&lt;/P&gt;&lt;P&gt;run;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2020 11:56:59 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-line-graphs-in-one-graph/m-p/677177#M204254</guid>
      <dc:creator>Barkamih</dc:creator>
      <dc:date>2020-08-17T11:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple line graphs in one graph.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-line-graphs-in-one-graph/m-p/677180#M204256</link>
      <description>&lt;P&gt;With PROC SGPLOT, you need the ATTRPRIORITY=NONE option and the STYLEATTRS statement. Example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics/attrpriority=none;
proc sgplot data=sashelp.stocks(where=(stock='IBM' or stock='Microsoft'));
	styleattrs datacontrastcolors=(black black) datalinepatterns=(dot solid);
	series x=date y=open/group=stock ;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The list of line patterns is here:&amp;nbsp;&lt;A href="https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=grstatproc&amp;amp;docsetTarget=p0er4dg9tojp05n1sf7maeqdz1d8.htm&amp;amp;locale=en#p1dutdndpyliwnn16x321pvxwsej"&gt;https://documentation.sas.com/?cdcId=pgmsascdc&amp;amp;cdcVersion=9.4_3.4&amp;amp;docsetId=grstatproc&amp;amp;docsetTarget=p0er4dg9tojp05n1sf7maeqdz1d8.htm&amp;amp;locale=en#p1dutdndpyliwnn16x321pvxwsej&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2020 12:08:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-line-graphs-in-one-graph/m-p/677180#M204256</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-08-17T12:08:40Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple line graphs in one graph.</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Multiple-line-graphs-in-one-graph/m-p/677239#M204272</link>
      <description>&lt;P&gt;Thanks million&amp;nbsp;&lt;/P&gt;&lt;P&gt;It works perfectly&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Aug 2020 14:22:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Multiple-line-graphs-in-one-graph/m-p/677239#M204272</guid>
      <dc:creator>Barkamih</dc:creator>
      <dc:date>2020-08-17T14:22:51Z</dc:date>
    </item>
  </channel>
</rss>

