Time an SPSS procedure
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | * rlevesque@videotron.ca. DATA LIST FREE /a. BEGIN DATA 1 2 3 4 5 6 END DATA. IF $casenum=1 time1=$TIME. FORMAT time1(ADATE11). LIST. *If you want the elapsed time to be saved in the data file. IF $casenum=1 delta=$TIME-time1. *if you want it printed in the Log of the Output window. DO IF $CASENUM=1. PRINT /'**** ' delta 'secondes elapsed'. END IF. EXECUTE. |
Related pages
...