云南省道S222 S213 S214。大广高速好走吗吗

The SAS System
15:38 Tuesday, February 12, 2002
NOTE: Copyright (c)
by SAS Institute Inc., Cary, NC, USA.
NOTE: SAS (r) Proprietary Software Release 8.2 (TS2M0)
Licensed to STANFORD UNIVERSITY, Site .
NOTE: This session is executing on the SunOS 5.6 platform.
This message is contained in the SAS news file, and is presented upon
initialization.
Edit the files "news" in the "misc/base" directory to
display site-specific news and information in the program log.
The command line option "-nonews" will prevent this display.
NOTE: SAS initialization used:
0.99 seconds
0.17 seconds
libname medicare '/dir16/kearney/snf/data/medicare/cost_report/sasfiles';
NOTE: Libref MEDICARE was successfully assigned as follows:
Physical Name: /dir16/kearney/snf/data/medicare/cost_report/sasfiles
libname oshpd '/dir16/kearney/snf/data/new/oshpd';
NOTE: Libref OSHPD was successfully assigned as follows:
Physical Name: /dir16/kearney/snf/data/new/oshpd
options ls=75
/*************
This program subsets the
cost report data so that it
! only includes
facilities in California.
It also examines the proportion of
! facilities that
were operating under PPS in 1998 and 1999.
Finally it stacks
and 1999 California nursing homes data to create the
! "casnfcost9799" data set.
It also exports this as a text file to be manipulated in Excel.
*************/
ODS rtf file = "check1.rtf";
NOTE: Writing RTF Body file: check1.rtf
/*************
%MACRO filecheck(file= );
proc contents data=medicare.&
%filecheck(file=snf8);
%filecheck(file=snf9);
%filecheck(file=snf10);
%filecheck(file=snf11);
%filecheck(file=snf12);
%filecheck(file=snf13);
%filecheck(file=snf14);
The SAS System
15:38 Tuesday, February 12, 2002
%filecheck(file=snf15);
%filecheck(file=snf16);
*************/
%MACRO yearvar(file= );
%LET year=&
data medicare.snfcost&
set medicare.snfcost&
proc print data=medicare.snfcost&file (OBS=20);
title "19&year";
/*************
%yearvar(file=91);
%yearvar(file=92);
%yearvar(file=93);
%yearvar(file=94);
%yearvar(file=95);
%yearvar(file=96);
*************/
%yearvar(file=97);
NOTE: There were 14139 observations read from the data set
MEDICARE.SNFCOST97.
NOTE: The data set MEDICARE.SNFCOST97 has 14139 observations and 543
variables.
NOTE: DATA statement used:
35.99 seconds
2.92 seconds
%yearvar(file=98);
NOTE: There were 20 observations read from the data set MEDICARE.SNFCOST97.
NOTE: The PROCEDURE PRINT printed page 1.
NOTE: PROCEDURE PRINT used:
0.48 seconds
0.20 seconds
NOTE: There were 14261 observations read from the data set
MEDICARE.SNFCOST98.
NOTE: The data set MEDICARE.SNFCOST98 has 14261 observations and 543
variables.
NOTE: DATA statement used:
36.13 seconds
2.90 seconds
%yearvar(file=99);
The SAS System
15:38 Tuesday, February 12, 2002
NOTE: There were 20 observations read from the data set MEDICARE.SNFCOST98.
NOTE: The PROCEDURE PRINT printed page 2.
NOTE: PROCEDURE PRINT used:
0.03 seconds
0.04 seconds
NOTE: There were 13526 observations read from the data set
MEDICARE.SNFCOST99.
NOTE: The data set MEDICARE.SNFCOST99 has 13526 observations and 543
variables.
NOTE: DATA statement used:
33.11 seconds
2.73 seconds
/*************
The following macro converts the cost report period beginning
! date and cost
report period ending date variables (S9 and S10, respectively)
! into SAS date
variables for the , and 1999 Medicare cost reports.
! Once this has
been accomplished, we can easily see what proportion of the
! facilities in each
year were operating under the PPS regime for their entire
! reporting period.
Note that the coding below is done only for facilities in the
! state of
California (by stipulating that the first two digits of variable
S1 are either
'05' or '55').
*************/
%MACRO newdate(file= );
%LET year=&
data california&
set medicare.snfcost&
if substr(S1,1,2) in ('05' '55');
newdate_1=substr(S9,5);
newdate_A=substr(S10,5);
data california&
set california&
mm1=substr(newdate_1,5,2);
dd1=substr(newdate_1,7,2);
yyyy1=substr(newdate_1,1,4);
put yyyy1;
newdate_2=mdy(mm1,dd1,yyyy1);
format newdate_2 DATE7.;
The SAS System
15:38 Tuesday, February 12, 2002
mmA=substr(newdate_A,5,2);
ddA=substr(newdate_A,7,2);
yyyyA=substr(newdate_A,1,4);
put yyyyA;
newdate_B=mdy(mmA,ddA,yyyyA);
format newdate_B DATE7.;
proc print data=california&file (OBS=5);
var S1 S9 newdate_1 mm1 dd1 yyyy1 newdate_2;
title "Cost report BEGINNING date adjustment for 19&year";
proc print data=california&file (OBS=5);
var S1 S10 newdate_A mmA ddA yyyyA newdate_B;
title "Cost report ENDING date adjustment for 19&year";
%newdate(file=97);
NOTE: There were 20 observations read from the data set MEDICARE.SNFCOST99.
NOTE: The PROCEDURE PRINT printed page 3.
NOTE: PROCEDURE PRINT used:
0.05 seconds
0.05 seconds
NOTE: Numeric values have been converted to character
values at the places given by: (Line):(Column).
NOTE: There were 14139 observations read from the data set
MEDICARE.SNFCOST97.
NOTE: The data set WORK.CALIFORNIA97 has 1307 observations and 545
variables.
NOTE: DATA statement used:
14.90 seconds
1.44 seconds
NOTE: Character values have been converted to numeric
values at the places given by: (Line):(Column).
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
NOTE: There were 1307 observations read from the data set
WORK.CALIFORNIA97.
NOTE: The data set WORK.CALIFORNIA97 has 1307 observations and 553
variables.
NOTE: DATA statement used:
2.70 seconds
0.60 seconds
NOTE: There were 5 observations read from the data set WORK.CALIFORNIA97.
NOTE: The PROCEDURE PRINT printed page 4.
NOTE: PROCEDURE PRINT used:
0.04 seconds
0.02 seconds
%newdate(file=98);
NOTE: There were 5 observations read from the data set WORK.CALIFORNIA97.
NOTE: The PROCEDURE PRINT printed page 5.
NOTE: PROCEDURE PRINT used:
0.02 seconds
0.03 seconds
NOTE: Numeric values have been converted to character
values at the places given by: (Line):(Column).
NOTE: There were 14261 observations read from the data set
MEDICARE.SNFCOST98.
NOTE: The data set WORK.CALIFORNIA98 has 1268 observations and 545
variables.
NOTE: DATA statement used:
16.30 seconds
1.51 seconds
The SAS System
15:38 Tuesday, February 12, 2002
NOTE: Character values have been converted to numeric
values at the places given by: (Line):(Column).
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
NOTE: There were 1268 observations read from the data set
WORK.CALIFORNIA98.
NOTE: The data set WORK.CALIFORNIA98 has 1268 observations and 553
variables.
NOTE: DATA statement used:
2.76 seconds
0.60 seconds
NOTE: There were 5 observations read from the data set WORK.CALIFORNIA98.
NOTE: The PROCEDURE PRINT printed page 6.
NOTE: PROCEDURE PRINT used:
0.03 seconds
0.03 seconds
%newdate(file=99);
NOTE: There were 5 observations read from the data set WORK.CALIFORNIA98.
NOTE: The PROCEDURE PRINT printed page 7.
NOTE: PROCEDURE PRINT used:
0.02 seconds
0.03 seconds
The SAS System
15:38 Tuesday, February 12, 2002
NOTE: Numeric values have been converted to character
values at the places given by: (Line):(Column).
NOTE: There were 13526 observations read from the data set
MEDICARE.SNFCOST99.
NOTE: The data set WORK.CALIFORNIA99 has 1042 observations and 545
variables.
NOTE: DATA statement used:
16.17 seconds
1.32 seconds
NOTE: Character values have been converted to numeric
values at the places given by: (Line):(Column).
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
NOTE: Invalid argument to function MDY at line 111 column 46.
S7=ARBOR CONVALESCENT HOSPITAL S8=
S12=SAN JOAQUIN S13=4 S14=2 S15=0 S16=06 S17=077 S18=99 S19=80
S21=1 S22=F S23=9 S24=9 S25==14 S27=0 S28=135 S29=0 S30=0
S31=149 S32= S34=4 S36=0 S37=51 S39=2811
S40=692 S41=2 S42=25 S44=4 S45=49472
S46=97 S47=97 S48=72 S48A=0 S49=77 S50=137 S51=258 S51A=0 S52=395 S53=28.98
S54=28.98 S55=338.22 S55A=0 S56=325.25 S57=32.59 S58=174.45 S59=125.25
S60=91 S61=91 S62=51 S62A=0 S63=60 S64=143 S65=223 S66=366 S67=9.32
S68=135.19 S69=144.51 S70==1 S73==256068
S74A=B=0 S75=5 S77=0 S78=0 S79=0 S80=2911656
S81====0 S85=0 S86=0 S87=2209
S89==A=B=0 S91==0 S93=0 S94=0
S95= S97===1004 S101=124829
S102=2548 S104=3820 S106=3 S108=0
S109=1 S111=0 S112=0 S113=0 S114=0 S115=0 S116=0 S117=0 S118=0
S119=0 S120=0 S121=0 S122=0 S123=0 S124=5=6=0 S127=0
S128=0 S129=698 S131=1 S133=4=169744
S135=8784 S137=4 S139A=0 S140=0 S141=0
S141A=0 S142=0 S143=0 S144=0 S145=1 S147=8=0 S149=0
S150=0 S151=0 S151A=0 S151B=0 S152=0 S153=0 S154=0 S155=0 S156=0 S157=0
S158=9 S161=
S162= S164=301 S165=0
S166=232 S168=6 S170=62 S172=0 S172A=0
S173=0 S174=0 S174A=0 S175=0 S176=0 S177=0 S178= S180=875285
S181=0 S182=0 S183=081 S185=94 S187=70
S189= S191=0 S192= S194=0 S195=0 S196=0 S197=0 S198=0
S199=0 S200=0 S201=0 S202=0 S203=0 S204=0 S205=0 S206=0 S207=0 S208=0
S209=0 S210=719 S212=2 S214=5=166780
S216=600 S218=2 S220A=0 S221=0 S222=0
S222A=0 S223=0 S223A=0 S224=5=6=
S227=0.828658
S228=0.9=0.0=0 S231=1.2=1.017772
S233=1.4=9.5=1.6=1.7=0 S237A=0
The SAS System
15:38 Tuesday, February 12, 2002
S238=0 S239=0 S239A=0 S240=0 S241=
S257=1 S259=1
S261=2=7881 S264=256 S266=7=0
S267A=0 S268=0 S269=0 S269A=0 S270=0 S270A=0 S271=2=
S274= S276=7=8718 S279=1858
S281=2=0 S282A=0 S283=0 S284=0 S284A=0 S285=0 S285A=0 S286=480408
S287=5 S289=0 S290=0 S291=163 S293=
S295= S297=0 S297A=0 S298=0 S298A=0 S298B=0 S299=0 S299A=0
S300=8876 S302=0 S303=0 S304=0 S305=273 S307=4734
S308=0 S309= S311=0 S311A=0 S312=0 S312A=0 S312B=0 S313=0
S313A=0 S314=8A=2B=C=D=0 S315=0 S316=0
S317=0 S318=0 S319=0 S320=0 S321=0 S322=0 S322A=0 S323=0 S324=0 S325=0
S326=0 S327=0 S328=0 S329=0 S330=0 S331=0 S332=0 S333=0 S334=0 S335=0
S336=0 S337=0 S338=0 S339=0 S340=0 S341=0 S341A=0 S342=0 S343=0 S344=0
S345=0 S346=0 S347=0 S348=0 S349=0 S350=0 S351=0 S352=0 S353=0 S354=0
S355=0 S356=0 S357=0 S358=0 S359=0=32=
S363= S366=7=0 S368=8 S369A=0
S370=8519 S372=0 S373=12 S375=6
S377=6 S379=0=473804
S383=4=5=6=-579704
S389=0=1=2=0 S393=4=8
S396=8650=-1=0
S402=0 S403= S405=-==0 W3=0 W4=0 W5=0 W6=0
W7==0 W9=0 W10=0 W11=0 W12=0 W13=0 W14=0 W15==386030
W17=9122 W19=0 W20=0 W21===0 W24=0
W25==399 W28====0 W32=0
W33=7 W35=0 W36=0 W37===0 W40=0 W41=0 W42=0
W43=0 W44==0 W46=0 W47=0 W48=0 W49=0 W50=0 W51=0 W52=300572
W53=5 W55==0 W57=0 W58=55 W60=12200
W61=202 W63= W65=0 W66= W68=0 W69=0
W70==9.69 W72=0 W73=0 W74=0 W75=0 W76=0 W77=9.69 W78=0 W79=0
W80=0 W81=0 W82=0 W83=0 W84=0 W85=9.69 W86=41.81 W87=25.95 W88=12.26 W89=0
W90=0 W91=9.07 W92=10.7 W93=6.52 W94=6.96 W95=7.65 W96=25.39 W97=0 W98=0
W99=9.56 W100=0 W101=0 W102=0 W103=8.83 year=1999 newdate_1=
newdate_A= mm1=03 dd1=01 yyyy1=1999 newdate_2=01MAR99 mmA=03 ddA=00
yyyyA=2000 newdate_B=. _ERROR_=1 _N_=58
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
NOTE: Invalid argument to function MDY at line 111 column 46.
S6E=051643
S7=CHAPMAN CONVALESCENT HOSPITAL S8=
S12=RIVERSIDE S13=4 S14=2 S15=0 S16=06 S17=065 S18=99 S19=80
S21=1 S22=F S23=9 S24=9 S25==12 S27=0 S28=47 S29=0 S30=0 S31=59
S32= S34=1 S36=0 S37=2 S39=756 S40=1
S41= S42=0 S44=1 S45=1 S47=31
S48=22 S48A=0 S49=23 S50=175 S51=198 S51A=0 S52=373 S53=24.39 S54=24.39
S55=248.45 S55A=0 S56=237.7 S57=19.54 S58=77.1 S59=50.1 S60=32 S61=32
S62=19 S62A=0 S63=20 S64=176 S65=195 S66=371 S67=8.78 S68=28.32 S69=37.1
The SAS System
15:38 Tuesday, February 12, 2002
S70==7 S73==A=B=0 S75=0
S76=0 S77=0 S78==0 S80====376109
S84=0 S85=0 S86==714
S90A=B=0 S91==0 S93=0 S94==
S97===7202 S101=3696
S103=1807 S105=5155 S107=0 S108=0 S109=25590
S110=2 S112=0 S113=0 S114=0 S115=0 S116=0 S117=0 S118=0 S119=0
S120=0 S121=0 S122=0 S123=0 S124=5=6=0 S127=0 S128=0
S129=794 S131=257 S133=4=3051
S136=0 S137=2034 S139=0 S139A= S141=0 S141A=0 S142=0
S143=0 S144=0 S145= S147=8=0 S149=0 S150=0 S151=0
S151A=0 S151B=0 S152=0 S153=0 S154=0 S155=0 S156=0 S157=0 S158=39325
S159=0=0 S161=
S162=25 S163=0 S164=66 S165=25 S166=9
S168=60 S169=0 S170=74 S171=201 S172=0 S172A=6 S173=0 S174=0 S174A=0 S175=0
S176=0 S177= S179=0 S180=1=0 S182=0 S183=432 S184=950
S185=440 S186=3 S188=63 S190=0 S191=0 S192=1111
S193=844 S194=0 S195=0 S196=0 S197=0 S198=0 S199=0 S200=0 S201=0 S202=0
S203=0 S204=0 S205=0 S206=0 S207=0 S208=0 S209=0 S210=2168
S212=2770 S214=5=5725 S217=0 S218=43011
S219=0=0 S220A=6 S222=0 S222A=0 S223=0 S223A=0
S227=0.8=0.9=0.884272
S230=0.1=0.2=0.6.4=0 S235=0.571319
S236=0.7=0 S237A=0.8=0 S239=0 S239A=0 S240=0 S241=
S257=72 S259=5 S261=6850 S263=4480
S264=0 S265=959 S267=0 S267A=0 S268=0 S269=0 S269A=0 S270=0
S270A=0 S271=2=57 S274= S276=54466
S277=35 S279=0 S280=78 S282=0 S282A=0 S283=0 S284=0
S284A=0 S285=0 S285A=0 S286=719 S288= S290=0
S291= S293=0 S294=0 S295=0 S296=0 S297=0 S297A=0 S298=0 S298A=0
S298B=0 S299=0 S299A=0 S300=116 S302= S304=0
S305= S307=0 S308=0 S309=0 S310=0 S311=0 S311A=0 S312=0 S312A=0
S312B=0 S313=0 S313A=0 S314=A=B=0 S314C=0 S314D=0 S315=0
S316=0 S317=0 S318=0 S319=0 S320=0 S321=0 S322=0 S322A=0 S323=0 S324=0
S325=0 S326=0 S327=0 S328=0 S329=0 S330=0 S331=0 S332=0 S333=0 S334=0
S335=0 S336=0 S337=0 S338=0 S339=0 S340=0 S341=0 S341A=0 S342=0 S343=0
S344=0 S345=0 S346=0 S347=0 S348=0 S349=0 S350=0 S351=0 S352=0 S353=0
S354=0 S355=0 S356=0 S357=0 S358=0 S359=3 S361=2=
S363=900 S364=5=0 S366=7=0 S368= S369A=0
S370=71 S372=0 S373= S375= S377=5369
S378=0 S379=0=6867 S382=3=4=0
S385=6=7=8=9=0=2100347
S391=2=0 S393=4=0 S395=0 S396=7=4811314
S398=9=0=1=0 S402=605 S404=0
S405===0 W3=0 W4=0 W5=0 W6=0 W7==0 W9=0 W10=0
W11=0 W12==0 W14===0 W17=0 W18=243300
W19=1 W21===0 W24=0 W25==27044
W27=327 W29===0 W32=0 W33=254
W35=0 W36=0 W37===0 W40=0 W41=0 W42=0 W43=0 W44=145481
W45=0 W46=0 W47=0 W48=0 W49=1 W51=1165 W53=0 W54=0
W55==0 W57=0 W58=6 W60=2 W62=11825
W63= W65=0 W66=7 W68=0 W69=0 W70=489.85 W71=14.06
W72=0 W73=0 W74=0 W75=0 W76=0 W77=14.06 W78=0 W79=0 W80=0 W81=0 W82=25.81
W83=0 W84=25.81 W85=12.26 W86=0 W87=0 W88=14.29 W89=0 W90=0 W91=36.75
W92=11.43 W93=6.78 W94=6.47 W95=8.86 W96=21.04 W97=0 W98=0 W99=12.44
W100=10.93 W101=0 W102=0 W103=14.01 year=1999 newdate_1=
newdate_A= mm1=03 dd1=01 yyyy1=1999 newdate_2=01MAR99 mmA=03 ddA=00
yyyyA=2000 newdate_B=. _ERROR_=1 _N_=193
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
NOTE: Invalid argument to function MDY at line 111 column 46.
S7=EMMANUEL HEALTH CARE NORWALK S8=
S12=LOS ANGELES S13=4 S14=2 S15=0 S16=06 S17=037 S18=99 S19=80
S21=2 S22=F S23=9 S24=9 S25==15 S27=0 S28=84 S29=0 S30=0 S31=99
S32= S34=3 S36=0 S37=37 S39=9
S41=2 S42=20 S44=2 S45=3
S47=31 S48=96 S48A=0 S49=112 S50=80 S51=123 S51A=0 S52=203 S53=66.03
S54=66.03 S55=224.74 S55A=0 S56=211.73 S57=66.63 S58=206.04 S59=151.1
S60=61 S61=61 S62=63 S62A=0 S63=65 S64=105 S65=84 S66=189 S67=27.61
S68=62.37 S69=89.98 S70=2663 S72=0 S73==602975
S74A=B=0 S75=4 S77=0 S78=0 S79=0 S80=1364942
S81====0 S85=0 S86=9 S88=2132320
S89==A=B=0 S91==0 S93=0 S94=0
S95= S97==2663 S100=59806
S102=2004 S104=1849 S106=7=0 S108=0
S109=1 S111=0 S112=0 S113=0 S114=0 S115=0 S116=0 S117=0 S118=0
S119=0 S120=0 S121=0 S122=0 S123=0 S124=5=6=0 S127=0
S128=0 S129=395 S131=2=0 S133=4=123844
S135=399 S137=2 S139A=0 S140=0 S141=0
S141A=0 S142=0 S143=0 S144=0 S145= S147=8=0 S149=0
S150=0 S151=0 S151A=0 S151B=0 S152=0 S153=0 S154=0 S155=0 S156=0 S157=0
S158=9=0=0 S161=
S162=883 S163=159 S164=
S166=94 S168=3 S170=69 S172=0 S172A=0
S173=0 S174=0 S174A=0 S175=0 S176=0 S177=0 S178= S180=472211
S181=0 S182=0 S183=895 S185=758 S186=92 S188=5423
S189=1 S191=0 S192= S194=0 S195=0 S196=0 S197=0
S198=0 S199=0 S200=0 S201=0 S202=0 S203=0 S204=0 S205=0 S206=0 S207=0
S208=0 S209=0 S210=4714 S212=3=0 S214=177864
S215=6=38 S218=2 S220A=0
S221=0 S222=0 S222A=0 S223=0 S223A=0 S224=5=6=
S227=0.7.9=0.0=0 S231=1.2=0.950759
S233=2.4=15.5=1.6=0.7=0 S237A=0
S238=0 S239=0 S239A=0 S240=0 S241=
S257=483 S259=8
S261=9983 S263=479 S264=0 S265=1 S267A=0
S268=0 S269=0 S269A=0 S270=0 S270A=0 S271=2=45
The SAS System
15:38 Tuesday, February 12, 2002
S274=7 S276=7=808 S279=0 S280=21040
S281=8 S282A=0 S283=0 S284=0 S284A=0 S285=0 S285A=0 S286=389662
S287=2231 S289=0 S290=0 S291=0 S292=0 S293=0 S294=0 S295=0
S296=0 S297=0 S297A=0 S298=0 S298A=0 S298B=0 S299=0 S299A=0 S300=39323
S301=150 S303=0 S304=0 S305=0 S306=0 S307=0 S308=0 S309=0
S310=0 S311=0 S311A=0 S312=0 S312A=0 S312B=0 S313=0 S313A=0 S314=20814
S314A=0 S314B=0 S314C=0 S314D=0 S315=0 S316=0 S317=0 S318=0 S319=0 S320=0
S321=0 S322=0 S322A=0 S323=0 S324=0 S325=0 S326=0 S327=0 S328=0 S329=0
S330=0 S331=0 S332=0 S333=0 S334=0 S335=0 S336=0 S337=0 S338=0 S339=0
S340=0 S341=0 S341A=0 S342=0 S343=0 S344=0 S345=0 S346=0 S347=0 S348=0
S349=0 S350=0 S351=0 S352=0 S353=0 S354=0 S355=0 S356=0 S357=0 S358=0
S366=7=0 S368=2 S369A=0 S370=2814 S372=0
S373=6 S375=1 S377=2 S379=780183
S380=42541013
S386=-7=8=9=0=1=733200
S392=0 S393=4=7 S396=7397262
S399=0=- S402=0 S403= S405=-1364
W1==0 W3=0 W4=0 W5=0 W6=0 W7==0 W9=0 W10=0 W11=0 W12=0
W13=0 W14=0 W15===5201 W19=0 W20=0
W21===0 W24=0 W25==3 W28=0
W29==8 W32=0 W33=3 W35=0 W36=0 W37=512991
W38==0 W40=0 W41=0 W42=0 W43=0 W44==0 W46=0 W47=0 W48=0
W49=0 W50=0 W51=0 W52==0 W55==0 W57=0
W58=12 W60=0 W61=0 W62=14 W64=0 W65=0 W66=3898
W67=0 W68=0 W69=0 W70=454.72 W71=10.52 W72=0 W73=0 W74=0 W75=0 W76=0
W77=10.52 W78=0 W79=0 W80=0 W81=0 W82=0 W83=0 W84=0 W85=10.52 W86=52.96
W87=25.93 W88=13.49 W89=0 W90=0 W91=12.72 W92=8.96 W93=0 W94=0 W95=7.62
W96=23.96 W97=0 W98=0 W99=9.51 W100=0 W101=0 W102=0 W103=11.28 year=1999
newdate_1= newdate_A= mm1=03 dd1=01 yyyy1=1999
newdate_2=01MAR99 mmA=03 ddA=00 yyyyA=2000 newdate_B=. _ERROR_=1 _N_=339
NOTE: Invalid argument to function MDY at line 111 column 46.
S7=EMMANUEL HEALTH CARE WEST COVINA S8=
S11=12 S12=LOS ANGELES S13=4 S14=2 S15=0 S16=06 S17=037 S18=05 S19=4480
S20=5 S22=N S23=9 S24=9 S25==18 S27=0 S28=81 S29=0
S30=0 S31=99 S32= S34=2 S36=0 S37=30
S39=0 S41=2 S42=29 S44=2
S45=3 S47=52 S48=75 S48A=0 S49=95 S50=119 S51=164 S51A=0 S52=283
S53=47.31 S54=47.31 S55=288.72 S55A=0 S56=250.67 S57=54.78 S58=160.26
S59=115.9 S60=92 S61=92 S62=48 S62A=0 S63=57 S64=152 S65=133 S66=285 S67=38
S68=28 S69=66 S70==2 S73==A=400387
S74B=0 S75=8 S77=0 S78=0 S79=0 S80===81146
S83==0 S85=0 S86= S88===567053
S90A=B=0 S91==0 S93=0 S94=0 S95=268 S96=0 S97=3990560
S98==2668 S101=2=2652
S104=4352 S106=7=0 S108=0 S109=2 S111=0
S112=0 S113=0 S114=0 S115=0 S116=0 S117=0 S118=0 S119=0 S120=0 S121=0
S122=0 S123=0 S124=5=6=0 S127=0 S128=0 S129=59412
S130=57 S133=4=5=44912
S136=2 S139A=0 S140=0 S141=0 S141A=0
The SAS System
15:38 Tuesday, February 12, 2002
S142=0 S143=0 S144=0 S145= S147=8=0 S149=0 S150=0
S151=0 S151A=0 S151B=0 S152=0 S153=0 S154=0 S155=0 S156=0 S157=0
S158=9=0=0 S161=
S162=554 S163=107 S164=8
S166=149 S168=9 S170=77 S172=0 S172A=0
S173=0 S174=0 S174A=0 S175=0 S176=0 S177=0 S178= S180=480979
S181=0 S182=0 S183=83 S185=44 S187=53
S189=1 S191=0 S192= S194=0 S195=0 S196=0 S197=0
S198=0 S199=0 S200=0 S201=0 S202=0 S203=0 S204=0 S205=0 S206=0 S207=0
S208=0 S209=0 S210=8140 S212=3=1657
S215=6=376 S218=8 S220A=0
S221=0 S222=0 S222A=0 S223=0 S223A=0 S224=5=6=
S227=0.8=0.9=0.0=1.1=1.377433
S232=0.3=1.3.5=1.6=0.7=0
S237A=0 S238=0 S239=0 S239A=0 S240=0 S241=
S259=886 S261=6976 S263=176 S265=29957
S266=7=0 S267A=0 S268=0 S269=0 S269A=0 S270=0 S270A=0 S271=400690
S272=179 S274=753 S276=9095 S278=18283
S279=2347 S281=2=0 S282A=0 S283=0 S284=0 S284A=0
S285=0 S285A=0 S286=7=4915 S289=0 S290=0 S291=0
S292=0 S293=0 S294=0 S295=0 S296=0 S297=0 S297A=0 S298=0 S298A=0 S298B=0
S299=0 S299A=0 S300=5431 S302= S304=0 S305=0 S306=0
S307=0 S308=0 S309=0 S310=0 S311=0 S311A=0 S312=0 S312A=0 S312B=0 S313=0
S313A=0 S314=3A=0 S314B=0 S314C=0 S314D=0 S315=0 S316=0 S317=0
S318=0 S319=0 S320=0 S321=0 S322=0 S322A=0 S323=0 S324=0 S325=0 S326=0
S327=0 S328=0 S329=0 S330=0 S331=0 S332=0 S333=0 S334=0 S335=0 S336=0
S337=0 S338=0 S339=0 S340=0 S341=0 S341A=0 S342=0 S343=0 S344=0 S345=0
S346=0 S347=0 S348=0 S349=0 S350=0 S351=0 S352=0 S353=0 S354=0 S355=0
S356=0 S357=0 S358=0 S359=0=0 S361=2=
S364=5=0 S366=7=0 S368=3 S369A=0 S370=34777
S371=3 S373=1 S375=2 S377=4
S379=0=259
S385=6=653036116
S391=2=0 S393=4=5 S396=538073
S398=9=0=9 S402=0 S403=
S405===0 W3=0 W4=0 W5=0 W6=0 W7==0 W9=0 W10=0
W11=0 W12=0 W13=0 W14=0 W15===6928 W19=0
W20=0 W21===0 W24=0 W25==3 W28=0
W29===0 W32=0 W33=5 W35=0 W36=0 W37=617142
W38==0 W40=0 W41=0 W42=0 W43=0 W44==0 W46=0 W47=0 W48=0
W49=0 W50=0 W51=0 W52==6 W55==0 W57=0
W58=11 W60=0 W61=0 W62=18 W64=0 W65=0 W66=5022
W67=0 W68=0 W69=0 W70=432.77 W71=12.04 W72=0 W73=0 W74=0 W75=0 W76=0
W77=12.04 W78=0 W79=0 W80=0 W81=0 W82=0 W83=0 W84=0 W85=12.04 W86=52.6
W87=25.91 W88=15.65 W89=0 W90=0 W91=17.32 W92=15.15 W93=0 W94=0 W95=9.76
W96=25.47 W97=0 W98=0 W99=10.58 W100=0 W101=0 W102=0 W103=14.26 year=1999
newdate_1= newdate_A= mm1=03 dd1=01 yyyy1=1999
newdate_2=01MAR99 mmA=03 ddA=00 yyyyA=2000 newdate_B=. _ERROR_=1 _N_=340
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
NOTE: Invalid argument to function MDY at line 111 column 46.
S7=MEDICAL CENTER OF GARDEN GROVE S8=A=
S11=12 S12=ORANGE S13=4 S14=0 S15=0 S16=06 S17=059 S18=05 S19=5945
S20=5 S22=F S23=9 S24=9 S25==12 S27=0 S28=0 S29=0
S30=0 S31=0 S32= S34=0 S35=0 S36=0 S37=0 S38= S40=0
S41=0 S41A=0 S42=0 S43= S44A=0 S45=0 S46=0 S47=0 S48=0 S48A=0
S49=0 S50=0 S51=0 S51A=0 S52=0 S53=0 S54=0 S55=0 S55A=0 S56=0 S57=0 S58=0
S59=0 S60=0 S61=0 S62=0 S62A=0 S63=0 S64=0 S65=0 S66=0 S67=11.89 S68=0
S69=0 S70=0 S71=0 S72=0 S73=0 S74=0 S74A=0 S74B=0 S75=0 S76=0 S77=0 S78=0
The SAS System
15:38 Tuesday, February 12, 2002
S79=0 S80==0 S82=0 S83=0 S84=0 S85=0 S86=0 S87=0 S88==0
S90=0 S90A=0 S90B=0 S91=0 S92=0 S93=0 S94=0 S95=0 S96=0 S97==0
S99=0 S100=902 S104=3818
S106=554 S108=0 S109=116 S111=0 S112=0 S113=42561
S114=2422 S116=3307 S118=0 S119=0 S120=0 S121=0
S122=0 S123=0 S124=0 S125=0 S126=0 S127=0 S128=0 S129=0 S130=0 S131=0
S132=0 S133=0 S134=0 S135=0 S136=0 S137=0 S138=0 S139=0 S139A=0 S140=0
S141=0 S141A=0 S142=0 S143=0 S144=0 S145=0 S146=0 S147=8=0
S149=0 S150=0 S151=0 S151A=0 S151B=0 S152=0 S153=0 S154=0 S155=0 S156=0
S157=0 S158=0 S159=0 S160=0 S161=
S162=0 S163=0 S164=0 S165=0 S166=0
S167=0 S168=0 S169=0 S170=0 S171=0 S172=0 S172A=0 S173=0 S174=0 S174A=0
S175=0 S176=0 S177=0 S178=0 S179=0 S180=9 S182=93
S184=536 S186=746 S187=802 S188=15 S190=550 S191=0
S192=413 S193=755 S194=0 S195= S197=249 S198=1390
S200=21 S202=45 S204=515 S205=0 S206=571 S207=774
S208= S210=0 S211=0 S212=0 S213=0 S214=0 S215=0 S216=0 S217=0
S218=0 S219=0 S220=0 S220A=0 S221=0 S222=0 S222A=0 S223=0 S223A=0 S224=0
S225=0 S226=
S227=0.8=0.9=0.0=0.068138
S231=0.2=0.3=0.1.5=0.196731
S236=0.7=0 S237A=0 S238=0.9=0 S239A=0 S240=0 S241=
S257=74903
S263=2884 S265=6=7=0 S267A=0 S268=2000
S269=0 S269A=0 S270=0 S270A=0 S271=2=1165 S274=10911
S275=2923 S277=566 S279=5115
S281=2=0 S282A=0 S283=184 S284=0 S284A=0 S285=0 S285A=539405
S286=0 S287=0 S288= S290=0 S291=0 S292=0 S293=0 S294=0 S295=0
S296=0 S297=0 S297A=0 S298=0 S298A=0 S298B=0 S299=0 S299A=0 S300=3013
S301=0 S302=390 S303=0 S304=0 S305=0 S306=0 S307=0 S308=0 S309=0 S310=0
S311=0 S311A=0 S312=0 S312A=0 S312B=0 S313=0 S313A=0 S314=390 S314A=0
S314B=0 S314C=0 S314D=0 S315=606 S316=318 S317=8=682000
S319=0=1=2=0 S322A=186.04 S323=4=0
S325=6=0 S327=8=0 S329=0 S330=0 S331=0 S332=0 S333=0
S334=0 S335=0 S336=0 S337=0 S338=0 S339=0 S340=0 S341=390 S341A=0 S342=0
S343=0 S344=390 S345=390 S346=582 S347=0 S348=-192 S349=0 S350=0 S351=0
S352=0 S353=0 S354=0 S355=0 S356=0 S357=8=0 S359=3
S361=0 S362=
S363=0 S364=5=0 S366=7=0 S368=0 S369=0
S369A=0 S370=0 S371=0 S372=0 S373=0 S374=0 S375=0 S376=0 S377=0 S378=0
S379=0 S380=0 S381=0 S382=0 S383=0 S384=0 S385=0 S386=0 S387=0 S388=2221980
S389=0 S390=0 S391=0 S392=0 S393=0 S394=0 S395=0 S396=0 S397=0 S398=0
S399=0 S400=0 S401=0 S402=0 S403=0 S404=0 S405=0 W1=0 W2=0 W3=0 W4=0 W5=0
W6=0 W7=0 W8=0 W9=0 W10=0 W11=0 W12=0 W13=0 W14=0 W15=0 W16=0 W17=0 W18=0
W19=0 W20=0 W21=0 W22=0 W23=0 W24=0 W25=0 W26=0 W27=0 W28=0 W29=0 W30=0
W31=0 W32=0 W33=0 W34=0 W35=0 W36=0 W37=0 W38=0 W39=0 W40=0 W41=0 W42=0
W43=0 W44=0 W45=0 W46=0 W47=0 W48=0 W49=0 W50=0 W51=0 W52=0 W53=0 W54=0
W55=0 W56=0 W57=0 W58=0 W59=0 W60=0 W61=0 W62=0 W63=0 W64=0 W65=0 W66=0
W67=0 W68=0 W69=0 W70=0 W71=0 W72=0 W73=0 W74=0 W75=0 W76=0 W77=0 W78=0
W79=0 W80=0 W81=0 W82=0 W83=0 W84=0 W85=0 W86=0 W87=0 W88=0 W89=0 W90=0
W91=0 W92=0 W93=0 W94=0 W95=0 W96=0 W97=0 W98=0 W99=0 W100=0 W101=0 W102=0
W103=0 year=1999 newdate_1= newdate_A= mm1=03 dd1=01
yyyy1=1999 newdate_2=01MAR99 mmA=03 ddA=00 yyyyA=2000 newdate_B=. _ERROR_=1
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
NOTE: Invalid argument to function MDY at line 111 column 46.
S7=PARK MARINO CONVALESCENT CTR S8=
S12=LOS ANGELES S13=4 S14=1 S15=0 S16=06 S17=037 S18=05 S19=80
S21=2 S22=F S23=9 S24=9 S25==74 S27=0 S28=0 S29=0 S30=0 S31=74
S32=2 S34=0 S35=0 S36=0 S37=2 S39=840 S40=0 S41=0
S41A=0 S42=0 S43=1 S44A=0 S45=1 S47=21 S48=0 S48A=0
S49=0 S50=609 S51=0 S51A=0 S52=609 S53=40 S54=40 S55=0 S55A=0 S56=0
S57=30.61 S58=0 S59=30.61 S60=55 S61=55 S62=0 S62A=0 S63=0 S64=615 S65=0
S66=615 S67=57.74 S68=0 S69=57.74 S70=503 S72=0 S73=806007
S74=A=0 S74B=0 S75=91 S76=0 S77=0 S78=0 S79=0 S80=1395856
S81====0 S85=0 S86==0 S88=1777863
S89==A=0 S90B=0 S91==0 S93=0 S94=0 S95=10242
S96=0 S97==860 S100=0127
S103=4667 S105=6=7=0 S108=0 S109=70132
S110=1=0 S112=0 S113=0 S114=0 S115=0 S116=0 S117=0 S118=0 S119=0
S120=0 S121=0 S122=0 S123=0 S124=5=0 S126=0 S127=0 S128=0 S129=0
S130=1 S132=0 S133=4=234 S136=0 S137=51138
S138=9=0 S139A=0 S140=234 S141=0 S141A=0 S142=0 S143=0 S144=0
S145=1 S147=8=0 S149=0 S150=0 S151=0 S151A=0 S151B=0
S152=0 S153=0 S154=0 S155=0 S156=0 S157=0 S158=9=0 S160=0 S161=
S162=0 S163=75 S164=0 S165=0 S166= S168=23 S169=0 S170=289
S171=738 S172=0 S172A=0 S173=5 S174=0 S174A=0 S175=0 S176=0 S177=0
S178= S180=1=0 S182=0 S183=0 S184=68
S186=23 S188=141 S190=0 S191=0 S192=14
S194=0 S195=0 S196=0 S197=0 S198=0 S199=0 S200=0 S201=0 S202=0 S203=0
S204=0 S205=0 S206=0 S207=0 S208=0 S209=0 S210=0 S211=7 S213=0
S214=5=4500 S217=0 S218=9=0=0
S220A=0 S221= S222A=0 S223=0 S223A=0 S224=5=523695
S227=0 S228=0.9=0 S230=0 S231=0.6.650444
S233=0.4=0 S235=0.6=0.7=0 S237A=0
S238=0.9=0 S239A=0 S240=0 S241=
S257=0 S258= S260=0
S261=4600 S263= S265=1045 S267=0 S267A=0
S268=0 S269=0 S269A=0 S270=0 S270A=0 S271=2=0 S273=678 S274=0
S275=0 S276=2448 S278= S280=656 S282=0
S282A=0 S283=0 S284=0 S284A=0 S285=0 S285A=0 S286=7 S288=0
The SAS System
15:38 Tuesday, February 12, 2002
S289=0 S290=0 S291=0 S292=0 S293=100 S294=0 S295=0 S296=0 S297=0 S297A=0
S298=0 S298A=0 S298B=0 S299=0 S299A=0 S300=100 S301=0 S302=0 S303=0 S304=0
S305=0 S306=0 S307=67 S308=0 S309=0 S310=0 S311=0 S311A=0 S312=0 S312A=0
S312B=0 S313=0 S313A=0 S314=67 S314A=0 S314B=0 S314C=60 S314D=0 S315=1661
S316=0 S317=8=9=0=273 S322=94273
S322A=0 S323=0 S324=5=0 S326=0 S327=0 S328=0 S329=0 S330=0 S331=0
S332=0 S333=0 S334=0 S335=0 S336=0 S337=0 S338=0 S339=0 S340=0 S341=0
S341A=0 S342=0 S343=0 S344=0 S345=0 S346=0 S347=0 S348=0 S349=0 S350=0
S351=0 S352=0 S353=0 S354=0 S355=0 S356=0 S357=0 S358=0 S359=3
S363=0 S364=5=0 S366=7=0 S368=60
S369=0 S369A=0 S370=60 S371=60 S372=0 S373=20 S374=0 S375=40 S376=0 S377=80
S378=0 S379=-0=1=0 S382=3=4=0
S385=6=7=8=9=0 S390=2279488
S391=2=0 S393=4=0 S395=0 S396=0 S397=3251294
S398=9=0=-1=0 S402=3=141291
S404=0 S405=-==0 W3=0 W4=0 W5=0 W6=0 W7==0
W9=0 W10=0 W11=0 W12=0 W13=0 W14=0 W15===66722
W18==0 W20=0 W21===0 W24=0 W25=272516
W26=628 W28=4528 W30==0 W32=0 W33=55207
W34=6 W36=0 W37===0 W40=0 W41=0 W42=0 W43=0
W44==0 W46=0 W47=0 W48=0 W49=0 W50=0 W51=0 W52==3694
W54=792 W56=0 W57=0 W58=0 W59=0 W60=0 W61=0 W62=0 W63=0 W64=0
W65=0 W66=0 W67=0 W68=0 W69=0 W70=0 W71=7.85 W72=0 W73=0 W74=0 W75=0 W76=0
W77=7.85 W78=0 W79=0 W80=0 W81=0 W82=0 W83=0 W84=0 W85=7.85 W86=42.76
W87=28.07 W88=10.25 W89=0 W90=0 W91=0 W92=0 W93=0 W94=0 W95=0 W96=0 W97=0
W98=0 W99=0 W100=0 W101=0 W102=0 W103=0 year=1999 newdate_1=
newdate_A= mm1=03 dd1=01 yyyy1=1999 newdate_2=01MAR99 mmA=03 ddA=00
yyyyA=2000 newdate_B=. _ERROR_=1 _N_=677
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
The SAS System
15:38 Tuesday, February 12, 2002
NOTE: Mathematical operations could not be performed at the following
places. The results of the operations have been set to missing
Each place is given by: (Number of times) at (Line):(Column).
6 at 111:46
The SAS System
15:38 Tuesday, February 12, 2002
NOTE: There were 1042 observations read from the data set
WORK.CALIFORNIA99.
NOTE: The data set WORK.CALIFORNIA99 has 1042 observations and 553
variables.
NOTE: DATA statement used:
2.31 seconds
0.49 seconds
NOTE: There were 5 observations read from the data set WORK.CALIFORNIA99.
NOTE: The PROCEDURE PRINT printed page 8.
NOTE: PROCEDURE PRINT used:
0.07 seconds
0.03 seconds
/*************
This section creates a variable called underpps.
This variable
! takes a value
of 1 if the cost reporting period begins on or after July 1,
! 1998 (the day on
which PPS reimbursement replaced the fee for service system).
! It takes on a
value of 0 for observations with a cost report beginning date
! before July 1,
A frequency is also performed to see what proportion of
! the facilities
in each year were operating under the PPS regime for their
! entire reporting
*************/
NOTE: There were 5 observations read from the data set WORK.CALIFORNIA99.
NOTE: The PROCEDURE PRINT printed page 9.
NOTE: PROCEDURE PRINT used:
0.02 seconds
0.03 seconds
data california97 (rename = (newdate_2=beg_date
! newdate_B=end_date));
set california97;
NOTE: There were 1307 observations read from the data set
WORK.CALIFORNIA97.
NOTE: The data set WORK.CALIFORNIA97 has 1307 observations and 553
variables.
NOTE: DATA statement used:
2.61 seconds
0.30 seconds
data california97 (drop = newdate_1 mm1 dd1 yyyy1 newdate_A mmA
! ddA yyyyA);
The SAS System
15:38 Tuesday, February 12, 2002
set california97;
underpps = 0;
if beg_date >= '01JUL1998'D then underpps = 1;
NOTE: There were 1307 observations read from the data set
WORK.CALIFORNIA97.
NOTE: The data set WORK.CALIFORNIA97 has 1307 observations and 546
variables.
NOTE: DATA statement used:
2.84 seconds
0.35 seconds
proc sort data=california97;
NOTE: There were 1307 observations read from the data set
WORK.CALIFORNIA97.
NOTE: The data set WORK.CALIFORNIA97 has 1307 observations and 546
variables.
NOTE: PROCEDURE SORT used:
2.05 seconds
0.54 seconds
proc print data=california97;
var S1 S7 beg_date end_
title 'Checking underpps for 1997';
NOTE: There were 1307 observations read from the data set
WORK.CALIFORNIA97.
NOTE: The PROCEDURE PRINT printed pages 10-33.
NOTE: PROCEDURE PRINT used:
2.77 seconds
2.30 seconds
data california98 (rename = (newdate_2=beg_date
! newdate_B=end_date));
set california98;
NOTE: There were 1268 observations read from the data set
WORK.CALIFORNIA98.
NOTE: The data set WORK.CALIFORNIA98 has 1268 observations and 553
variables.
NOTE: DATA statement used:
2.59 seconds
0.39 seconds
data california98 (drop = newdate_1 mm1 dd1 yyyy1 newdate_A mmA
! ddA yyyyA);
set california98;
underpps = 0;
if beg_date => '01JUL1998'D then underpps = 1;
The SAS System
15:38 Tuesday, February 12, 2002
NOTE: There were 1268 observations read from the data set
WORK.CALIFORNIA98.
NOTE: The data set WORK.CALIFORNIA98 has 1268 observations and 546
variables.
NOTE: DATA statement used:
2.65 seconds
0.33 seconds
proc sort data=california98;
NOTE: There were 1268 observations read from the data set
WORK.CALIFORNIA98.
NOTE: The data set WORK.CALIFORNIA98 has 1268 observations and 546
variables.
NOTE: PROCEDURE SORT used:
2.03 seconds
0.41 seconds
proc print data=california98;
var S1 S7 beg_date end_
title 'Checking underpps for 1998';
NOTE: There were 1268 observations read from the data set
WORK.CALIFORNIA98.
NOTE: The PROCEDURE PRINT printed pages 34-57.
NOTE: PROCEDURE PRINT used:
3.01 seconds
2.52 seconds
data california99 (rename = (newdate_2=beg_date
! newdate_B=end_date));
set california99;
NOTE: There were 1042 observations read from the data set
WORK.CALIFORNIA99.
NOTE: The data set WORK.CALIFORNIA99 has 1042 observations and 553
variables.
NOTE: DATA statement used:
2.42 seconds
0.29 seconds
data california99 (drop = newdate_1 mm1 dd1 yyyy1 newdate_A mmA
! ddA yyyyA);
set california99;
underpps = 0;
if beg_date => '01JUL98'D then underpps = 1;
NOTE: There were 1042 observations read from the data set
The SAS System
15:38 Tuesday, February 12, 2002
WORK.CALIFORNIA99.
NOTE: The data set WORK.CALIFORNIA99 has 1042 observations and 546
variables.
NOTE: DATA statement used:
2.72 seconds
0.34 seconds
proc sort data=california99;
NOTE: There were 1042 observations read from the data set
WORK.CALIFORNIA99.
NOTE: The data set WORK.CALIFORNIA99 has 1042 observations and 546
variables.
NOTE: PROCEDURE SORT used:
1.68 seconds
0.29 seconds
proc print data=california99;
var S1 S7 beg_date end_
title 'Checking underpps for 1999';
%MACRO freq(file= );
%LET year=&
proc freq data=california&
title 'Frequency/percentage/proportion of firms for which';
title2 "values reflect operation entirely under PPS for
%freq(file=97);
NOTE: There were 1042 observations read from the data set
WORK.CALIFORNIA99.
NOTE: The PROCEDURE PRINT printed pages 58-76.
NOTE: PROCEDURE PRINT used:
2.42 seconds
2.04 seconds
%freq(file=98);
NOTE: There were 1307 observations read from the data set
WORK.CALIFORNIA97.
NOTE: The PROCEDURE FREQ printed page 77.
NOTE: PROCEDURE FREQ used:
0.32 seconds
0.14 seconds
%freq(file=99);
The SAS System
15:38 Tuesday, February 12, 2002
NOTE: There were 1268 observations read from the data set
WORK.CALIFORNIA98.
NOTE: The PROCEDURE FREQ printed page 78.
NOTE: PROCEDURE FREQ used:
0.22 seconds
0.09 seconds
NOTE: There were 1042 observations read from the data set
WORK.CALIFORNIA99.
NOTE: The PROCEDURE FREQ printed page 79.
NOTE: PROCEDURE FREQ used:
0.15 seconds
0.07 seconds
data medicare.casnfcost97 (rename = (S1=medicare_id S7=fac_name
! S16=state));
set california97;
NOTE: There were 1307 observations read from the data set
WORK.CALIFORNIA97.
NOTE: The data set MEDICARE.CASNFCOST97 has 1307 observations and 546
variables.
NOTE: DATA statement used:
1.98 seconds
0.29 seconds
data medicare.casnfcost98 (rename = (S1=medicare_id S7=fac_name
! S18=state));
set california98;
NOTE: There were 1268 observations read from the data set
WORK.CALIFORNIA98.
NOTE: The data set MEDICARE.CASNFCOST98 has 1268 observations and 546
variables.
NOTE: DATA statement used:
1.96 seconds
0.26 seconds
data medicare.casnfcost99 (rename = (S1=medicare_id S7=fac_name
! S18=state));
set california99;
/*************
The following section stacks the , and 1999 Medicare
! cost report data
and does the same for analogous OSHPD data.
The SAS System
15:38 Tuesday, February 12, 2002
*************/
NOTE: There were 1042 observations read from the data set
WORK.CALIFORNIA99.
NOTE: The data set MEDICARE.CASNFCOST99 has 1042 observations and 546
variables.
NOTE: DATA statement used:
1.60 seconds
0.26 seconds
data medicare.casnfcost9799;
set medicare.casnfcost97 medicare.casnfcost98
! medicare.casnfcost99;
NOTE: There were 1307 observations read from the data set
MEDICARE.CASNFCOST97.
NOTE: There were 1268 observations read from the data set
MEDICARE.CASNFCOST98.
NOTE: There were 1042 observations read from the data set
MEDICARE.CASNFCOST99.
NOTE: The data set MEDICARE.CASNFCOST9799 has 3617 observations and 547
variables.
NOTE: DATA statement used:
9.34 seconds
0.91 seconds
proc sort data=medicare.casnfcost9799;
by medicare_
NOTE: There were 3617 observations read from the data set
MEDICARE.CASNFCOST9799.
NOTE: The data set MEDICARE.CASNFCOST9799 has 3617 observations and 547
variables.
NOTE: PROCEDURE SORT used:
9.39 seconds
1.14 seconds
proc print data=medicare.casnfcost9799;
var fac_name medicare_
title1 'All Medicare facilities operating in California
! during';
title2 'at least one of the following years: ,
NOTE: There were 3617 observations read from the data set
MEDICARE.CASNFCOST9799.
NOTE: The PROCEDURE PRINT printed pages 80-148.
NOTE: PROCEDURE PRINT used:
6.67 seconds
4.66 seconds
The SAS System
15:38 Tuesday, February 12, 2002
data temp (keep = medicare_id fac_name S12 S19 year);
set medicare.casnfcost9799;
NOTE: There were 3617 observations read from the data set
MEDICARE.CASNFCOST9799.
NOTE: The data set WORK.TEMP has 3617 observations and 5 variables.
NOTE: DATA statement used:
0.42 seconds
0.26 seconds
proc sort data=
by medicare_
proc export data=temp outfile='/home/kearney/universe_a.txt';
NOTE: There were 3617 observations read from the data set WORK.TEMP.
NOTE: The data set WORK.TEMP has 3617 observations and 5 variables.
NOTE: PROCEDURE SORT used:
0.25 seconds
0.06 seconds
data oshpd.oshpd9799;
set oshpd.facility_B
if year~=9697;
NOTE: There were 4659 observations read from the data set
OSHPD.FACILITY_BALL.
NOTE: The data set OSHPD.OSHPD9799 has 3492 observations and 387 variables.
NOTE: DATA statement used:
7.73 seconds
0.60 seconds
data oshpd.oshpd9799 (rename = (fac_no=oshpd_id
! mcal_pro=medical_id));
set oshpd.oshpd9799;
NOTE: There were 3492 observations read from the data set OSHPD.OSHPD9799.
NOTE: The data set OSHPD.OSHPD9799 has 3492 observations and 387 variables.
NOTE: DATA statement used:
5.78 seconds
0.60 seconds
proc sort data=oshpd.oshpd9799;
NOTE: There were 3492 observations read from the data set OSHPD.OSHPD9799.
NOTE: The data set OSHPD.OSHPD9799 has 3492 observations and 387 variables.
NOTE: PROCEDURE SORT used:
The SAS System
15:38 Tuesday, February 12, 2002
5.89 seconds
0.76 seconds
proc print data=oshpd.oshpd9799;
var fac_name oshpd_id medical_
title1 'All OSHPD facilities operating in California during'
title2 'at least one of the following years: ,
NOTE: There were 3492 observations read from the data set OSHPD.OSHPD9799.
NOTE: The PROCEDURE PRINT printed pages 149-214.
NOTE: PROCEDURE PRINT used:
12.56 seconds
11.53 seconds
NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA
NOTE: The SAS System used:
49.83 seconds

我要回帖

更多关于 一路好走 的文章

 

随机推荐