<?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 Plotting a graph with multiple lines given a dataset containing a list of Intercepts and Gradients in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Plotting-a-graph-with-multiple-lines-given-a-dataset-containing/m-p/746444#M234160</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I currently have a dataset which looks like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Intercept&amp;nbsp; &amp;nbsp; &amp;nbsp; Slope&lt;/P&gt;&lt;P&gt;5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;/P&gt;&lt;P&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 6&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;Is there any way to plot a graph containing all of these lines?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Tue, 08 Jun 2021 13:10:07 GMT</pubDate>
    <dc:creator>EC27556</dc:creator>
    <dc:date>2021-06-08T13:10:07Z</dc:date>
    <item>
      <title>Plotting a graph with multiple lines given a dataset containing a list of Intercepts and Gradients</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Plotting-a-graph-with-multiple-lines-given-a-dataset-containing/m-p/746444#M234160</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I currently have a dataset which looks like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Intercept&amp;nbsp; &amp;nbsp; &amp;nbsp; Slope&lt;/P&gt;&lt;P&gt;5&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5&lt;/P&gt;&lt;P&gt;1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;/P&gt;&lt;P&gt;3&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 6&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;Is there any way to plot a graph containing all of these lines?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 13:10:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Plotting-a-graph-with-multiple-lines-given-a-dataset-containing/m-p/746444#M234160</guid>
      <dc:creator>EC27556</dc:creator>
      <dc:date>2021-06-08T13:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting a graph with multiple lines given a dataset containing a list of Intercepts and Gradien</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Plotting-a-graph-with-multiple-lines-given-a-dataset-containing/m-p/746446#M234162</link>
      <description>&lt;P&gt;PROC SGPLOT using the LINEPARM statement.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/grstatproc/n19gxtzyuf79t3n16g5v26b73ckv.htm#p11k7hw26rfxevn1mybt7lhnhpzp" target="_blank" rel="noopener"&gt;https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/grstatproc/n19gxtzyuf79t3n16g5v26b73ckv.htm#p11k7hw26rfxevn1mybt7lhnhpzp&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Depending on what you want and how many lines you have, you may need to use CALL EXECUTE or macros.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jun 2021 13:39:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Plotting-a-graph-with-multiple-lines-given-a-dataset-containing/m-p/746446#M234162</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-06-08T13:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: Plotting a graph with multiple lines given a dataset containing a list of Intercepts and Gradien</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Plotting-a-graph-with-multiple-lines-given-a-dataset-containing/m-p/746739#M234287</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input Intercept      Slope;
cards;
5                      5
1                      2
3                      6
;


proc sgplot data=have noautolegend;
scatter x=intercept y=slope/markerattrs=(size=0);
lineparm  x=0 y=intercept slope=slope;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Ksharp_0-1623245662270.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/60182i668BC0F126DB84F1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Ksharp_0-1623245662270.png" alt="Ksharp_0-1623245662270.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jun 2021 13:36:55 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Plotting-a-graph-with-multiple-lines-given-a-dataset-containing/m-p/746739#M234287</guid>
      <dc:creator>Ksharp</dc:creator>
      <dc:date>2021-06-09T13:36:55Z</dc:date>
    </item>
  </channel>
</rss>

