1# iamlele
1. Your code works. Just a warning message " ... A new inputline". I checked data and reg are totally fine
2. If you don't need the warning messages. Using the follows code:
#. My SAS version 9.13
data two;
input x y @@;
cards;
13 3.54 11 3.01 9 3.09 6 2.48 8 2.56 10 3.36 12 3.18
7 2.65
;
run;
proc reg;
model y=x / stb p cli clm;
run;
quit;