<?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: Linear Regression in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/Linear-Regression/m-p/713556#M34482</link>
    <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;predict the income based on age&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;One of these variables is the predictor, one the "predictee".&amp;nbsp; Which is which should be evident from the quoted phrase above.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt; Google "dependent variable" and you will likely have started your road to understanding regression.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 23 Jan 2021 04:05:46 GMT</pubDate>
    <dc:creator>mkeintz</dc:creator>
    <dc:date>2021-01-23T04:05:46Z</dc:date>
    <item>
      <title>Linear Regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Linear-Regression/m-p/713553#M34481</link>
      <description>&lt;P&gt;Part of my assignment reads as follows:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Your goal is to create a regression model that can predict the income based on age in years.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create a scatter plot for age vs. income.&lt;OL&gt;&lt;LI&gt;&lt;EM&gt;I believe I have done this.&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2021-01-22 at 8.15.43 PM.png" style="width: 999px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/53821i54A68582D3BA96EF/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2021-01-22 at 8.15.43 PM.png" alt="Screen Shot 2021-01-22 at 8.15.43 PM.png" /&gt;&lt;/span&gt;&lt;/EM&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;LI&gt;Fit a linear regression model in SAS&lt;/LI&gt;&lt;LI&gt;How good is the overall fit of the income determination model? (Use both R2&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;as well as the F statistics to justify your answer.)&lt;/LI&gt;&lt;LI&gt;Compute the predicted income for a 27-year-old individual.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;The second part of the assignment is giving me a hard time. I'm using the Linear Regression task but I'm confused as to how to set it up. Would age or income be the dependent variable? Would the remaining variable then be used as the classification variable/intercept?&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;Any help would be greatly appreciated!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 23 Jan 2021 03:19:13 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Linear-Regression/m-p/713553#M34481</guid>
      <dc:creator>jlima22</dc:creator>
      <dc:date>2021-01-23T03:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: Linear Regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Linear-Regression/m-p/713556#M34482</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;predict the income based on age&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;One of these variables is the predictor, one the "predictee".&amp;nbsp; Which is which should be evident from the quoted phrase above.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt; Google "dependent variable" and you will likely have started your road to understanding regression.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 23 Jan 2021 04:05:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Linear-Regression/m-p/713556#M34482</guid>
      <dc:creator>mkeintz</dc:creator>
      <dc:date>2021-01-23T04:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Linear Regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Linear-Regression/m-p/713596#M34484</link>
      <description>&lt;P&gt;In addition to what &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/31461"&gt;@mkeintz&lt;/a&gt; said, there are no CLASS variables here, there are only continuous variables, so if you include CLASS variables in your model, you get gibberish. So please look up what a CLASS variable is and is not.&lt;/P&gt;</description>
      <pubDate>Sat, 23 Jan 2021 12:49:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Linear-Regression/m-p/713596#M34484</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2021-01-23T12:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: Linear Regression</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/Linear-Regression/m-p/714434#M34544</link>
      <description>The INCOME variable is the dependent variable and AGE is the independent variable. So if you want to use PROC REG  to estimate a linear regression model.  For example,&lt;BR /&gt;/* syntax for linear regression model, provide parameter estimates, creates output data set with predicted observations */&lt;BR /&gt;PROC REG DATA=YOURDATA;&lt;BR /&gt;MODEL INCOME=AGE;&lt;BR /&gt;OUTPUT OUT=OUT P=PREDINC;&lt;BR /&gt;QUIT;&lt;BR /&gt;&lt;BR /&gt;/* provides output data set with the predicted observations */&lt;BR /&gt;PROC PRINT DATA=OUT;&lt;BR /&gt;RUN;</description>
      <pubDate>Tue, 26 Jan 2021 21:55:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/Linear-Regression/m-p/714434#M34544</guid>
      <dc:creator>STAT_Kathleen</dc:creator>
      <dc:date>2021-01-26T21:55:32Z</dc:date>
    </item>
  </channel>
</rss>

