<?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 Multiple Regression Analysis in SAS Data Science</title>
    <link>https://communities.sas.com/t5/SAS-Data-Science/Multiple-Regression-Analysis/m-p/284130#M9615</link>
    <description>&lt;P&gt;Hello I really need some help. Here are my assignment instructions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Perform a Multiple Regression Analysis paralleling the HBAT analysis performed in the textbook and in class, but now use the HATCO dataset (see HATCO_X1-X14_Tabs data file).&lt;/P&gt;&lt;P&gt;Include the following analyses:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Consider the overall general Model X9 = X1 X2 X3 X4 X5 X6 X7&lt;/LI&gt;&lt;LI&gt;Perform a Correlation Analysis&lt;/LI&gt;&lt;LI&gt;Fit and Analyze the best single independent (simple) regression analysis&lt;/LI&gt;&lt;LI&gt;Perform a Stepwise Regression Analysis to select the best subset model using Alpha = 0.05&lt;/LI&gt;&lt;LI&gt;Perform a Full Model (Confirmatory) Regression Analysis using Alpha = 0.05&lt;/LI&gt;&lt;LI&gt;Using the best subset from the Stepwise Regression Analysis now include variable X8 (Firm Size) and analyze its effect and the new resultant model&lt;/LI&gt;&lt;LI&gt;Analyze and Discuss the Multiple Regression Analysis Assumptions, e.g., Linearity, Normality, Homoscedasticity, and Independence using Residual and other Graphical/Statistical measures and tests for all Model Analyses&lt;/LI&gt;&lt;LI&gt;Similarly Analyze and Discuss any Influential observations with recommendations, as well as the Model’s Multicollinearity.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what I've done so far for my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FILENAME REFFILE "/home/tmaciver7840/my_content/HATCO X1-X14.txt" TERMSTR=CR;&lt;/P&gt;&lt;P&gt;PROC IMPORT DATAFILE=REFFILE&lt;BR /&gt;DBMS=tab&lt;BR /&gt;OUT=WORK.IMPORT;&lt;BR /&gt;GETNAMES=YES;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC CONTENTS DATA=WORK.IMPORT; RUN;&lt;BR /&gt;Input ID X1 X2 X3 X4 X5 X6 X7 X8 X9 X10 X11 X12 X13 X14;&lt;BR /&gt;Data WORK.IMPORT;&lt;BR /&gt;Set WORK.IMPORT (Keep = ID X1 X2 X3 X4 X5 X6 X7 X9);&lt;BR /&gt;Label ID = 'ID - Identification Number'&lt;/P&gt;&lt;P&gt;X1 = 'X1'&lt;/P&gt;&lt;P&gt;X2 = 'X2'&lt;/P&gt;&lt;P&gt;X3 = 'X3'&lt;/P&gt;&lt;P&gt;X4 = 'X4'&lt;/P&gt;&lt;P&gt;X5 = 'X5'&lt;/P&gt;&lt;P&gt;X6 = 'X6'&lt;/P&gt;&lt;P&gt;X7 = 'X7'&lt;/P&gt;&lt;P&gt;X8 = 'X8'&lt;/P&gt;&lt;P&gt;X9 = 'X9'&lt;/P&gt;&lt;P&gt;X10 = 'X10'&lt;/P&gt;&lt;P&gt;X11 = 'X11'&lt;/P&gt;&lt;P&gt;X12 = 'X12'&lt;/P&gt;&lt;P&gt;X13 = 'X13'&lt;/P&gt;&lt;P&gt;X14 = 'X14';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Proc Print Data = WORK.IMPORT;&lt;/P&gt;&lt;P&gt;*;&lt;/P&gt;&lt;P&gt;*;&lt;/P&gt;&lt;P&gt;* Correlation Matrix - All Variables;&lt;/P&gt;&lt;P&gt;*;&lt;/P&gt;&lt;P&gt;Proc Corr Data = WORK.IMPORT;&lt;/P&gt;&lt;P&gt;Var X1 X2 X3 X4 X5 X6 X7 X9;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Plot NQQ.*R. NPP.*R.; * NQQ.*R and NPP.*R request specific separate&lt;/P&gt;&lt;P&gt;Normal Quantile and Normal Probability Plots;&lt;/P&gt;&lt;P&gt;*;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I perform the rest of the regression analyses? &amp;nbsp;I really appreciate any help! (Attached is the dataset)&lt;/P&gt;</description>
    <pubDate>Wed, 13 Jul 2016 17:29:00 GMT</pubDate>
    <dc:creator>Tommac72584</dc:creator>
    <dc:date>2016-07-13T17:29:00Z</dc:date>
    <item>
      <title>Multiple Regression Analysis</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Multiple-Regression-Analysis/m-p/284130#M9615</link>
      <description>&lt;P&gt;Hello I really need some help. Here are my assignment instructions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Perform a Multiple Regression Analysis paralleling the HBAT analysis performed in the textbook and in class, but now use the HATCO dataset (see HATCO_X1-X14_Tabs data file).&lt;/P&gt;&lt;P&gt;Include the following analyses:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Consider the overall general Model X9 = X1 X2 X3 X4 X5 X6 X7&lt;/LI&gt;&lt;LI&gt;Perform a Correlation Analysis&lt;/LI&gt;&lt;LI&gt;Fit and Analyze the best single independent (simple) regression analysis&lt;/LI&gt;&lt;LI&gt;Perform a Stepwise Regression Analysis to select the best subset model using Alpha = 0.05&lt;/LI&gt;&lt;LI&gt;Perform a Full Model (Confirmatory) Regression Analysis using Alpha = 0.05&lt;/LI&gt;&lt;LI&gt;Using the best subset from the Stepwise Regression Analysis now include variable X8 (Firm Size) and analyze its effect and the new resultant model&lt;/LI&gt;&lt;LI&gt;Analyze and Discuss the Multiple Regression Analysis Assumptions, e.g., Linearity, Normality, Homoscedasticity, and Independence using Residual and other Graphical/Statistical measures and tests for all Model Analyses&lt;/LI&gt;&lt;LI&gt;Similarly Analyze and Discuss any Influential observations with recommendations, as well as the Model’s Multicollinearity.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is what I've done so far for my code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FILENAME REFFILE "/home/tmaciver7840/my_content/HATCO X1-X14.txt" TERMSTR=CR;&lt;/P&gt;&lt;P&gt;PROC IMPORT DATAFILE=REFFILE&lt;BR /&gt;DBMS=tab&lt;BR /&gt;OUT=WORK.IMPORT;&lt;BR /&gt;GETNAMES=YES;&lt;BR /&gt;RUN;&lt;/P&gt;&lt;P&gt;PROC CONTENTS DATA=WORK.IMPORT; RUN;&lt;BR /&gt;Input ID X1 X2 X3 X4 X5 X6 X7 X8 X9 X10 X11 X12 X13 X14;&lt;BR /&gt;Data WORK.IMPORT;&lt;BR /&gt;Set WORK.IMPORT (Keep = ID X1 X2 X3 X4 X5 X6 X7 X9);&lt;BR /&gt;Label ID = 'ID - Identification Number'&lt;/P&gt;&lt;P&gt;X1 = 'X1'&lt;/P&gt;&lt;P&gt;X2 = 'X2'&lt;/P&gt;&lt;P&gt;X3 = 'X3'&lt;/P&gt;&lt;P&gt;X4 = 'X4'&lt;/P&gt;&lt;P&gt;X5 = 'X5'&lt;/P&gt;&lt;P&gt;X6 = 'X6'&lt;/P&gt;&lt;P&gt;X7 = 'X7'&lt;/P&gt;&lt;P&gt;X8 = 'X8'&lt;/P&gt;&lt;P&gt;X9 = 'X9'&lt;/P&gt;&lt;P&gt;X10 = 'X10'&lt;/P&gt;&lt;P&gt;X11 = 'X11'&lt;/P&gt;&lt;P&gt;X12 = 'X12'&lt;/P&gt;&lt;P&gt;X13 = 'X13'&lt;/P&gt;&lt;P&gt;X14 = 'X14';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Proc Print Data = WORK.IMPORT;&lt;/P&gt;&lt;P&gt;*;&lt;/P&gt;&lt;P&gt;*;&lt;/P&gt;&lt;P&gt;* Correlation Matrix - All Variables;&lt;/P&gt;&lt;P&gt;*;&lt;/P&gt;&lt;P&gt;Proc Corr Data = WORK.IMPORT;&lt;/P&gt;&lt;P&gt;Var X1 X2 X3 X4 X5 X6 X7 X9;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Plot NQQ.*R. NPP.*R.; * NQQ.*R and NPP.*R request specific separate&lt;/P&gt;&lt;P&gt;Normal Quantile and Normal Probability Plots;&lt;/P&gt;&lt;P&gt;*;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I perform the rest of the regression analyses? &amp;nbsp;I really appreciate any help! (Attached is the dataset)&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2016 17:29:00 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Multiple-Regression-Analysis/m-p/284130#M9615</guid>
      <dc:creator>Tommac72584</dc:creator>
      <dc:date>2016-07-13T17:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Regression Analysis</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Multiple-Regression-Analysis/m-p/284135#M9616</link>
      <description>&lt;P&gt;This is not the right forum for this question. You should try a more appropriate forum.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2016 17:42:32 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Multiple-Regression-Analysis/m-p/284135#M9616</guid>
      <dc:creator>RussAlbright</dc:creator>
      <dc:date>2016-07-13T17:42:32Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Regression Analysis</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Multiple-Regression-Analysis/m-p/284146#M9617</link>
      <description>Which forum should I try? Data Management?</description>
      <pubDate>Wed, 13 Jul 2016 18:05:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Multiple-Regression-Analysis/m-p/284146#M9617</guid>
      <dc:creator>Tommac72584</dc:creator>
      <dc:date>2016-07-13T18:05:58Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Regression Analysis</title>
      <link>https://communities.sas.com/t5/SAS-Data-Science/Multiple-Regression-Analysis/m-p/284152#M9618</link>
      <description>&lt;P&gt;Under Analytics there is SAS Statistical Procedures.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Jul 2016 18:14:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Data-Science/Multiple-Regression-Analysis/m-p/284152#M9618</guid>
      <dc:creator>RussAlbright</dc:creator>
      <dc:date>2016-07-13T18:14:04Z</dc:date>
    </item>
  </channel>
</rss>

