1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 68 69 data date; 70 input Patent_ID Age Date_of_admission; 71 informat Date_of_admission ddmmyy10.; 72 format Date_of_admission ddmmyyb10.; 73 cards; NOTE: Invalid data for Patent_ID in line 75 1-6. NOTE: Invalid data for Age in line 75 8-17. NOTE: Invalid data for Date_of_admission in line 76 1-3. RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0 76 300 76 02-05-1987 NOTE: Invalid data errors for file CARDS occurred outside the printed range. NOTE: Increase available buffer lines with the INFILE n= option. Patent_ID=. Age=. Date_of_admission=. _ERROR_=1 _N_=2 NOTE: SAS went to a new line when INPUT statement reached past the end of a line. NOTE: The data set WORK.DATE has 3 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds user cpu time 0.00 seconds system cpu time 0.00 seconds memory 666.53k OS Memory 21156.00k Timestamp 01/09/2023 03:27:50 PM Step Count 31 Switch Count 2 Page Faults 0 Page Reclaims 135 Page Swaps 0 Voluntary Context Switches 10 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 264 78 ; 79 run; 80 81 proc print data=date; 82 run; NOTE: There were 3 observations read from the data set WORK.DATE. NOTE: PROCEDURE PRINT used (Total process time): real time 0.01 seconds user cpu time 0.01 seconds system cpu time 0.00 seconds memory 1146.21k OS Memory 21156.00k Timestamp 01/09/2023 03:27:50 PM Step Count 32 Switch Count 0 Page Faults 0 Page Reclaims 80 Page Swaps 0 Voluntary Context Switches 0 Involuntary Context Switches 0 Block Input Operations 0 Block Output Operations 8
... View more