<?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: Fixed Effects and scatter plot in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Fixed-Effects-and-scatter-plot/m-p/532311#M6012</link>
    <description>The X- axis variable should be type, the y-axis variable should be cost. What would be a more appropriate plot in your opinion?</description>
    <pubDate>Sat, 02 Feb 2019 19:45:47 GMT</pubDate>
    <dc:creator>GKati</dc:creator>
    <dc:date>2019-02-02T19:45:47Z</dc:date>
    <item>
      <title>Fixed Effects and scatter plot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Fixed-Effects-and-scatter-plot/m-p/532024#M5962</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to create a basic scatter plot after a fixed effects regression. I am using PROC GLM for the FE regression. Best would be to add an effectplot line to the my code, as such:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glm data=individuals;
class year (ref='2010' ) age_gr (ref='0' );
absorb id;
model cost=year|type/ solution;
&lt;STRONG&gt;effectplot fit / obs;&lt;/STRONG&gt;
run;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;but effectplot doesn't seem to work with GLM.&amp;nbsp; What are my other options?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 14:57:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Fixed-Effects-and-scatter-plot/m-p/532024#M5962</guid>
      <dc:creator>GKati</dc:creator>
      <dc:date>2019-02-01T14:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: Fixed Effects and scatter plot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Fixed-Effects-and-scatter-plot/m-p/532077#M5973</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/123185"&gt;@GKati&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would like to create a basic scatter plot after a fixed effects regression.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Scatter plot of what?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Have you looked at ODS Graphics to see if the plot you want is already in there?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 16:19:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Fixed-Effects-and-scatter-plot/m-p/532077#M5973</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-02-01T16:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Fixed Effects and scatter plot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Fixed-Effects-and-scatter-plot/m-p/532190#M5993</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/10892"&gt;@PaigeMiller&lt;/a&gt;&amp;nbsp;:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like a scatterplot of cost vs type with a regression line and 95% CIs. Sort of like the graph attached. &lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="WFKReg5-1024x768" style="width: 315px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/26774i0831C04460C5E998/image-dimensions/315x237?v=v2" width="315" height="237" role="button" title="WFKReg5-1024x768" alt="WFKReg5-1024x768" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know that this can be generated by adding the line&lt;/P&gt;&lt;PRE class="text"&gt;effectplot fit / obs;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;to my code above.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The problem is that I need to perform a Fixed Effects and using PROC GLM is the only way I know how to do that and PROC GLM doesn't support the effectplot command.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;K.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 20:38:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Fixed-Effects-and-scatter-plot/m-p/532190#M5993</guid>
      <dc:creator>GKati</dc:creator>
      <dc:date>2019-02-01T20:38:01Z</dc:date>
    </item>
    <item>
      <title>Re: Fixed Effects and scatter plot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Fixed-Effects-and-scatter-plot/m-p/532226#M5999</link>
      <description>&lt;P&gt;So the example plot you show doesn't really fit the analysis you are doing, as far as I can see.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;So in the scatterplot you want, please be specific. What is the X-axis variable? What is the Y-axis variable? What are the lines on the plot, relative to the variables you have?&lt;/P&gt;</description>
      <pubDate>Fri, 01 Feb 2019 23:19:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Fixed-Effects-and-scatter-plot/m-p/532226#M5999</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-02-01T23:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: Fixed Effects and scatter plot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Fixed-Effects-and-scatter-plot/m-p/532311#M6012</link>
      <description>The X- axis variable should be type, the y-axis variable should be cost. What would be a more appropriate plot in your opinion?</description>
      <pubDate>Sat, 02 Feb 2019 19:45:47 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Fixed-Effects-and-scatter-plot/m-p/532311#M6012</guid>
      <dc:creator>GKati</dc:creator>
      <dc:date>2019-02-02T19:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Fixed Effects and scatter plot</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Fixed-Effects-and-scatter-plot/m-p/532316#M6014</link>
      <description>&lt;P&gt;I don't know what a good plot is, you still haven't really described what you hope to see/learn here.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;The problem with the EFFECTPLOT is that is only defined for a single X-variable, but your model has two X-variables, plus an ABSORB variable. You can't plot just one variable of the model, you have to determine what you want to do about the other variables in the model (plus the ABSORB variable) in order to get anything meaningful. When there's more than one X-variable, as you have, usually people don't plot the actual data on a scatterplot, they plot the model residuals as the y-variable on a scatterplot.&lt;/P&gt;</description>
      <pubDate>Sat, 02 Feb 2019 22:07:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Fixed-Effects-and-scatter-plot/m-p/532316#M6014</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2019-02-02T22:07:34Z</dc:date>
    </item>
  </channel>
</rss>

