1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
68
69 /********************* senic0.sas ***************************/
70
71 data senic;
72 infile '/home/u1407221/441s24/SAS02/openSENIC2.data.txt' firstobs=2;
73 /* Skip the first line that R uses */
74 input id region mdschl $ census nbeds nurses lngstay age
75 xratio culratio infpercent;
76
77 /* Frequency distribtions of everything, even quantitative variables.
78 Don't print this! */
79
NOTE: The infile '/home/u1407221/441s24/SAS02/openSENIC2.data.txt' is:
Filename=/home/u1407221/441s24/SAS02/openSENIC2.data.txt,
Owner Name=u1407221,Group Name=oda,
Access Permission=-rw-r--r--,
Last Modified=21Dec2023:11:37:19,
File Size (bytes)=8585
NOTE: 100 records were read from the infile '/home/u1407221/441s24/SAS02/openSENIC2.data.txt'.
The minimum record length was 83.
The maximum record length was 83.
NOTE: The data set WORK.SENIC has 100 observations and 11 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 759.31k
OS Memory 21412.00k
Timestamp 12/21/2023 04:41:31 PM
Step Count 31 Switch Count 2
Page Faults 0
Page Reclaims 143
Page Swaps 0
Voluntary Context Switches 16
Involuntary Context Switches 0
Block Input Operations 0
Block Output Operations 272
80 proc freq;
81 tables _all_;
82
83 run;
NOTE: There were 100 observations read from the data set WORK.SENIC.
NOTE: PROCEDURE FREQ used (Total process time):
real time 0.37 seconds
user cpu time 0.38 seconds
system cpu time 0.00 seconds
memory 1888.65k
OS Memory 21672.00k
Timestamp 12/21/2023 04:41:31 PM
Step Count 32 Switch Count 2
Page Faults 0
Page Reclaims 288
Page Swaps 0
Voluntary Context Switches 10
Involuntary Context Switches 1
Block Input Operations 0
Block Output Operations 528
83 ! /* This should be the last line in every SAS program. */
84
85
86 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
96