*This program reads the 1990 SIPP Revised Job ID Data File *Note: This program is distributed under the GNU GPL. See end of *this file and http://www.gnu.org/licenses/ for details. *by Jean Roth Thu Mar 11 15:57:24 EST 2004 *Please report errors to jroth@nber.org *Change output file name/location as desired. *Change the input file location as needed. *If you have trouble running this program, *then try opening a new syntax file & type this command: *INCLUDE "c:\sip90jid.sps". *and choose to RUN ALL * The following changes in variable names have been made, if necessary: * '$' to 'd'; '-' to '_'; '%' to 'p' * Note: Variable names in SPSS are not case-sensitive. file handle sipp90jid /name='c:\sipp90jid.dat' . data list file=sipp90jid / suid 1-9 (a) entry 10-11 (a) pnum 12-14 (a) panel 15-18 wave 19-20 jobid 21-22 jobid_revised 23-24 flag_jobid_chan 25 . * See the codebook for more detailed variable descriptions. variable labels suid "Sample unit identifier" entry "Edited entry address ID" pnum "Edited person number" panel "Sample code - indicates panel year" wave "Control card item 36A - wave number" jobid "Originally Released Employer I.D. numb" jobid_revised "Edited Employer I.D. number" flag_jobid_chan "Indicator for whether a revision was m" . value labels flag_jobid_chan 0 "No revisions made to this jobid in this wave and jobid=jobid_revised" 1 "Revisions made to this jobid in this wave and jobid ~= jobid_revised" . execute. save outfile = 'c:\sip90jid.sav'. *Copyright 2003 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.