infile dictionary { *This program reads the Survey of Epidemiology and End Results (SEER) U.S. Population Data Data File *by Jean Roth Wed Apr 25 16:51:52 EDT 2007 *Please report errors to jroth@nber.org *See the .do file for directions and run with do seer_pop *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 year %4f "Year" _column(5 ) str2 st %2s "State postal abbreviation" _column(7 ) byte stfips %2f "State FIPS code" _column(9 ) int county %3f "County FIPS code" _column(12 ) byte registry %2f "Registry" _column(14 ) byte race %1f "Race" _column(15 ) byte hispanic %1f "Hispanic Origin" _column(16 ) byte sex %1f "Sex" _column(17 ) byte age %2f "Age" _column(19 ) long pop %8f "Population" } /* Copyright 2007 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. */