<?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: Regression Plot with Confidence 95% CI Bounds in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Regression-Plot-with-Confidence-95-CI-Bounds/m-p/747040#M21649</link>
    <description>&lt;P&gt;Already figured out a way to solve my problem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgplot data= Tdata;&lt;/P&gt;&lt;P&gt;reg x=&lt;SPAN&gt;bckTrans_auc y=LFTvalues/CLM CLI;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;yaxis label = "AST (Units per liter)";&lt;BR /&gt;xaxis label = "AUC(h*ng/mL)";&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 10 Jun 2021 14:33:29 GMT</pubDate>
    <dc:creator>ugoagwup</dc:creator>
    <dc:date>2021-06-10T14:33:29Z</dc:date>
    <item>
      <title>Regression Plot with Confidence 95% CI Bounds</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression-Plot-with-Confidence-95-CI-Bounds/m-p/747031#M21647</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;I need some assistance.&amp;nbsp; A simple linear regression script such as the following would give me a regression plot with 95% CI bounds on default&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Regression Plot" style="width: 646px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/60219i30CFD66243F4FAA9/image-size/large?v=v2&amp;amp;px=999" role="button" title="image (1).png" alt="Regression Plot" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Regression Plot&lt;/span&gt;&lt;/span&gt;.&lt;/P&gt;&lt;DIV&gt;Proc glm data= Tdata;&lt;/DIV&gt;&lt;DIV&gt;model LFTvalues = bckTrans_auc/ solution;&lt;BR /&gt;run;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Please how can I use &lt;STRONG&gt;Proc SGplot&lt;/STRONG&gt; to replicate exact same plot and have full control of things display like removing the title from the plot?&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Thu, 10 Jun 2021 14:07:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression-Plot-with-Confidence-95-CI-Bounds/m-p/747031#M21647</guid>
      <dc:creator>ugoagwup</dc:creator>
      <dc:date>2021-06-10T14:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: Regression Plot with Confidence 95% CI Bounds</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression-Plot-with-Confidence-95-CI-Bounds/m-p/747034#M21648</link>
      <description>Follow the instructions here: &lt;A href="https://blogs.sas.com/content/iml/2012/08/01/data-fro-ods-graphics.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2012/08/01/data-fro-ods-graphics.html&lt;/A&gt;</description>
      <pubDate>Thu, 10 Jun 2021 14:12:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression-Plot-with-Confidence-95-CI-Bounds/m-p/747034#M21648</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-06-10T14:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: Regression Plot with Confidence 95% CI Bounds</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression-Plot-with-Confidence-95-CI-Bounds/m-p/747040#M21649</link>
      <description>&lt;P&gt;Already figured out a way to solve my problem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;proc sgplot data= Tdata;&lt;/P&gt;&lt;P&gt;reg x=&lt;SPAN&gt;bckTrans_auc y=LFTvalues/CLM CLI;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;yaxis label = "AST (Units per liter)";&lt;BR /&gt;xaxis label = "AUC(h*ng/mL)";&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Run;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jun 2021 14:33:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression-Plot-with-Confidence-95-CI-Bounds/m-p/747040#M21649</guid>
      <dc:creator>ugoagwup</dc:creator>
      <dc:date>2021-06-10T14:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: Regression Plot with Confidence 95% CI Bounds</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression-Plot-with-Confidence-95-CI-Bounds/m-p/747048#M21650</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/13879"&gt;@Reeza&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The following codes solved my problem&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;proc sgplot data= Tdata; reg x= bckTrans_auc y=LFTvalues/CLM CLI; yaxis label = "AST (Units per liter)"; xaxis label = "AUC(h*ng/mL)"; Run;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please do you know how I can include the regression equation on the plot?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jun 2021 14:53:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression-Plot-with-Confidence-95-CI-Bounds/m-p/747048#M21650</guid>
      <dc:creator>ugoagwup</dc:creator>
      <dc:date>2021-06-10T14:53:01Z</dc:date>
    </item>
    <item>
      <title>Re: Regression Plot with Confidence 95% CI Bounds</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression-Plot-with-Confidence-95-CI-Bounds/m-p/747049#M21651</link>
      <description>AFAIK there isn't an option for that but you can check the INSET statement or REG statement options which is where I'd expect to see it. &lt;BR /&gt;Otherwise, here's an alternative method. &lt;BR /&gt;&lt;A href="https://blogs.sas.com/content/iml/2013/02/27/slope-of-a-regression-line.html" target="_blank"&gt;https://blogs.sas.com/content/iml/2013/02/27/slope-of-a-regression-line.html&lt;/A&gt;</description>
      <pubDate>Thu, 10 Jun 2021 14:56:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression-Plot-with-Confidence-95-CI-Bounds/m-p/747049#M21651</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2021-06-10T14:56:46Z</dc:date>
    </item>
  </channel>
</rss>

