1 The SAS System 19:13 Friday, April 28, 2006 NOTE: Copyright (c) 2002-2003 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) 9.1 (TS1M3) Licensed to HARVARD SCHOOL OF PUBLIC HEALTH-INSTRUCTIONAL COMP, Site 0001177014. NOTE: This session is executing on the SunOS 5.9 platform. NOTE: SAS 9.1.3 Service Pack 3 ----------------------------------------------------------------------- NBER NOTE: sas now defaults to sas9. sas8 or sas6 will invoke sas version 8 or 6 respectively. - 2005/10/21 ----------------------------------------------------------------------- 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.30 seconds cpu time 0.11 seconds 1 title 'Summarize Filing Status through time'; 2 /* 3 4 MARS - marital status code 5 6 1 single 7 2 joint 8 3 Married filing separately and not claiming a spouse exemption 9 4 Unmarried head of household 10 5 Widow(er_ with dependt child (surviving spouse) 11 6 Married filing seperately and claiming a spouse exemption 12 7 Unmarried head of household (no name on line 4, combined with 13 code 4 for years xxxx-xxxx 14 15 */ 16 17 18 options nocenter ls=132 ps=79; 19 libname t '/home/data/soi/sas'; NOTE: The V6 engine on this host is limited to read-only access of SAS data files without index optimization. V6 data files cannot be created or updated and V6 catalogs cannot be read. NOTE: Libref T was successfully assigned as follows: Engine: V6 Physical Name: /home/data/soi/sas 20 libname save '.'; NOTE: Libref SAVE was successfully assigned as follows: Engine: V9 Physical Name: /disk/homes2b/nber/taxsim/public_html/mstat 21 data; set t.x1960 22 t.x1962 t.x1964 23 t.x1966 t.x1967 t.x1968 t.x1969 24 t.x1970 t.x1971 t.x1972 t.x1973 t.x1974 25 t.x1975 t.x1976 t.x1977 t.x1978 t.x1979 26 t.x1980 t.x1981 t.x1982 t.x1983 t.x1984 27 t.x1985 t.x1986 t.x1987 t.x1988 t.x1989 28 t.x1990 t.x1991 t.x1992 t.x1993 t.x1994 29 t.x1995 t.x1996 t.x1997 t.x1998 t.x1999 30 t.x2000 t.x2001 31 ; 32 keep mars weight year; 33 run; 2 The SAS System 19:13 Friday, April 28, 2006 NOTE: There were 101920 observations read from the data set T.X1960. NOTE: There were 103360 observations read from the data set T.X1962. NOTE: There were 94986 observations read from the data set T.X1964. NOTE: There were 86610 observations read from the data set T.X1966. NOTE: There were 87160 observations read from the data set T.X1967. NOTE: There were 91484 observations read from the data set T.X1968. NOTE: There were 93065 observations read from the data set T.X1969. NOTE: There were 95316 observations read from the data set T.X1970. NOTE: There were 99137 observations read from the data set T.X1971. NOTE: There were 106581 observations read from the data set T.X1972. NOTE: There were 112441 observations read from the data set T.X1973. NOTE: There were 98645 observations read from the data set T.X1974. NOTE: There were 100841 observations read from the data set T.X1975. NOTE: There were 164137 observations read from the data set T.X1976. NOTE: There were 155212 observations read from the data set T.X1977. NOTE: There were 157518 observations read from the data set T.X1978. NOTE: There were 203534 observations read from the data set T.X1979. NOTE: There were 171508 observations read from the data set T.X1980. NOTE: There were 144322 observations read from the data set T.X1981. NOTE: There were 88218 observations read from the data set T.X1982. NOTE: There were 122889 observations read from the data set T.X1983. NOTE: There were 79556 observations read from the data set T.X1984. NOTE: There were 108840 observations read from the data set T.X1985. NOTE: There were 75400 observations read from the data set T.X1986. NOTE: There were 109939 observations read from the data set T.X1987. NOTE: There were 95713 observations read from the data set T.X1988. NOTE: There were 96588 observations read from the data set T.X1989. NOTE: There were 89452 observations read from the data set T.X1990. NOTE: There were 115594 observations read from the data set T.X1991. NOTE: There were 93262 observations read from the data set T.X1992. NOTE: There were 94202 observations read from the data set T.X1993. NOTE: There were 96384 observations read from the data set T.X1994. NOTE: There were 103117 observations read from the data set T.X1995. NOTE: There were 112186 observations read from the data set T.X1996. NOTE: There were 111065 observations read from the data set T.X1997. NOTE: There were 122625 observations read from the data set T.X1998. NOTE: There were 132108 observations read from the data set T.X1999. NOTE: There were 145663 observations read from the data set T.X2000. NOTE: There were 143221 observations read from the data set T.X2001. NOTE: The data set WORK.DATA1 has 4403799 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 1:55.85 cpu time 47.39 seconds 34 35 proc tabulate noseps; 36 class mars year; 37 var weight; 38 table year, mars*sum*weight*F=8.; 39 run; NOTE: There were 4403799 observations read from the data set WORK.DATA1. NOTE: The PROCEDURE TABULATE printed page 1. NOTE: PROCEDURE TABULATE used (Total process time): real time 4.33 seconds cpu time 6.14 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 2:00.57 cpu time 53.69 seconds