options pageno=1; data corr; input x y; datalines; 41 52 73 95 67 72 37 52 58 96 ;; proc print; title 'Printout of Data'; run; proc corr; var y x; *Comment: This analysis will provide you with the correlation coefficient and a test of the null hypothesis that there is no linear relationship between the two variable'; title 'Simple Linear Correlation Analysis'; run;