**This program was written by Gia Elise Barboza at the Julian Samora Research Institute for **the purpose of selecting data from the March Current Population Survey File. This program **selects Median Income of Family Groups. **You must change the following line to the location where the data is located (i.e. the SAV file). GET FILE = 'C:\DATA\MARCH 2000 FILES\cpsmar2000.SAV'. WEIGHT BY finwght. SELECT IF (hg_st60=21 | hg_st60=59 | hg_st60=74 | hg_st60=93 | hg_st60=33) and (A_FAMREL = 0 or A_FAMREL = 1) and (A_FAMTYP = 1| A_FAMTYP = 3 | A_FAMTYP = 4 ) and (FTOTVAL >= 1 and FTOTVAL <= 23399766) & nonhisp =1. EXAMINE VARIABLES=ftotval BY hg_st60 /PLOT NONE /STATISTICS DESCRIPTIVES /CINTERVAL 95 /MISSING LISTWISE /NOTOTAL. *SAVE OUTFILE ='C:\DATA\MARCH 1995 FILES\cps1995.SAV'.