Libname S3A3 "D:\STAT 3A03\Fall 2017\Data"; * Replace the path above with the path to whatever folder you use for this course; PROC IMPORT out=S3A3.smoke datafile="D:\STAT 3A03\Fall 2017\Data\Cigarettes.txt" DBMS=DLM REPLACE; Getnames=yes; Datarow=2; run; PROC REG Data=S3A3.smoke plots=none; Model Sales=Age HS Income Black Female Price; Title "Full Model"; run; quit; PROC REG Data=S3A3.smoke plots=none; Model Sales=Age Income HS Price; Title "Reduced Model"; run; quit;