Hello everybody, I've tried creating the following dataset using Sas University Edition data type1; input measure lab day; cards; 99.57 1 1 98.33 1 1 100.13 1 1 100.29 1 1 98.85 1 2 101.19 1 2 101.19 1 2 99.96 1 2 100.33 1 3 100.17 1 3 99.81 1 3 100.72 1 3 99.91 2 1 102.68 2 1 100.36 2 1 100.61 2 1 101.57 2 2 100.56 2 2 100.40 2 2 99.67 2 2 100.79 2 3 99.16 2 3 101.21 2 3 102.12 2 3 ; However, when I run it I receive this log output : 1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 61 62 data type1; 63 input measure lab day; 65 cards; NOTE: Invalid data for measure in line 66 1-9. NOTE: Invalid data for lab in line 67 1-9. NOTE: Invalid data for day in line 68 1-10. RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0 68 CHAR 100.13.1.1 ZONE 33323303032222222222222222222222222222222222222222222222222222222222222222222222 NUMR 100E1391910000000000000000000000000000000000000000000000000000000000000000000000 NOTE: Invalid data errors for file CARDS occurred outside the printed range. NOTE: Increase available buffer lines with the INFILE n= option. measure=. lab=. day=. _ERROR_=1 _N_=1 NOTE: Invalid data for measure in line 69 1-10. NOTE: Invalid data for lab in line 70 1-9. NOTE: Invalid data for day in line 71 1-10. 71 CHAR 101.19.1.2 ZONE 33323303032222222222222222222222222222222222222222222222222222222222222222222222 NUMR 101E1991920000000000000000000000000000000000000000000000000000000000000000000000 NOTE: Invalid data errors for file CARDS occurred outside the printed range. NOTE: Increase available buffer lines with the INFILE n= option. measure=. lab=. day=. _ERROR_=1 _N_=2 NOTE: Invalid data for measure in line 72 1-10. NOTE: Invalid data for lab in line 73 1-9. NOTE: Invalid data for day in line 74 1-10. 74 CHAR 100.33.1.3 ZONE 33323303032222222222222222222222222222222222222222222222222222222222222222222222 NUMR 100E3391930000000000000000000000000000000000000000000000000000000000000000000000 NOTE: Invalid data errors for file CARDS occurred outside the printed range. NOTE: Increase available buffer lines with the INFILE n= option. measure=. lab=. day=. _ERROR_=1 _N_=3 NOTE: Invalid data for measure in line 75 1-10. NOTE: Invalid data for lab in line 76 1-9. NOTE: Invalid data for day in line 77 1-10. 77 CHAR 100.72.1.3 ZONE 33323303032222222222222222222222222222222222222222222222222222222222222222222222 NUMR 100E7291930000000000000000000000000000000000000000000000000000000000000000000000 NOTE: Invalid data errors for file CARDS occurred outside the printed range. NOTE: Increase available buffer lines with the INFILE n= option. measure=. lab=. day=. _ERROR_=1 _N_=4 NOTE: Invalid data for measure in line 78 1-9. NOTE: Invalid data for lab in line 79 1-10. NOTE: Invalid data for day in line 80 1-10. 80 CHAR 100.36.2.1 ZONE 33323303032222222222222222222222222222222222222222222222222222222222222222222222 NUMR 100E3692910000000000000000000000000000000000000000000000000000000000000000000000 NOTE: Invalid data errors for file CARDS occurred outside the printed range. NOTE: Increase available buffer lines with the INFILE n= option. measure=. lab=. day=. _ERROR_=1 _N_=5 NOTE: Invalid data for measure in line 81 1-10. NOTE: Invalid data for lab in line 82 1-10. NOTE: Invalid data for day in line 83 1-10. RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0 83 CHAR 100.56.2.2 ZONE 33323303032222222222222222222222222222222222222222222222222222222222222222222222 NUMR 100E5692920000000000000000000000000000000000000000000000000000000000000000000000 NOTE: Invalid data errors for file CARDS occurred outside the printed range. NOTE: Increase available buffer lines with the INFILE n= option. measure=. lab=. day=. _ERROR_=1 _N_=6 NOTE: Invalid data for measure in line 84 1-10. NOTE: Invalid data for lab in line 85 1-9. NOTE: Invalid data for day in line 86 1-10. 86 CHAR 100.79.2.3 ZONE 33323303032222222222222222222222222222222222222222222222222222222222222222222222 NUMR 100E7992930000000000000000000000000000000000000000000000000000000000000000000000 NOTE: Invalid data errors for file CARDS occurred outside the printed range. NOTE: Increase available buffer lines with the INFILE n= option. measure=. lab=. day=. _ERROR_=1 _N_=7 NOTE: Invalid data for measure in line 87 1-9. NOTE: Invalid data for lab in line 88 1-10. NOTE: Invalid data for day in line 89 1-10. 89 CHAR 102.12.2.3 ZONE 33323303032222222222222222222222222222222222222222222222222222222222222222222222 NUMR 102E1292930000000000000000000000000000000000000000000000000000000000000000000000 NOTE: Invalid data errors for file CARDS occurred outside the printed range. NOTE: Increase available buffer lines with the INFILE n= option. measure=. lab=. day=. _ERROR_=1 _N_=8 NOTE: SAS went to a new line when INPUT statement reached past the end of a line. NOTE: The data set WORK.TYPE1 has 8 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 90 ; 91 92 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK; 105 How should I fix my code so that it is read? Thank you so much
... View more