196 options pageno=1; NOTE: PROCEDURE REG used: real time 2:37.94 cpu time 0.04 seconds 197 data corr; 198 input x y; 199 datalines; NOTE: The data set WORK.CORR has 5 observations and 2 variables. NOTE: DATA statement used: real time 0.03 seconds cpu time 0.01 seconds 205 ;; 206 proc print; 207 title 'Printout of Data'; 208 run; NOTE: There were 5 observations read from the data set WORK.CORR. NOTE: PROCEDURE PRINT used: real time 0.00 seconds cpu time 0.00 seconds 209 proc corr; 210 var y x; 211 *Comment: This analysis will provide you with the correlation 212 coefficient and a test of the null hypothesis that there is no linear relationship between 213 the two variable'; 214 title 'Simple Linear Correlation Analysis'; 215 run; NOTE: PROCEDURE CORR used: real time 0.04 seconds cpu time 0.01 seconds