1 The SAS System 16:56 Tuesday, January 19, 2016 NOTE: Copyright (c) 2002-2012 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.4 (TS1M3) Licensed to NATIONAL BUREAU OF ECONOMIC RESEARCH, Site 70111351. NOTE: This session is executing on the Linux 2.6.32-573.12.1.el6.x86_64 (LIN X64) platform. NOTE: Updated analytical products: SAS/STAT 14.1 NOTE: Additional host information: Linux LIN X64 2.6.32-573.12.1.el6.x86_64 #1 SMP Tue Dec 15 08:24:23 CST 2015 x86_64 Scientific Linux release 6.7 (Carbon) 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.02 seconds cpu time 0.01 seconds 1 options nocenter ls=120; 2 libname t "../sas"; NOTE: Libref T was successfully assigned as follows: Engine: V9 Physical Name: /disk/homedirs/nber/taxsim/public_html/scf2/sas 3 title "Weighted Aggregates by year of SCF-Taxsim variables"; 4 title2 "Survey year is one year after filing period (shown)"; 5 title3 "Amounts in millions"; 6 %macro vars; 7 returns single married hoh depx agex pwages swages dividends otherprop pensions 8 gssi transfers rentpaid proptax otheritem childcare ui 9 depchild mortgage stcg ltcg 10 %mend; 11 12 data; 13 set t.t:; 14 array nums %VARS; 15 returns=1; 16 married = mstat eq 2; 17 single = mstat eq 1; 18 hoh = mstat eq 3; 2 The SAS System 16:56 Tuesday, January 19, 2016 19 do over nums; 20 nums = nums/1e6; 21 end; 22 run; WARNING: Multiple lengths were specified for the variable taxsimid by input data set(s). This can cause truncation of data. NOTE: Missing values were generated as a result of performing an operation on missing values. Each place is given by: (Number of times) at (Line):(Column). 5 at 20:14 NOTE: There were 15715 observations read from the data set T.T1989. NOTE: There were 19530 observations read from the data set T.T1992. NOTE: There were 21495 observations read from the data set T.T1995. NOTE: There were 21525 observations read from the data set T.T1998. NOTE: There were 22210 observations read from the data set T.T2001. NOTE: There were 22595 observations read from the data set T.T2004. NOTE: There were 22085 observations read from the data set T.T2007. NOTE: There were 32410 observations read from the data set T.T2010. NOTE: There were 30075 observations read from the data set T.T2013. NOTE: The data set WORK.DATA1 has 207640 observations and 26 variables. NOTE: DATA statement used (Total process time): real time 0.21 seconds cpu time 0.22 seconds 23 24 proc tabulate noseps format=9.0; 25 class year mstat; 26 variables %VARS; 27 weight wgt; 28 table %VARS,year /rts=22; 29 run; NOTE: There were 207640 observations read from the data set WORK.DATA1. NOTE: The PROCEDURE TABULATE printed page 1. NOTE: PROCEDURE TABULATE used (Total process time): real time 0.11 seconds cpu time 0.19 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.38 seconds cpu time 0.42 seconds