data faithful; infile 'S:\webpages\~renaes\Data\old faithful.csv' dlm=',' firstobs=2; input eruptions waiting; run; proc print data=faithful; run; proc sgplot; scatter x=eruptions y=waiting; run; proc reg data=faithful; model waiting=eruptions / dw; run;