infile dictionary { *This program reads the 1961 NCHS Multiple Cause of Death Data Data File *by Jean Roth Mon Jul 14 15:06:54 EDT 2014 *Please report errors to jroth@nber.org *See the .do file for directions and run with do mort1961 *NOTE: This program is distributed under the GNU GPL. *See end of this file and http://www.gnu.org/licenses/ for details. _column(1 ) int datayear %4f _column(5 ) byte monthdth %2f _column(9 ) byte rectype %1f _column(10 ) byte restatus %1f _column(13 ) byte region %1f _column(14 ) byte divstoc %2f _column(16 ) str2 exstatoc %2s _column(18 ) str2 stateoc %2s _column(20 ) str2 stateocr %2s _column(20 ) str4 countyoc %4s _column(24 ) byte regnres %1f _column(25 ) byte divstres %2f _column(27 ) str2 exstares %2s _column(29 ) str2 staters %2s _column(31 ) str2 statersr %2s _column(31 ) str4 countyrs %4s _column(35 ) str2 cityrs %2s _column(37 ) str1 popsize %1s _column(38 ) str1 metro %1s _column(39 ) str3 smsares %3s _column(42 ) byte race %2f _column(44 ) byte racer3 %1f _column(45 ) byte racer2 %1f _column(46 ) byte racer6 %1f _column(47 ) byte sex %1f _column(48 ) int age %3f _column(51 ) byte ager12 %2f _column(53 ) byte ager27 %2f _column(55 ) byte ager22 %2f _column(57 ) byte ager14 %2f _column(59 ) byte marital %1f _column(60 ) byte stbirth %2f _column(62 ) byte nativity %2f _column(64 ) byte mnative %2f _column(66 ) byte fnative %2f _column(72 ) str4 ucod %4s _column(76 ) str1 ucod4 %1s _column(77 ) int ccr255 %3f _column(81 ) byte ccr59 %2f _column(83 ) byte ccr55 %2f _column(85 ) byte ccr40 %2f _column(87 ) str1 ccr40s %1s _column(91 ) int ucr255 %3f _column(94 ) byte ucr59 %2f _column(96 ) byte ucr33 %2f _column(98 ) str1 shipmon %1s _column(99 ) str1 shiplate %1s } ** Copyright 2014 shared by the National Bureau of Economic Research and Jean Roth ; ** ** National Bureau of Economic Research. ; ** 1050 Massachusetts Avenue ; ** Cambridge, MA 02138 ; ** jroth@nber.org ; ** ** This program and all programs referenced in it are free software. You ; ** can redistribute the program or modify it under the terms of the GNU ; ** General Public License as published by the Free Software Foundation; ; ** either version 2 of the License, or (at your option) any later version. ; ** ** This program is distributed in the hope that it will be useful, ; ** but WITHOUT ANY WARRANTY -- without even the implied warranty of ; ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ; ** GNU General Public License for more details. ; ** ** You should have received a copy of the GNU General Public License ; ** along with this program -- if not, write to the Free Software ; ** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 ; ** USA. ;