1 The SAS System 18:28 Monday, April 15, 2019 NOTE: Copyright (c) 2002-2012 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.4 (TS1M3 MBCS3170) Licensed to NATIONAL BUREAU OF ECONOMIC RESEARCH, Site 70111350. NOTE: This session is executing on the Linux 3.10.0-957.1.3.el7.x86_64 (LIN X64) platform. NOTE: Updated analytical products: SAS/STAT 14.1 NOTE: Additional host information: Linux LIN X64 3.10.0-957.1.3.el7.x86_64 #1 SMP Mon Nov 26 12:36:06 CST 2018 x86_64 Scientific Linux release 7.6 (Nitrogen) You are running SAS 9. Some SAS 8 files will be automatically converted by the V9 engine; others are incompatible. Please see http://support.sas.com/rnd/migration/planning/platform/64bit.html PROC MIGRATE will preserve current SAS file attributes and is recommended for converting all your SAS libraries from any SAS 8 release to SAS 9. For details and examples, please see http://support.sas.com/rnd/migration/index.html This message is contained in the SAS news file, and is presented upon initialization. Edit the file "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: real time 0.05 seconds cpu time 0.02 seconds 1 options nocenter; 2 *libname library "~/bulk/cost-reports/hosp/"; 3 *libname out "~/bulk/cost-reports/hosp/"; 4 libname library "/homes/data/hcris/2552-96"; NOTE: Libref LIBRARY was successfully assigned as follows: Engine: V9 Physical Name: /homes/data/hcris/2552-96 5 libname out "/homes/data/hcris/2552-96"; NOTE: Libref OUT refers to the same physical library as LIBRARY. NOTE: Libref OUT was successfully assigned as follows: Engine: V9 Physical Name: /homes/data/hcris/2552-96 6 *libname out "~/bulk/cost-reports/hosp/worksheets"; 7 8 * by Jean Roth, 2003-12-19 ; 9 * Please report any problems or errors to jroth@nber.org 10 * NOTE: This program is distributed under the GNU GPL. 11 * See http://www.gnu.org/licenses/ for details. ; 12 * Copyright 2004 shared by the National Bureau of Economic Research and Jean Roth ; 13 14 ** NOTE: Using the generic, not user alphanumeric file because most users do not need a custom numeric file ; 2 The SAS System 18:28 Monday, April 15, 2019 15 16 %let user=; 17 18 %macro loop(fyear=,lyear=); 19 20 %do year=&fyear. %to &lyear.; 21 22 %let ds=out.hcris2552_96_&year.; 23 24 data merged; 25 merge library.alpha&year.&user.t (sortedby=rpt_rec_num) library.hosp_rpt2552_96_&year. (in=recent); 26 by rpt_rec_num; 27 fyear=&year.; 28 if recent; 29 30 data hcris&year.&user.; 31 merge library.nmrc&year.&user.t (sortedby=rpt_rec_num) merged (in=recent); 32 by rpt_rec_num; 33 if recent; 34 %*include "/homes/data/hcris/labels/&user._label.sas"; 35 run; 36 37 proc sort data=hcris&year.&user. out=&ds. ; 38 by prvdr_num rpt_rec_num; 39 40 proc print data=&ds. (obs=6); 41 proc means data=&ds. median ; 42 options nolabel; 43 proc means data=&ds. ; 44 options label; 45 proc contents data=&ds.; 46 47 %end; 48 %mend; 49 50 %loop(fyear=1995,lyear=2011); NOTE: Data file LIBRARY.ALPHA1995T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: Data file LIBRARY.HOSP_RPT2552_96_1995.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 2 observations read from the data set LIBRARY.ALPHA1995T. NOTE: There were 2 observations read from the data set LIBRARY.HOSP_RPT2552_96_1995. NOTE: The data set WORK.MERGED has 2 observations and 28 variables. NOTE: DATA statement used (Total process time): real time 0.07 seconds cpu time 0.03 seconds NOTE: Data file LIBRARY.NMRC1995T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 2 observations read from the data set LIBRARY.NMRC1995T. NOTE: There were 2 observations read from the data set WORK.MERGED. NOTE: The data set WORK.HCRIS1995 has 2 observations and 137 variables. 3 The SAS System 18:28 Monday, April 15, 2019 NOTE: DATA statement used (Total process time): real time 0.01 seconds cpu time 0.02 seconds NOTE: Data file OUT.HCRIS2552_96_1995.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 2 observations read from the data set WORK.HCRIS1995. NOTE: The data set OUT.HCRIS2552_96_1995 has 2 observations and 137 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: Data file OUT.HCRIS2552_96_1995.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 2 observations read from the data set OUT.HCRIS2552_96_1995. NOTE: The PROCEDURE PRINT printed pages 1-2. NOTE: PROCEDURE PRINT used (Total process time): real time 0.10 seconds cpu time 0.06 seconds NOTE: Data file OUT.HCRIS2552_96_1995.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 2 observations read from the data set OUT.HCRIS2552_96_1995. NOTE: The PROCEDURE MEANS printed pages 3-5. NOTE: PROCEDURE MEANS used (Total process time): real time 0.03 seconds cpu time 0.01 seconds NOTE: Data file OUT.HCRIS2552_96_1995.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 2 observations read from the data set OUT.HCRIS2552_96_1995. NOTE: The PROCEDURE MEANS printed pages 6-8. NOTE: PROCEDURE MEANS used (Total process time): real time 0.01 seconds cpu time 0.01 seconds NOTE: Data file OUT.HCRIS2552_96_1995.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: The PROCEDURE CONTENTS printed pages 9-12. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.06 seconds cpu time 0.03 seconds NOTE: Data file LIBRARY.ALPHA1996T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce 4 The SAS System 18:28 Monday, April 15, 2019 performance. NOTE: Data file LIBRARY.HOSP_RPT2552_96_1996.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6016 observations read from the data set LIBRARY.ALPHA1996T. NOTE: There were 6064 observations read from the data set LIBRARY.HOSP_RPT2552_96_1996. NOTE: The data set WORK.MERGED has 6064 observations and 41 variables. NOTE: DATA statement used (Total process time): real time 0.07 seconds cpu time 0.05 seconds NOTE: Data file LIBRARY.NMRC1996T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6033 observations read from the data set LIBRARY.NMRC1996T. NOTE: There were 6064 observations read from the data set WORK.MERGED. NOTE: The data set WORK.HCRIS1996 has 6064 observations and 1692 variables. NOTE: DATA statement used (Total process time): real time 0.09 seconds cpu time 0.09 seconds NOTE: Data file OUT.HCRIS2552_96_1996.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6064 observations read from the data set WORK.HCRIS1996. NOTE: The data set OUT.HCRIS2552_96_1996 has 6064 observations and 1692 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.75 seconds cpu time 0.40 seconds NOTE: Data file OUT.HCRIS2552_96_1996.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6 observations read from the data set OUT.HCRIS2552_96_1996. NOTE: The PROCEDURE PRINT printed pages 13-34. NOTE: PROCEDURE PRINT used (Total process time): real time 0.13 seconds cpu time 0.13 seconds NOTE: Data file OUT.HCRIS2552_96_1996.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6064 observations read from the data set OUT.HCRIS2552_96_1996. NOTE: The PROCEDURE MEANS printed pages 35-66. NOTE: PROCEDURE MEANS used (Total process time): real time 0.78 seconds cpu time 0.83 seconds NOTE: Data file OUT.HCRIS2552_96_1996.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce 5 The SAS System 18:28 Monday, April 15, 2019 performance. NOTE: There were 6064 observations read from the data set OUT.HCRIS2552_96_1996. NOTE: The PROCEDURE MEANS printed pages 67-98. NOTE: PROCEDURE MEANS used (Total process time): real time 0.35 seconds cpu time 0.44 seconds NOTE: Data file OUT.HCRIS2552_96_1996.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: The PROCEDURE CONTENTS printed pages 99-132. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Data file LIBRARY.ALPHA1997T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: Data file LIBRARY.HOSP_RPT2552_96_1997.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6309 observations read from the data set LIBRARY.ALPHA1997T. NOTE: There were 6379 observations read from the data set LIBRARY.HOSP_RPT2552_96_1997. NOTE: The data set WORK.MERGED has 6379 observations and 46 variables. NOTE: DATA statement used (Total process time): real time 0.03 seconds cpu time 0.02 seconds NOTE: Data file LIBRARY.NMRC1997T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6333 observations read from the data set LIBRARY.NMRC1997T. NOTE: There were 6379 observations read from the data set WORK.MERGED. NOTE: The data set WORK.HCRIS1997 has 6379 observations and 1790 variables. NOTE: DATA statement used (Total process time): real time 0.09 seconds cpu time 0.09 seconds NOTE: Data file OUT.HCRIS2552_96_1997.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6379 observations read from the data set WORK.HCRIS1997. NOTE: The data set OUT.HCRIS2552_96_1997 has 6379 observations and 1790 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.84 seconds cpu time 0.47 seconds NOTE: Data file OUT.HCRIS2552_96_1997.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce 6 The SAS System 18:28 Monday, April 15, 2019 performance. NOTE: There were 6 observations read from the data set OUT.HCRIS2552_96_1997. NOTE: The PROCEDURE PRINT printed pages 133-162. NOTE: PROCEDURE PRINT used (Total process time): real time 0.11 seconds cpu time 0.11 seconds NOTE: Data file OUT.HCRIS2552_96_1997.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6379 observations read from the data set OUT.HCRIS2552_96_1997. NOTE: The PROCEDURE MEANS printed pages 163-196. NOTE: PROCEDURE MEANS used (Total process time): real time 0.42 seconds cpu time 0.82 seconds NOTE: Data file OUT.HCRIS2552_96_1997.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6379 observations read from the data set OUT.HCRIS2552_96_1997. NOTE: The PROCEDURE MEANS printed pages 197-230. NOTE: PROCEDURE MEANS used (Total process time): real time 0.38 seconds cpu time 0.49 seconds NOTE: Data file OUT.HCRIS2552_96_1997.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: The PROCEDURE CONTENTS printed pages 231-266. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Data file LIBRARY.ALPHA1998T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: Data file LIBRARY.HOSP_RPT2552_96_1998.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6228 observations read from the data set LIBRARY.ALPHA1998T. NOTE: There were 6328 observations read from the data set LIBRARY.HOSP_RPT2552_96_1998. NOTE: The data set WORK.MERGED has 6328 observations and 45 variables. NOTE: DATA statement used (Total process time): real time 0.03 seconds cpu time 0.03 seconds NOTE: Data file LIBRARY.NMRC1998T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6287 observations read from the data set LIBRARY.NMRC1998T. 7 The SAS System 18:28 Monday, April 15, 2019 NOTE: There were 6328 observations read from the data set WORK.MERGED. NOTE: The data set WORK.HCRIS1998 has 6328 observations and 1765 variables. NOTE: DATA statement used (Total process time): real time 0.13 seconds cpu time 0.11 seconds NOTE: Data file OUT.HCRIS2552_96_1998.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6328 observations read from the data set WORK.HCRIS1998. NOTE: The data set OUT.HCRIS2552_96_1998 has 6328 observations and 1765 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.84 seconds cpu time 0.43 seconds NOTE: Data file OUT.HCRIS2552_96_1998.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6 observations read from the data set OUT.HCRIS2552_96_1998. NOTE: The PROCEDURE PRINT printed pages 267-289. NOTE: PROCEDURE PRINT used (Total process time): real time 0.13 seconds cpu time 0.14 seconds NOTE: Data file OUT.HCRIS2552_96_1998.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6328 observations read from the data set OUT.HCRIS2552_96_1998. NOTE: The PROCEDURE MEANS printed pages 290-322. NOTE: PROCEDURE MEANS used (Total process time): real time 0.54 seconds cpu time 0.90 seconds NOTE: Data file OUT.HCRIS2552_96_1998.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6328 observations read from the data set OUT.HCRIS2552_96_1998. NOTE: The PROCEDURE MEANS printed pages 323-355. NOTE: PROCEDURE MEANS used (Total process time): real time 0.44 seconds cpu time 0.49 seconds NOTE: Data file OUT.HCRIS2552_96_1998.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: The PROCEDURE CONTENTS printed pages 356-390. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 8 The SAS System 18:28 Monday, April 15, 2019 NOTE: Data file LIBRARY.ALPHA1999T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: Data file LIBRARY.HOSP_RPT2552_96_1999.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6107 observations read from the data set LIBRARY.ALPHA1999T. NOTE: There were 6210 observations read from the data set LIBRARY.HOSP_RPT2552_96_1999. NOTE: The data set WORK.MERGED has 6210 observations and 45 variables. NOTE: DATA statement used (Total process time): real time 0.05 seconds cpu time 0.03 seconds NOTE: Data file LIBRARY.NMRC1999T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6172 observations read from the data set LIBRARY.NMRC1999T. NOTE: There were 6210 observations read from the data set WORK.MERGED. NOTE: The data set WORK.HCRIS1999 has 6210 observations and 1808 variables. NOTE: DATA statement used (Total process time): real time 0.12 seconds cpu time 0.10 seconds NOTE: Data file OUT.HCRIS2552_96_1999.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6210 observations read from the data set WORK.HCRIS1999. NOTE: The data set OUT.HCRIS2552_96_1999 has 6210 observations and 1808 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.91 seconds cpu time 0.55 seconds NOTE: Data file OUT.HCRIS2552_96_1999.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6 observations read from the data set OUT.HCRIS2552_96_1999. NOTE: The PROCEDURE PRINT printed pages 391-420. NOTE: PROCEDURE PRINT used (Total process time): real time 0.12 seconds cpu time 0.13 seconds NOTE: Data file OUT.HCRIS2552_96_1999.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6210 observations read from the data set OUT.HCRIS2552_96_1999. NOTE: The PROCEDURE MEANS printed pages 421-454. NOTE: PROCEDURE MEANS used (Total process time): real time 0.41 seconds cpu time 0.79 seconds 9 The SAS System 18:28 Monday, April 15, 2019 NOTE: Data file OUT.HCRIS2552_96_1999.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6210 observations read from the data set OUT.HCRIS2552_96_1999. NOTE: The PROCEDURE MEANS printed pages 455-488. NOTE: PROCEDURE MEANS used (Total process time): real time 0.38 seconds cpu time 0.49 seconds NOTE: Data file OUT.HCRIS2552_96_1999.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: The PROCEDURE CONTENTS printed pages 489-524. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Data file LIBRARY.ALPHA2000T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: Data file LIBRARY.HOSP_RPT2552_96_2000.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6146 observations read from the data set LIBRARY.ALPHA2000T. NOTE: There were 6195 observations read from the data set LIBRARY.HOSP_RPT2552_96_2000. NOTE: The data set WORK.MERGED has 6195 observations and 50 variables. NOTE: DATA statement used (Total process time): real time 0.03 seconds cpu time 0.03 seconds NOTE: Data file LIBRARY.NMRC2000T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6180 observations read from the data set LIBRARY.NMRC2000T. NOTE: There were 6195 observations read from the data set WORK.MERGED. NOTE: The data set WORK.HCRIS2000 has 6195 observations and 1778 variables. NOTE: DATA statement used (Total process time): real time 0.09 seconds cpu time 0.09 seconds NOTE: Data file OUT.HCRIS2552_96_2000.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6195 observations read from the data set WORK.HCRIS2000. NOTE: The data set OUT.HCRIS2552_96_2000 has 6195 observations and 1778 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.92 seconds cpu time 0.56 seconds 10 The SAS System 18:28 Monday, April 15, 2019 NOTE: Data file OUT.HCRIS2552_96_2000.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6 observations read from the data set OUT.HCRIS2552_96_2000. NOTE: The PROCEDURE PRINT printed pages 525-547. NOTE: PROCEDURE PRINT used (Total process time): real time 0.12 seconds cpu time 0.12 seconds NOTE: Data file OUT.HCRIS2552_96_2000.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6195 observations read from the data set OUT.HCRIS2552_96_2000. NOTE: The PROCEDURE MEANS printed pages 548-580. NOTE: PROCEDURE MEANS used (Total process time): real time 0.41 seconds cpu time 0.80 seconds NOTE: Data file OUT.HCRIS2552_96_2000.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6195 observations read from the data set OUT.HCRIS2552_96_2000. NOTE: The PROCEDURE MEANS printed pages 581-613. NOTE: PROCEDURE MEANS used (Total process time): real time 0.37 seconds cpu time 0.48 seconds NOTE: Data file OUT.HCRIS2552_96_2000.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: The PROCEDURE CONTENTS printed pages 614-648. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.04 seconds cpu time 0.01 seconds NOTE: Data file LIBRARY.ALPHA2001T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: Data file LIBRARY.HOSP_RPT2552_96_2001.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6162 observations read from the data set LIBRARY.ALPHA2001T. NOTE: There were 6172 observations read from the data set LIBRARY.HOSP_RPT2552_96_2001. NOTE: The data set WORK.MERGED has 6172 observations and 52 variables. NOTE: DATA statement used (Total process time): real time 0.22 seconds cpu time 0.08 seconds NOTE: Data file LIBRARY.NMRC2001T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. 11 The SAS System 18:28 Monday, April 15, 2019 NOTE: There were 6170 observations read from the data set LIBRARY.NMRC2001T. NOTE: There were 6172 observations read from the data set WORK.MERGED. NOTE: The data set WORK.HCRIS2001 has 6172 observations and 1782 variables. NOTE: DATA statement used (Total process time): real time 0.38 seconds cpu time 0.18 seconds NOTE: Data file OUT.HCRIS2552_96_2001.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6172 observations read from the data set WORK.HCRIS2001. NOTE: The data set OUT.HCRIS2552_96_2001 has 6172 observations and 1782 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.93 seconds cpu time 0.55 seconds NOTE: Data file OUT.HCRIS2552_96_2001.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6 observations read from the data set OUT.HCRIS2552_96_2001. NOTE: The PROCEDURE PRINT printed pages 649-672. NOTE: PROCEDURE PRINT used (Total process time): real time 0.11 seconds cpu time 0.11 seconds NOTE: Data file OUT.HCRIS2552_96_2001.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6172 observations read from the data set OUT.HCRIS2552_96_2001. NOTE: The PROCEDURE MEANS printed pages 673-705. NOTE: PROCEDURE MEANS used (Total process time): real time 0.41 seconds cpu time 0.75 seconds NOTE: Data file OUT.HCRIS2552_96_2001.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6172 observations read from the data set OUT.HCRIS2552_96_2001. NOTE: The PROCEDURE MEANS printed pages 706-738. NOTE: PROCEDURE MEANS used (Total process time): real time 0.37 seconds cpu time 0.47 seconds NOTE: Data file OUT.HCRIS2552_96_2001.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: The PROCEDURE CONTENTS printed pages 739-773. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 12 The SAS System 18:28 Monday, April 15, 2019 NOTE: Data file LIBRARY.ALPHA2002T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: Data file LIBRARY.HOSP_RPT2552_96_2002.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6197 observations read from the data set LIBRARY.ALPHA2002T. NOTE: There were 6198 observations read from the data set LIBRARY.HOSP_RPT2552_96_2002. NOTE: The data set WORK.MERGED has 6198 observations and 54 variables. NOTE: DATA statement used (Total process time): real time 0.09 seconds cpu time 0.05 seconds NOTE: Data file LIBRARY.NMRC2002T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6198 observations read from the data set LIBRARY.NMRC2002T. NOTE: There were 6198 observations read from the data set WORK.MERGED. NOTE: The data set WORK.HCRIS2002 has 6198 observations and 1810 variables. NOTE: DATA statement used (Total process time): real time 0.09 seconds cpu time 0.10 seconds NOTE: Data file OUT.HCRIS2552_96_2002.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6198 observations read from the data set WORK.HCRIS2002. NOTE: The data set OUT.HCRIS2552_96_2002 has 6198 observations and 1810 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.92 seconds cpu time 0.54 seconds NOTE: Data file OUT.HCRIS2552_96_2002.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6 observations read from the data set OUT.HCRIS2552_96_2002. NOTE: The PROCEDURE PRINT printed pages 774-803. NOTE: PROCEDURE PRINT used (Total process time): real time 0.12 seconds cpu time 0.12 seconds NOTE: Data file OUT.HCRIS2552_96_2002.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6198 observations read from the data set OUT.HCRIS2552_96_2002. NOTE: The PROCEDURE MEANS printed pages 804-837. NOTE: PROCEDURE MEANS used (Total process time): real time 0.44 seconds cpu time 0.83 seconds 13 The SAS System 18:28 Monday, April 15, 2019 NOTE: Data file OUT.HCRIS2552_96_2002.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6198 observations read from the data set OUT.HCRIS2552_96_2002. NOTE: The PROCEDURE MEANS printed pages 838-871. NOTE: PROCEDURE MEANS used (Total process time): real time 0.38 seconds cpu time 0.48 seconds NOTE: Data file OUT.HCRIS2552_96_2002.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: The PROCEDURE CONTENTS printed pages 872-907. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Data file LIBRARY.ALPHA2003T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: Data file LIBRARY.HOSP_RPT2552_96_2003.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6193 observations read from the data set LIBRARY.ALPHA2003T. NOTE: There were 6193 observations read from the data set LIBRARY.HOSP_RPT2552_96_2003. NOTE: The data set WORK.MERGED has 6193 observations and 52 variables. NOTE: DATA statement used (Total process time): real time 0.11 seconds cpu time 0.04 seconds NOTE: Data file LIBRARY.NMRC2003T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6193 observations read from the data set LIBRARY.NMRC2003T. NOTE: There were 6193 observations read from the data set WORK.MERGED. NOTE: The data set WORK.HCRIS2003 has 6193 observations and 1770 variables. NOTE: DATA statement used (Total process time): real time 0.12 seconds cpu time 0.12 seconds NOTE: Data file OUT.HCRIS2552_96_2003.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6193 observations read from the data set WORK.HCRIS2003. NOTE: The data set OUT.HCRIS2552_96_2003 has 6193 observations and 1770 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.86 seconds cpu time 0.45 seconds 14 The SAS System 18:28 Monday, April 15, 2019 NOTE: Data file OUT.HCRIS2552_96_2003.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6 observations read from the data set OUT.HCRIS2552_96_2003. NOTE: The PROCEDURE PRINT printed pages 908-930. NOTE: PROCEDURE PRINT used (Total process time): real time 0.11 seconds cpu time 0.13 seconds NOTE: Data file OUT.HCRIS2552_96_2003.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6193 observations read from the data set OUT.HCRIS2552_96_2003. NOTE: The PROCEDURE MEANS printed pages 931-963. NOTE: PROCEDURE MEANS used (Total process time): real time 0.40 seconds cpu time 0.77 seconds NOTE: Data file OUT.HCRIS2552_96_2003.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6193 observations read from the data set OUT.HCRIS2552_96_2003. NOTE: The PROCEDURE MEANS printed pages 964-996. NOTE: PROCEDURE MEANS used (Total process time): real time 0.37 seconds cpu time 0.48 seconds NOTE: Data file OUT.HCRIS2552_96_2003.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: The PROCEDURE CONTENTS printed pages 997-1031. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Data file LIBRARY.ALPHA2004T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: Data file LIBRARY.HOSP_RPT2552_96_2004.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6265 observations read from the data set LIBRARY.ALPHA2004T. NOTE: There were 6265 observations read from the data set LIBRARY.HOSP_RPT2552_96_2004. NOTE: The data set WORK.MERGED has 6265 observations and 50 variables. NOTE: DATA statement used (Total process time): real time 0.03 seconds cpu time 0.02 seconds NOTE: Data file LIBRARY.NMRC2004T.DATA is in a format that is native to another host, or the file encoding does not match the 15 The SAS System 18:28 Monday, April 15, 2019 session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6265 observations read from the data set LIBRARY.NMRC2004T. NOTE: There were 6265 observations read from the data set WORK.MERGED. NOTE: The data set WORK.HCRIS2004 has 6265 observations and 1729 variables. NOTE: DATA statement used (Total process time): real time 0.14 seconds cpu time 0.11 seconds NOTE: Data file OUT.HCRIS2552_96_2004.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6265 observations read from the data set WORK.HCRIS2004. NOTE: The data set OUT.HCRIS2552_96_2004 has 6265 observations and 1729 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.93 seconds cpu time 0.47 seconds NOTE: Data file OUT.HCRIS2552_96_2004.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6 observations read from the data set OUT.HCRIS2552_96_2004. NOTE: The PROCEDURE PRINT printed pages 1032-1054. NOTE: PROCEDURE PRINT used (Total process time): real time 0.09 seconds cpu time 0.09 seconds NOTE: Data file OUT.HCRIS2552_96_2004.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6265 observations read from the data set OUT.HCRIS2552_96_2004. NOTE: The PROCEDURE MEANS printed pages 1055-1086. NOTE: PROCEDURE MEANS used (Total process time): real time 0.40 seconds cpu time 0.76 seconds NOTE: Data file OUT.HCRIS2552_96_2004.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6265 observations read from the data set OUT.HCRIS2552_96_2004. NOTE: The PROCEDURE MEANS printed pages 1087-1118. NOTE: PROCEDURE MEANS used (Total process time): real time 0.36 seconds cpu time 0.47 seconds NOTE: Data file OUT.HCRIS2552_96_2004.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: The PROCEDURE CONTENTS printed pages 1119-1152. NOTE: PROCEDURE CONTENTS used (Total process time): 16 The SAS System 18:28 Monday, April 15, 2019 real time 0.00 seconds cpu time 0.01 seconds NOTE: Data file LIBRARY.ALPHA2005T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: Data file LIBRARY.HOSP_RPT2552_96_2005.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6248 observations read from the data set LIBRARY.ALPHA2005T. NOTE: There were 6248 observations read from the data set LIBRARY.HOSP_RPT2552_96_2005. NOTE: The data set WORK.MERGED has 6248 observations and 48 variables. NOTE: DATA statement used (Total process time): real time 0.03 seconds cpu time 0.02 seconds NOTE: Data file LIBRARY.NMRC2005T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6248 observations read from the data set LIBRARY.NMRC2005T. NOTE: There were 6248 observations read from the data set WORK.MERGED. NOTE: The data set WORK.HCRIS2005 has 6248 observations and 1715 variables. NOTE: DATA statement used (Total process time): real time 0.09 seconds cpu time 0.10 seconds NOTE: Data file OUT.HCRIS2552_96_2005.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6248 observations read from the data set WORK.HCRIS2005. NOTE: The data set OUT.HCRIS2552_96_2005 has 6248 observations and 1715 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.74 seconds cpu time 0.42 seconds NOTE: Data file OUT.HCRIS2552_96_2005.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6 observations read from the data set OUT.HCRIS2552_96_2005. NOTE: The PROCEDURE PRINT printed pages 1153-1175. NOTE: PROCEDURE PRINT used (Total process time): real time 0.12 seconds cpu time 0.12 seconds NOTE: Data file OUT.HCRIS2552_96_2005.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6248 observations read from the data set OUT.HCRIS2552_96_2005. NOTE: The PROCEDURE MEANS printed pages 1176-1207. NOTE: PROCEDURE MEANS used (Total process time): 17 The SAS System 18:28 Monday, April 15, 2019 real time 0.73 seconds cpu time 0.90 seconds NOTE: Data file OUT.HCRIS2552_96_2005.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6248 observations read from the data set OUT.HCRIS2552_96_2005. NOTE: The PROCEDURE MEANS printed pages 1208-1239. NOTE: PROCEDURE MEANS used (Total process time): real time 0.36 seconds cpu time 0.45 seconds NOTE: Data file OUT.HCRIS2552_96_2005.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: The PROCEDURE CONTENTS printed pages 1240-1273. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Data file LIBRARY.ALPHA2006T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: Data file LIBRARY.HOSP_RPT2552_96_2006.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6233 observations read from the data set LIBRARY.ALPHA2006T. NOTE: There were 6233 observations read from the data set LIBRARY.HOSP_RPT2552_96_2006. NOTE: The data set WORK.MERGED has 6233 observations and 50 variables. NOTE: DATA statement used (Total process time): real time 0.04 seconds cpu time 0.04 seconds NOTE: Data file LIBRARY.NMRC2006T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6233 observations read from the data set LIBRARY.NMRC2006T. NOTE: There were 6233 observations read from the data set WORK.MERGED. NOTE: The data set WORK.HCRIS2006 has 6233 observations and 1720 variables. NOTE: DATA statement used (Total process time): real time 0.09 seconds cpu time 0.09 seconds NOTE: Data file OUT.HCRIS2552_96_2006.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6233 observations read from the data set WORK.HCRIS2006. NOTE: The data set OUT.HCRIS2552_96_2006 has 6233 observations and 1720 variables. NOTE: PROCEDURE SORT used (Total process time): 18 The SAS System 18:28 Monday, April 15, 2019 real time 0.86 seconds cpu time 0.46 seconds NOTE: Data file OUT.HCRIS2552_96_2006.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6 observations read from the data set OUT.HCRIS2552_96_2006. NOTE: The PROCEDURE PRINT printed pages 1274-1296. NOTE: PROCEDURE PRINT used (Total process time): real time 0.09 seconds cpu time 0.09 seconds NOTE: Data file OUT.HCRIS2552_96_2006.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6233 observations read from the data set OUT.HCRIS2552_96_2006. NOTE: The PROCEDURE MEANS printed pages 1297-1328. NOTE: PROCEDURE MEANS used (Total process time): real time 0.40 seconds cpu time 0.76 seconds NOTE: Data file OUT.HCRIS2552_96_2006.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6233 observations read from the data set OUT.HCRIS2552_96_2006. NOTE: The PROCEDURE MEANS printed pages 1329-1360. NOTE: PROCEDURE MEANS used (Total process time): real time 0.37 seconds cpu time 0.46 seconds NOTE: Data file OUT.HCRIS2552_96_2006.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: The PROCEDURE CONTENTS printed pages 1361-1394. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Data file LIBRARY.ALPHA2007T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: Data file LIBRARY.HOSP_RPT2552_96_2007.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6180 observations read from the data set LIBRARY.ALPHA2007T. NOTE: There were 6180 observations read from the data set LIBRARY.HOSP_RPT2552_96_2007. NOTE: The data set WORK.MERGED has 6180 observations and 48 variables. NOTE: DATA statement used (Total process time): real time 0.05 seconds cpu time 0.03 seconds 19 The SAS System 18:28 Monday, April 15, 2019 NOTE: Data file LIBRARY.NMRC2007T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6180 observations read from the data set LIBRARY.NMRC2007T. NOTE: There were 6180 observations read from the data set WORK.MERGED. NOTE: The data set WORK.HCRIS2007 has 6180 observations and 1739 variables. NOTE: DATA statement used (Total process time): real time 0.09 seconds cpu time 0.09 seconds NOTE: Data file OUT.HCRIS2552_96_2007.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6180 observations read from the data set WORK.HCRIS2007. NOTE: The data set OUT.HCRIS2552_96_2007 has 6180 observations and 1739 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.76 seconds cpu time 0.42 seconds NOTE: Data file OUT.HCRIS2552_96_2007.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6 observations read from the data set OUT.HCRIS2552_96_2007. NOTE: The PROCEDURE PRINT printed pages 1395-1417. NOTE: PROCEDURE PRINT used (Total process time): real time 0.11 seconds cpu time 0.12 seconds NOTE: Data file OUT.HCRIS2552_96_2007.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6180 observations read from the data set OUT.HCRIS2552_96_2007. NOTE: The PROCEDURE MEANS printed pages 1418-1450. NOTE: PROCEDURE MEANS used (Total process time): real time 0.39 seconds cpu time 0.75 seconds NOTE: Data file OUT.HCRIS2552_96_2007.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6180 observations read from the data set OUT.HCRIS2552_96_2007. NOTE: The PROCEDURE MEANS printed pages 1451-1483. NOTE: PROCEDURE MEANS used (Total process time): real time 0.36 seconds cpu time 0.46 seconds NOTE: Data file OUT.HCRIS2552_96_2007.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. 20 The SAS System 18:28 Monday, April 15, 2019 NOTE: The PROCEDURE CONTENTS printed pages 1484-1518. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Data file LIBRARY.ALPHA2008T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: Data file LIBRARY.HOSP_RPT2552_96_2008.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6208 observations read from the data set LIBRARY.ALPHA2008T. NOTE: There were 6208 observations read from the data set LIBRARY.HOSP_RPT2552_96_2008. NOTE: The data set WORK.MERGED has 6208 observations and 50 variables. NOTE: DATA statement used (Total process time): real time 0.03 seconds cpu time 0.03 seconds NOTE: Data file LIBRARY.NMRC2008T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6208 observations read from the data set LIBRARY.NMRC2008T. NOTE: There were 6208 observations read from the data set WORK.MERGED. NOTE: The data set WORK.HCRIS2008 has 6208 observations and 1742 variables. NOTE: DATA statement used (Total process time): real time 0.15 seconds cpu time 0.09 seconds NOTE: Data file OUT.HCRIS2552_96_2008.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6208 observations read from the data set WORK.HCRIS2008. NOTE: The data set OUT.HCRIS2552_96_2008 has 6208 observations and 1742 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.69 seconds cpu time 0.41 seconds NOTE: Data file OUT.HCRIS2552_96_2008.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6 observations read from the data set OUT.HCRIS2552_96_2008. NOTE: The PROCEDURE PRINT printed pages 1519-1541. NOTE: PROCEDURE PRINT used (Total process time): real time 0.09 seconds cpu time 0.09 seconds NOTE: Data file OUT.HCRIS2552_96_2008.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6208 observations read from the data set OUT.HCRIS2552_96_2008. 21 The SAS System 18:28 Monday, April 15, 2019 NOTE: The PROCEDURE MEANS printed pages 1542-1574. NOTE: PROCEDURE MEANS used (Total process time): real time 0.40 seconds cpu time 0.79 seconds NOTE: Data file OUT.HCRIS2552_96_2008.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6208 observations read from the data set OUT.HCRIS2552_96_2008. NOTE: The PROCEDURE MEANS printed pages 1575-1607. NOTE: PROCEDURE MEANS used (Total process time): real time 0.36 seconds cpu time 0.46 seconds NOTE: Data file OUT.HCRIS2552_96_2008.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: The PROCEDURE CONTENTS printed pages 1608-1642. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Data file LIBRARY.ALPHA2009T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: Data file LIBRARY.HOSP_RPT2552_96_2009.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6202 observations read from the data set LIBRARY.ALPHA2009T. NOTE: There were 6202 observations read from the data set LIBRARY.HOSP_RPT2552_96_2009. NOTE: The data set WORK.MERGED has 6202 observations and 48 variables. NOTE: DATA statement used (Total process time): real time 0.03 seconds cpu time 0.03 seconds NOTE: Data file LIBRARY.NMRC2009T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6202 observations read from the data set LIBRARY.NMRC2009T. NOTE: There were 6202 observations read from the data set WORK.MERGED. NOTE: The data set WORK.HCRIS2009 has 6202 observations and 1769 variables. NOTE: DATA statement used (Total process time): real time 0.14 seconds cpu time 0.10 seconds NOTE: Data file OUT.HCRIS2552_96_2009.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6202 observations read from the data set WORK.HCRIS2009. 22 The SAS System 18:28 Monday, April 15, 2019 NOTE: The data set OUT.HCRIS2552_96_2009 has 6202 observations and 1769 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.78 seconds cpu time 0.43 seconds NOTE: Data file OUT.HCRIS2552_96_2009.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6 observations read from the data set OUT.HCRIS2552_96_2009. NOTE: The PROCEDURE PRINT printed pages 1643-1666. NOTE: PROCEDURE PRINT used (Total process time): real time 0.11 seconds cpu time 0.11 seconds NOTE: Data file OUT.HCRIS2552_96_2009.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6202 observations read from the data set OUT.HCRIS2552_96_2009. NOTE: The PROCEDURE MEANS printed pages 1667-1699. NOTE: PROCEDURE MEANS used (Total process time): real time 0.40 seconds cpu time 0.76 seconds NOTE: Data file OUT.HCRIS2552_96_2009.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6202 observations read from the data set OUT.HCRIS2552_96_2009. NOTE: The PROCEDURE MEANS printed pages 1700-1732. NOTE: PROCEDURE MEANS used (Total process time): real time 0.37 seconds cpu time 0.47 seconds NOTE: Data file OUT.HCRIS2552_96_2009.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: The PROCEDURE CONTENTS printed pages 1733-1767. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Data file LIBRARY.ALPHA2010T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: Data file LIBRARY.HOSP_RPT2552_96_2010.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 3851 observations read from the data set LIBRARY.ALPHA2010T. NOTE: There were 3851 observations read from the data set LIBRARY.HOSP_RPT2552_96_2010. NOTE: The data set WORK.MERGED has 3851 observations and 49 variables. NOTE: DATA statement used (Total process time): real time 0.05 seconds 23 The SAS System 18:28 Monday, April 15, 2019 cpu time 0.02 seconds NOTE: Data file LIBRARY.NMRC2010T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 3851 observations read from the data set LIBRARY.NMRC2010T. NOTE: There were 3851 observations read from the data set WORK.MERGED. NOTE: The data set WORK.HCRIS2010 has 3851 observations and 1526 variables. NOTE: DATA statement used (Total process time): real time 0.05 seconds cpu time 0.06 seconds NOTE: Data file OUT.HCRIS2552_96_2010.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 3851 observations read from the data set WORK.HCRIS2010. NOTE: The data set OUT.HCRIS2552_96_2010 has 3851 observations and 1526 variables. NOTE: PROCEDURE SORT used (Total process time): real time 1.18 seconds cpu time 0.26 seconds NOTE: Data file OUT.HCRIS2552_96_2010.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6 observations read from the data set OUT.HCRIS2552_96_2010. NOTE: The PROCEDURE PRINT printed pages 1768-1788. NOTE: PROCEDURE PRINT used (Total process time): real time 0.09 seconds cpu time 0.09 seconds NOTE: Data file OUT.HCRIS2552_96_2010.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 3851 observations read from the data set OUT.HCRIS2552_96_2010. NOTE: The PROCEDURE MEANS printed pages 1789-1817. NOTE: PROCEDURE MEANS used (Total process time): real time 0.24 seconds cpu time 0.43 seconds NOTE: Data file OUT.HCRIS2552_96_2010.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 3851 observations read from the data set OUT.HCRIS2552_96_2010. NOTE: The PROCEDURE MEANS printed pages 1818-1846. NOTE: PROCEDURE MEANS used (Total process time): real time 0.22 seconds cpu time 0.28 seconds NOTE: Data file OUT.HCRIS2552_96_2010.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce 24 The SAS System 18:28 Monday, April 15, 2019 performance. NOTE: The PROCEDURE CONTENTS printed pages 1847-1877. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Data file LIBRARY.ALPHA2011T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: Data file LIBRARY.HOSP_RPT2552_96_2011.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 34 observations read from the data set LIBRARY.ALPHA2011T. NOTE: There were 34 observations read from the data set LIBRARY.HOSP_RPT2552_96_2011. NOTE: The data set WORK.MERGED has 34 observations and 42 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds NOTE: Data file LIBRARY.NMRC2011T.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 34 observations read from the data set LIBRARY.NMRC2011T. NOTE: There were 34 observations read from the data set WORK.MERGED. NOTE: The data set WORK.HCRIS2011 has 34 observations and 343 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Data file OUT.HCRIS2552_96_2011.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 34 observations read from the data set WORK.HCRIS2011. NOTE: The data set OUT.HCRIS2552_96_2011 has 34 observations and 343 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.02 seconds cpu time 0.00 seconds NOTE: Data file OUT.HCRIS2552_96_2011.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 6 observations read from the data set OUT.HCRIS2552_96_2011. NOTE: The PROCEDURE PRINT printed pages 1878-1883. NOTE: PROCEDURE PRINT used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: Data file OUT.HCRIS2552_96_2011.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce 25 The SAS System 18:28 Monday, April 15, 2019 performance. NOTE: There were 34 observations read from the data set OUT.HCRIS2552_96_2011. NOTE: The PROCEDURE MEANS printed pages 1884-1889. NOTE: PROCEDURE MEANS used (Total process time): real time 0.01 seconds cpu time 0.00 seconds NOTE: Data file OUT.HCRIS2552_96_2011.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. NOTE: There were 34 observations read from the data set OUT.HCRIS2552_96_2011. NOTE: The PROCEDURE MEANS printed pages 1890-1895. NOTE: PROCEDURE MEANS used (Total process time): real time 0.01 seconds cpu time 0.02 seconds NOTE: Data file OUT.HCRIS2552_96_2011.DATA is in a format that is native to another host, or the file encoding does not match the session encoding. Cross Environment Data Access will be used, which might require additional CPU resources and might reduce performance. 51 *%loop(fyear=1996,lyear=2011); 52 *%loop(fyear=2005,lyear=2011); 53 *%loop(fyear=2011,lyear=2011); 54 *%loop(fyear=1995,lyear=2004); 55 *%loop(fyear=1995,lyear=2010); 56 *%loop(fyear=1996,lyear=2004); 57 *%loop(fyear=2005,lyear=2010); 58 *%loop(fyear=1995,lyear=1995); 59 *%loop(fyear=1996,lyear=1998); 60 *%loop(fyear=1999,lyear=2001); 61 *%loop(fyear=2002,lyear=2011); 62 *%loop(fyear=2004,lyear=2009); 63 *%loop(fyear=1995,lyear=2002); 64 *%loop(fyear=1998,lyear=2008); 65 *%loop(fyear=1996,lyear=1996); 66 *%loop(fyear=1997,lyear=1997); 67 *%loop(fyear=1998,lyear=1998); 68 *%loop(fyear=1999,lyear=1999); 69 *%loop(fyear=2000,lyear=2005); 70 *%loop(fyear=2001,lyear=2001); 71 *%loop(fyear=2002,lyear=2002); 72 *%loop(fyear=2003,lyear=2003); 73 *%loop(fyear=2004,lyear=2004); 74 *%loop(fyear=2005,lyear=2005); 75 *%loop(fyear=2006,lyear=2006); 76 *%loop(fyear=2007,lyear=2007); 77 *%loop(fyear=2008,lyear=2008); 78 *%loop(fyear=2009,lyear=2009); 79 *%loop(fyear=2010,lyear=2010); 80 *%loop(fyear=2011,lyear=2011); NOTE: The PROCEDURE CONTENTS printed pages 1896-1903. NOTE: PROCEDURE CONTENTS used (Total process time): real time 0.00 seconds cpu time 0.01 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 26 The SAS System 18:28 Monday, April 15, 2019 NOTE: The SAS System used: real time 30.68 seconds cpu time 29.56 seconds