/* An example of a Multi-Card SPSS Syntax Program for USAIPOCNUS1998-9808026 */ file handle indata1 /name="C:\temp\g9808026.dat". data list file=indata1 records=6 /1 Weight 13-15 D1 44 D2 45-46 D3 47 State 78-79 /5 D4 13 D4A 14-15 D4B 16-17 D6 55 D7 18 Day 53 /6 Q01 20 Q02A 21 Q02B 22 Q03 27 Q04 28 Q05 29 Q06 30 Q07 31 Q08 32 Q09 33. Variable Labels Q01 "Bill Clinton job performance" Q02A "Favorability of Bill Clinton" Q02B "Favorability of Hillary Rodham Clinton" Q03 "Confidence in Bill Clinton as a military leader" Q04 "Worries about family becoming a victim of a terrorist attack" Q05 "US launched military attacks against terrorists" Q06 "Attacks would cause an increase or decrease in terrorist attacks" Q07 "Reason for military strike" Q08 "Timing of military strike" Q09 "US attacks results in civilian casualties" D1 "Gender of respondent" D2 "Age" D3 "Education" D4 "Hispanic origin or descent" D4A "Race" D4B "Race indepth" D6 "Number of residential telephone lines" D7 "Political party" Day "Day of interview" State "State of residence" Weight "Weight factor". Value Labels Q01 1 "Approve" 2 "Disapprove" 3 "Don't know-Refused" / Q02A 1 "Favorable" 2 "Unfavorable" 3 "Heard of, No opinion (vol)" 4 "Never heard of (vol)" 5 "Refused" / Q02B 1 "Favorable" 2 "Unfavorable" 3 "Heard of, No opinion (vol)" 4 "Never heard of (vol)" 5 "Refused" / Q03 1 "Very confident" 2 "Somewhat confident" 3 "Not too confident" 4 "Not confident at all" 5 "Don't know-Refused" / Q04 1 "Very worried" 2 "Somewhat worried" 3 "Not too worried" 4 "Not at all worried" 5 "Don't know-Refused" / Q05 1 "Approve" 2 "Disapprove" 3 "Don't know-Refused" / Q06 1 "Increase" 2 "Decrease" 3 "No effect (vol)" 4 "Don't know-Refused" / Q07 1 "Solely because he felt it was in the best interests of the country" 2 "In part to divert public attention away from the Monica Lewinsky controversy" 3 "Neither-Other (vol)" 4 "Don't know-Refused" / Q08 1 "Yes, legitimate" 2 "No, not legitimate" 3 "Don't know-Refused" / Q09 1 "Civilian casualties are regrettable, but the US was right to attack" 2 "The US should not have attacked unless it was certain there would be no civilian casualties" 3 "Depends on number of casualties (vol)" 4 "Depends on other factors (vol)" 5 "Don't know-Refused" / D1 1 "Male" 2 "Female" / D2 00 "Don't know" / D3 1 "None, or grade 1-4" 2 "Grades 5, 6 or 7" 3 "Grade 8" 4 "High school incomplete (Grades 9-11)" 5 "High school graduate, Grade 12" 6 "Technical, trade, or business after high school" 7 "College/university incomplete" 8 "College/university graduate or more" 9 "Don't know-Refused" / D4 1 "Yes" 2 "No" 3 "Don't know" 4 "Refused" / D4A 1 "Other" 2 "Don't know" 3 "Refused" 6 "White" 7 "African American-Black" 8 "Hispanic" / D4B 1 "Other" 2 "Don't know" 3 "Refused" 6 "White-Hispanic" 7 "Black-Hispanic" 8 "Hispanic-Respondent refuses to discriminate" / D6 1 "One" 2 "Two" 3 "Three" 4 "Four" 5 "Five or more" 6 "Don't know" 7 "Refused" / D7 1 "Republican" 2 "Democrat" 3 "Independent" 4 "Other party (vol)" 5 "Don't know-Refused" / Day 1 "Monday" 2 "Tuesday" 3 "Wednesday" 4 "Thursday" 5 "Friday" 6 "Saturday" 7 "Sunday" / State 11 "Maine" 12 "New Hampshire" 13 "Vermont" 14 "Massachusetts" 15 "Rhode Island" 16 "Connecticut" 21 "New York" 22 "New Jersey" 23 "Pennsylvania" 24 "Maryland" 25 "Delaware" 26 "West Virginia" 27 "District of Columbia" 31 "Ohio" 32 "Michigan" 33 "Indiana" 34 "Illinois" 41 "Wisconsin" 42 "Minnesota" 43 "Iowa" 44 "Missouri" 45 "North Dakota" 46 "South Dakota" 47 "Nebraska" 48 "Kansas" 51 "Virginia" 52 "North Carolina" 53 "South Carolina" 54 "Georgia" 55 "Florida" 56 "Kentucky" 57 "Tennessee" 58 "Alabama" 59 "Mississippi" 61 "Arkansas" 62 "Louisiana" 63 "Oklahoma" 64 "Texas" 71 "Montana" 72 "Arizona" 73 "Colorado" 74 "Idaho" 75 "Wyoming" 76 "Utah" 77 "Nevada" 78 "New Mexico" 81 "California" 82 "Oregon" 83 "Washington" 84 "Hawaii" 85 "Alaska"/. COMPUTE Weight = Weight * .01 . FORMATS Weight (F3.2). Execute.