1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
55
56 /* senic0.sas */
57 data simple;
58 infile '/folders/myfolders/2453f15/senicdata.txt';
59 input id stay age infrisk culratio xratio nbeds medschl $
60 region census nurses service;
NOTE: The infile '/folders/myfolders/2453f15/senicdata.txt' is:
Filename=/folders/myfolders/2453f15/senicdata.txt,
Owner Name=root,Group Name=vboxsf,
Access Permission=-rwxrwx---,
Last Modified=02Sep2015:15:39:47,
File Size (bytes)=6102
NOTE: Invalid data for infrisk in line 19 20-20.
RULE: ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0
19 19 9.06 52.8 R 6.9 75.9 134 N 2 103 125 37.1 52
id=19 stay=9.06 age=52.8 infrisk=. culratio=6.9 xratio=75.9 nbeds=134 medschl=N region=2 census=103 nurses=125 service=37.1
_ERROR_=1 _N_=19
NOTE: Invalid data for infrisk in line 37 20-20.
NOTE: Invalid data for census in line 37 43-43.
37 37 9.97 58.2 R 16.5 76.5 90 N 2 R 42 34.3 52
id=37 stay=9.97 age=58.2 infrisk=. culratio=16.5 xratio=76.5 nbeds=90 medschl=N region=2 census=. nurses=42 service=34.3 _ERROR_=1
_N_=37
NOTE: Invalid data for infrisk in line 55 20-20.
NOTE: Invalid data for census in line 55 43-43.
55 55 8.63 54.0 R 8.4 56.2 76 N 1 R 44 31.4 52
id=55 stay=8.63 age=54 infrisk=. culratio=8.4 xratio=56.2 nbeds=76 medschl=N region=1 census=. nurses=44 service=31.4 _ERROR_=1
_N_=55
NOTE: Invalid data for census in line 56 43-43.
56 56 11.15 56.5 3.9 7.7 73.9 281 N 1 R 199 51.4 52
id=56 stay=11.15 age=56.5 infrisk=3.9 culratio=7.7 xratio=73.9 nbeds=281 medschl=N region=1 census=. nurses=199 service=51.4
_ERROR_=1 _N_=56
NOTE: Invalid data for infrisk in line 91 20-20.
91 91 8.86 51.3 X 9.5 87.5 100 N 3 65 53 25.7 52
id=91 stay=8.86 age=51.3 infrisk=. culratio=9.5 xratio=87.5 nbeds=100 medschl=N region=3 census=65 nurses=53 service=25.7 _ERROR_=1
_N_=91
NOTE: Invalid data for census in line 109 43-43.
NOTE: Invalid data for nurses in line 109 47-47.
109 109 11.80 53.8 5.7 9.1 116.9 571 Y 2 R X 62.9 52
id=109 stay=11.8 age=53.8 infrisk=5.7 culratio=9.1 xratio=116.9 nbeds=571 medschl=Y region=2 census=. nurses=. service=62.9
_ERROR_=1 _N_=109
NOTE: Invalid data for infrisk in line 112 20-20.
112 112 17.94 56.2 X 26.4 91.8 835 Y 1 791 407 62.9 52
id=112 stay=17.94 age=56.2 infrisk=. culratio=26.4 xratio=91.8 nbeds=835 medschl=Y region=1 census=791 nurses=407 service=62.9
_ERROR_=1 _N_=112
NOTE: 113 records were read from the infile '/folders/myfolders/2453f15/senicdata.txt'.
The minimum record length was 52.
The maximum record length was 52.
NOTE: The data set WORK.SIMPLE has 113 observations and 12 variables.
NOTE: DATA statement used (Total process time):
real time 0.05 seconds
cpu time 0.06 seconds
61 proc freq;
62 tables _all_;
63
64
65
66 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
78