<?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 is not correct in Graphics Programming</title>
    <link>https://communities.sas.com/t5/Graphics-Programming/Regression-is-not-correct/m-p/472055#M16298</link>
    <description>&lt;P&gt;I've converted your sample data into a data step, and plotted the data using your code (posted below, in case that helps anyone else trying to help).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since the sample data only has one value for cpevent1 (the x-value), I can't really tell much.&lt;/P&gt;
&lt;P&gt;Also, since none of the symbol statements have a line specified (they all have interpol=none), I suspect that the regression line and equation shown in your document must have been drawn by the annotate dataset (which you don't provide).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;data pk1;&lt;BR /&gt;length cpevent1 $4;&lt;BR /&gt;infile datalines dlm=',';&lt;BR /&gt;input Obs PKPRAW cpevent1 cpevent2 pred z_median _geomean yp;&lt;BR /&gt;datalines;&lt;BR /&gt;1, 11.0, C2D1, 2, 3.65562, 61.2, 58.2725, 38.6916&lt;BR /&gt;2, 25.2, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;3, 27.1, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;4, 27.3, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;5, 29.8, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;6, 30.5, C2D1, 2, 3.65562, 61.2, 58.2725, 38.6916&lt;BR /&gt;7, 34.9, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;8, 39.0, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;9, 39.2, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;10, 42.4, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;11, 44.3, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;12, 45.8, C2D1, 2, 3.65562, 61.2, 58.2725, 38.6916&lt;BR /&gt;13, 47.6, C2D1, 2, 3.65562, 61.2, 58.2725, 38.6916&lt;BR /&gt;14, 47.7, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;15, 48.0, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;symbol1 v=circle i=none c=BLACK h=2;&lt;BR /&gt;symbol2 v=none l=1 i=join c=BLACK h=3;&lt;BR /&gt;symbol3 v=square i = none c=BLACK h=3;&lt;BR /&gt;symbol4 v=star i = none c=BLACK h=3;&lt;/P&gt;
&lt;P&gt;axis1 logbase=10 logstyle=expand minor=(h=0.5) label=(h=2.5 "Cycle");&lt;BR /&gt;axis2 logbase=10 logstyle=expand minor=(h=0.5) label=(h=2.5 angle=90 "&amp;amp;l_pparm");&lt;BR /&gt;legend1 value=('Individual' 'Linear Regression' 'Geometric Mean' 'Median') label=(' ');&lt;/P&gt;
&lt;P&gt;proc gplot data=pk1 /*annotate=anno*/;&lt;BR /&gt;plot pkpraw*cpevent1=1 yp*cpevent1=2 _geomean*cpevent1=3 z_median*cpevent1=4 /overlay &lt;BR /&gt;skipmiss vaxis=axis2 haxis=axis1 hzero vzero legend=legend1 noframe;&lt;BR /&gt;format pkpraw pred _geomean z_median 8.;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's the output, with the limited sample data:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="regression.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21307iA6469B050350A4DF/image-size/large?v=v2&amp;amp;px=999" role="button" title="regression.png" alt="regression.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a screen-capture of the user's graph from the .docx file (for those not wanting to open the document):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="regression_doc.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21309i69ED258187B6BE78/image-size/large?v=v2&amp;amp;px=999" role="button" title="regression_doc.png" alt="regression_doc.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 21 Jun 2018 12:01:31 GMT</pubDate>
    <dc:creator>GraphGuy</dc:creator>
    <dc:date>2018-06-21T12:01:31Z</dc:date>
    <item>
      <title>Regression is not correct</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression-is-not-correct/m-p/471737#M16284</link>
      <description>&lt;P&gt;Thanks to all who helped me with my last post, but I got pulled off that project to work on another.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am currently working with some existing code, but the figure that is being produced is not correct.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;symbol1 v=circle i=none c=BLACK h=2;&lt;BR /&gt;symbol2 v=none l=1 i=join c=BLACK h=3;&lt;BR /&gt;symbol3 v=square i = none c=BLACK h=3;&lt;BR /&gt;symbol4 v=star i = none c=BLACK h=3;&lt;BR /&gt;&lt;BR /&gt;*goptions ftext=ARIAL;&lt;BR /&gt;axis1 logbase=10 logstyle=expand minor=(h=0.5) label=(h=2.5 "Cycle");&lt;BR /&gt;axis2 logbase=10 logstyle=expand minor=(h=0.5) label=(h=2.5 angle=90 "&amp;amp;l_pparm");&lt;BR /&gt;legend1 value=('Individual' 'Linear Regression' 'Geometric Mean' 'Median') label=(' ');&lt;/P&gt;&lt;P&gt;proc gplot data=pk1 annotate=anno;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;plot pkpraw*cpevent1=1&lt;BR /&gt;yp*cpevent1=2&lt;BR /&gt;_geomean*cpevent1=3&lt;BR /&gt;z_median*cpevent1=4&lt;BR /&gt;/overlay skipmiss vaxis=axis2 haxis=axis1 hzero vzero legend=legend1 noframe;&lt;BR /&gt;format pkpraw pred _geomean z_median 8.;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is some of the data that is being used.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Obs, PKPRAW, cpevent1, cpevent2, pred, z_median, _geomean yp&lt;BR /&gt;1, 11.0, C2D1, 2, 3.65562, 61.2, 58.2725, 38.6916&lt;BR /&gt;2, 25.2, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;3, 27.1, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;4, 27.3, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;5, 29.8, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;6, 30.5, C2D1, 2, 3.65562, 61.2, 58.2725, 38.6916&lt;BR /&gt;7, 34.9, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;8, 39.0, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;9, 39.2, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;10, 42.4, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;11, 44.3, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;12, 45.8, C2D1, 2, 3.65562, 61.2, 58.2725, 38.6916&lt;BR /&gt;13, 47.6, C2D1, 2, 3.65562, 61.2, 58.2725, 38.6916&lt;BR /&gt;14, 47.7, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;15, 48.0, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output is attached.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 15:34:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression-is-not-correct/m-p/471737#M16284</guid>
      <dc:creator>cjkim1030</dc:creator>
      <dc:date>2018-06-20T15:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: Regression is not correct</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression-is-not-correct/m-p/471745#M16285</link>
      <description>&lt;P&gt;Many of us will not download or open a Microsoft Office document because it is a security risk. Therefore, whatever information is in the .docx file needs to be pasted into your message. Furthermore, I do not see a statement of what exactly is wrong with the regression, please make that clear.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, please post your data in the form of a SAS data set. Follow these instructions:&amp;nbsp;&lt;A href="https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712" target="_blank"&gt;https://communities.sas.com/t5/SAS-Communities-Library/How-to-create-a-data-step-version-of-your-data-AKA-generate/ta-p/258712&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Once you take care of these items, I'm sure you will get the help your are looking for.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 15:41:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression-is-not-correct/m-p/471745#M16285</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2018-06-20T15:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: Regression is not correct</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression-is-not-correct/m-p/471796#M16290</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/215429"&gt;@cjkim1030&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Thanks to all who helped me with my last post, but I got pulled off that project to work on another.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am currently working with some existing code, &lt;STRONG&gt;&lt;FONT color="#993366" size="5"&gt;but the figure that is being produced is not correct.&amp;nbsp;&amp;nbsp;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;symbol1 v=circle i=none c=BLACK h=2;&lt;BR /&gt;symbol2 v=none l=1 i=join c=BLACK h=3;&lt;BR /&gt;symbol3 v=square i = none c=BLACK h=3;&lt;BR /&gt;symbol4 v=star i = none c=BLACK h=3;&lt;BR /&gt;&lt;BR /&gt;*goptions ftext=ARIAL;&lt;BR /&gt;axis1 logbase=10 logstyle=expand minor=(h=0.5) label=(h=2.5 "Cycle");&lt;BR /&gt;axis2 logbase=10 logstyle=expand minor=(h=0.5) label=(h=2.5 angle=90 "&amp;amp;l_pparm");&lt;BR /&gt;legend1 value=('Individual' 'Linear Regression' 'Geometric Mean' 'Median') label=(' ');&lt;/P&gt;
&lt;P&gt;proc gplot data=pk1 annotate=anno;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;plot pkpraw*cpevent1=1&lt;BR /&gt;yp*cpevent1=2&lt;BR /&gt;_geomean*cpevent1=3&lt;BR /&gt;z_median*cpevent1=4&lt;BR /&gt;/overlay skipmiss vaxis=axis2 haxis=axis1 hzero vzero legend=legend1 noframe;&lt;BR /&gt;format pkpraw pred _geomean z_median 8.;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is some of the data that is being used.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Obs, PKPRAW, cpevent1, cpevent2, pred, z_median, _geomean yp&lt;BR /&gt;1, 11.0, C2D1, 2, 3.65562, 61.2, 58.2725, 38.6916&lt;BR /&gt;2, 25.2, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;3, 27.1, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;4, 27.3, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;5, 29.8, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;6, 30.5, C2D1, 2, 3.65562, 61.2, 58.2725, 38.6916&lt;BR /&gt;7, 34.9, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;8, 39.0, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;9, 39.2, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;10, 42.4, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;11, 44.3, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;12, 45.8, C2D1, 2, 3.65562, 61.2, 58.2725, 38.6916&lt;BR /&gt;13, 47.6, C2D1, 2, 3.65562, 61.2, 58.2725, 38.6916&lt;BR /&gt;14, 47.7, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;15, 48.0, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The output is attached.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you in advance.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What makes you think the figure is "not correct"?&lt;/P&gt;
&lt;P&gt;If the issue is the connected line is not "straight" or appears disjointed that can happen based on the order of data sometimes.&lt;/P&gt;
&lt;P&gt;But since you are overlaying 4 plots you need to tell us:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; Which part of the plot isn't "correct" referencing the Plot statement used&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; And what is not correct about it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Additionally, since none of your Symbol statements show a regression option any thing related to "regression" from you topic comes from somewhere else. So perhaps you have to provide something about the source of the Plot data and if that was generated by a regression procedure then the input to that procedure and the procedure code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also you might want to know that many of the regression procedures produce plots directly though you may not have as much control of appearance as desired.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 16:57:28 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression-is-not-correct/m-p/471796#M16290</guid>
      <dc:creator>ballardw</dc:creator>
      <dc:date>2018-06-20T16:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: Regression is not correct</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression-is-not-correct/m-p/471797#M16291</link>
      <description>&lt;P&gt;When I run it by one of the project leads.&amp;nbsp; I being told the line should be connected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could the issue be that I am using more than just the one plot?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Jun 2018 16:56:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression-is-not-correct/m-p/471797#M16291</guid>
      <dc:creator>cjkim1030</dc:creator>
      <dc:date>2018-06-20T16:56:07Z</dc:date>
    </item>
    <item>
      <title>Re: Regression is not correct</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression-is-not-correct/m-p/472055#M16298</link>
      <description>&lt;P&gt;I've converted your sample data into a data step, and plotted the data using your code (posted below, in case that helps anyone else trying to help).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since the sample data only has one value for cpevent1 (the x-value), I can't really tell much.&lt;/P&gt;
&lt;P&gt;Also, since none of the symbol statements have a line specified (they all have interpol=none), I suspect that the regression line and equation shown in your document must have been drawn by the annotate dataset (which you don't provide).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;data pk1;&lt;BR /&gt;length cpevent1 $4;&lt;BR /&gt;infile datalines dlm=',';&lt;BR /&gt;input Obs PKPRAW cpevent1 cpevent2 pred z_median _geomean yp;&lt;BR /&gt;datalines;&lt;BR /&gt;1, 11.0, C2D1, 2, 3.65562, 61.2, 58.2725, 38.6916&lt;BR /&gt;2, 25.2, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;3, 27.1, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;4, 27.3, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;5, 29.8, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;6, 30.5, C2D1, 2, 3.65562, 61.2, 58.2725, 38.6916&lt;BR /&gt;7, 34.9, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;8, 39.0, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;9, 39.2, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;10, 42.4, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;11, 44.3, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;12, 45.8, C2D1, 2, 3.65562, 61.2, 58.2725, 38.6916&lt;BR /&gt;13, 47.6, C2D1, 2, 3.65562, 61.2, 58.2725, 38.6916&lt;BR /&gt;14, 47.7, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;15, 48.0, C2D1, 2, 4.12454, 61.2, 58.2725, 61.8394&lt;BR /&gt;;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;symbol1 v=circle i=none c=BLACK h=2;&lt;BR /&gt;symbol2 v=none l=1 i=join c=BLACK h=3;&lt;BR /&gt;symbol3 v=square i = none c=BLACK h=3;&lt;BR /&gt;symbol4 v=star i = none c=BLACK h=3;&lt;/P&gt;
&lt;P&gt;axis1 logbase=10 logstyle=expand minor=(h=0.5) label=(h=2.5 "Cycle");&lt;BR /&gt;axis2 logbase=10 logstyle=expand minor=(h=0.5) label=(h=2.5 angle=90 "&amp;amp;l_pparm");&lt;BR /&gt;legend1 value=('Individual' 'Linear Regression' 'Geometric Mean' 'Median') label=(' ');&lt;/P&gt;
&lt;P&gt;proc gplot data=pk1 /*annotate=anno*/;&lt;BR /&gt;plot pkpraw*cpevent1=1 yp*cpevent1=2 _geomean*cpevent1=3 z_median*cpevent1=4 /overlay &lt;BR /&gt;skipmiss vaxis=axis2 haxis=axis1 hzero vzero legend=legend1 noframe;&lt;BR /&gt;format pkpraw pred _geomean z_median 8.;&lt;BR /&gt;run;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's the output, with the limited sample data:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="regression.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21307iA6469B050350A4DF/image-size/large?v=v2&amp;amp;px=999" role="button" title="regression.png" alt="regression.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a screen-capture of the user's graph from the .docx file (for those not wanting to open the document):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="regression_doc.png" style="width: 600px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/21309i69ED258187B6BE78/image-size/large?v=v2&amp;amp;px=999" role="button" title="regression_doc.png" alt="regression_doc.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jun 2018 12:01:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression-is-not-correct/m-p/472055#M16298</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2018-06-21T12:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: Regression is not correct</title>
      <link>https://communities.sas.com/t5/Graphics-Programming/Regression-is-not-correct/m-p/472056#M16299</link>
      <description>&lt;P&gt;Ahh ... nevermind. I see this question has been re-posted in another thread (with more data, etc).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jun 2018 12:09:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Graphics-Programming/Regression-is-not-correct/m-p/472056#M16299</guid>
      <dc:creator>GraphGuy</dc:creator>
      <dc:date>2018-06-21T12:09:10Z</dc:date>
    </item>
  </channel>
</rss>

