1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;7071 /* expseries.sas */72 title 'Experimental data with autocorrelated errors';7374 data test;75 infile '/home/brunner0/441s20/expseries.data.txt';76 input time group y;77 if group=1 then g1=1; else g1=0;78 if group=2 then g2=1; else g2=0;79NOTE: The infile '/home/brunner0/441s20/expseries.data.txt' is:Filename=/home/brunner0/441s20/expseries.data.txt,Owner Name=brunner0,Group Name=oda,Access Permission=-rw-r--r--,Last Modified=10Mar2020:22:14:28,File Size (bytes)=1597NOTE: 150 records were read from the infile '/home/brunner0/441s20/expseries.data.txt'.The minimum record length was 8.The maximum record length was 11.NOTE: The data set WORK.TEST has 150 observations and 5 variables.NOTE: DATA statement used (Total process time):real time 0.00 secondsuser cpu time 0.00 secondssystem cpu time 0.00 secondsmemory 769.53kOS Memory 33452.00kTimestamp 03/11/2020 03:34:47 PMStep Count 122 Switch Count 2Page Faults 0Page Reclaims 143Page Swaps 0Voluntary Context Switches 19Involuntary Context Switches 0Block Input Operations 0Block Output Operations 26480 proc glm;81 class group;82 model y = group;83 means group;84NOTE: PROCEDURE GLM used (Total process time):real time 0.31 secondsuser cpu time 0.17 secondssystem cpu time 0.02 secondsmemory 18560.53kOS Memory 48196.00kTimestamp 03/11/2020 03:34:47 PMStep Count 123 Switch Count 2Page Faults 0Page Reclaims 4025Page Swaps 0Voluntary Context Switches 760Involuntary Context Switches 0Block Input Operations 0Block Output Operations 121685 proc autoreg;86 title2 'Durbin-Watson test and diagnostics';87 model y = g1 g2 / dwprob;88NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a gradient contour.NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a surface plot.NOTE: The graph in the PDF(WEB) destination will be rendered as an image due to the use of a bivariate histogram.NOTE: PROCEDURE AUTOREG used (Total process time):real time 0.38 secondsuser cpu time 0.24 secondssystem cpu time 0.03 secondsmemory 14042.87kOS Memory 58900.00kTimestamp 03/11/2020 03:34:48 PMStep Count 124 Switch Count 17Page Faults 0Page Reclaims 10885Page Swaps 0Voluntary Context Switches 654Involuntary Context Switches 1Block Input Operations 0Block Output Operations 127289 proc autoreg plot=none;90 title2 'Test higher lags';91 model y = g1 g2 / nlag=6 method=ml;92NOTE: PROCEDURE AUTOREG used (Total process time):real time 0.27 secondsuser cpu time 0.18 secondssystem cpu time 0.01 secondsmemory 2860.37kOS Memory 49428.00kTimestamp 03/11/2020 03:34:48 PMStep Count 125 Switch Count 1Page Faults 0Page Reclaims 383Page Swaps 0Voluntary Context Switches 227Involuntary Context Switches 1Block Input Operations 0Block Output Operations 60093 proc autoreg;94 model y = g1 g2 / nlag=1 method = ml;95 group: test g1=g2=0;96979899100101 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;112