data cv5; input x y; datalines; 5 10 10 20 25 30 35 50 25 40 100 150 ; ods graphics on; proc reg data=cv5; model y=x; run; ods graphics off;