* Household Income by State 2005.

VARIABLE LABELS
AGI "Adjusted Gross Income, in thousands of dollars"
AGIR "Average adjusted gross income per income tax return, in thousands of dollars"
AGIRank "State ranked 1 through 51 by average adjusted gross income per income tax return. 1 = Highest, 51 = Lowest."
Cont "Amount of Itemized Charitable Deductions, in thousands of dollars"
ContNum "Total number of returns with itemized charitable deductions"
ContNumP "Number of returns with itemized charitable deductions as a percent of all returns"
ContQrt "State ranked in quartiles 1 through 4 by average charitable contributions per return as a percentage of adjusted gross income per return. Quartile 1 = Highest 25%, Quartile 4 = Lowest 25%."
ContR "Average charitable contributions per income tax return "
ContRagiP "Average charitable contributions per return as a percentage of adjusted gross income per return"
ContRi "Average charitable contributions per income tax return with itemized charitable deductions"
ContRiRank "State ranked 1 through 51 by average charitable contributions per itemized income tax return. 1 = Highest, 51 = Lowest."
ContRRank "State ranked 1 through 51 by average charitable contributions per income tax return. 1 = Highest, 51 = Lowest."
ItemReturns "Total number of itemized returns"
State "Two-letter U.S. state abbreviation"
StateName "Full U.S. state name"
TotReturns "Total Number of Returns"
.

.

SPSS input statement lines

GET DATA
/TYPE=TXT
/FILE="c: emp.csv"
/DELCASE=LINE
/DELIMITERS=","
/ARRANGEMENT=DELIMITED
/FIRSTCASE=2
/IMPORTCASE=ALL
/VARIABLES
. CACHE.
EXECUTE.
DATASET NAME temp WINDOW=FRONT.
.