Hello I really need some help. Here are my assignment instructions.
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).
Include the following analyses:
Here is what I've done so far for my code:
FILENAME REFFILE "/home/tmaciver7840/my_content/HATCO X1-X14.txt" TERMSTR=CR;
PROC IMPORT DATAFILE=REFFILE
DBMS=tab
OUT=WORK.IMPORT;
GETNAMES=YES;
RUN;
PROC CONTENTS DATA=WORK.IMPORT; RUN;
Input ID X1 X2 X3 X4 X5 X6 X7 X8 X9 X10 X11 X12 X13 X14;
Data WORK.IMPORT;
Set WORK.IMPORT (Keep = ID X1 X2 X3 X4 X5 X6 X7 X9);
Label ID = 'ID - Identification Number'
X1 = 'X1'
X2 = 'X2'
X3 = 'X3'
X4 = 'X4'
X5 = 'X5'
X6 = 'X6'
X7 = 'X7'
X8 = 'X8'
X9 = 'X9'
X10 = 'X10'
X11 = 'X11'
X12 = 'X12'
X13 = 'X13'
X14 = 'X14';
Proc Print Data = WORK.IMPORT;
*;
*;
* Correlation Matrix - All Variables;
*;
Proc Corr Data = WORK.IMPORT;
Var X1 X2 X3 X4 X5 X6 X7 X9;
Plot NQQ.*R. NPP.*R.; * NQQ.*R and NPP.*R request specific separate
Normal Quantile and Normal Probability Plots;
*;
How do I perform the rest of the regression analyses? I really appreciate any help! (Attached is the dataset)
This is not the right forum for this question. You should try a more appropriate forum.
Register today and join us virtually on June 16!
sasglobalforum.com | #SASGF
View now: on-demand content for SAS users
Under Analytics there is SAS Statistical Procedures.
Register today and join us virtually on June 16!
sasglobalforum.com | #SASGF
View now: on-demand content for SAS users
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Use this tutorial as a handy guide to weigh the pros and cons of these commonly used machine learning algorithms.
Find more tutorials on the SAS Users YouTube channel.