-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathload_and_set_up_polarization2014.R
1428 lines (1396 loc) · 62.6 KB
/
load_and_set_up_polarization2014.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
## Run this first!
# install.packages("car")
library(foreign)
library(car)
## This is the SPSS-format data output file, available for download from Pew here:
# http://www.people-press.org/2014/03/16/2014-political-polarization-survey/:
survey <- read.spss("./data/Polarization 2014/Polarization 2014 public.sav", to.data.frame=TRUE)
# Hard-code Rownums into an index:
survey$row.id <- rownames(survey)
# PEW RESEARCH CENTER
# POLITICAL TYPOLOGY/POLARIZATION
# FINAL QUESTIONNAIRE
#
# N=10,000 interviews of adults 18+ (5,000 landline, 5,000 cell phone) in English and Spanish.
# Form 1/Form 2: each a random half sample
# 50 states (include Alaska and Hawaii)
# Field Period: January 23-March 16, 2014
#
# LANDLINE INTRO:
# Hello, I am _____ calling on behalf of the Pew Research Center. We are conducting a telephone opinion survey for leading newspapers and TV stations around the country. I’d like to ask a few questions of the [RANDOMIZE: “YOUNGEST MALE, 18 years of age or older, who is now at home” AND “YOUNGEST FEMALE, 18 years of age or older, who is now at home?”] [IF NO MALE/FEMALE, ASK: May I please speak with the YOUNGEST FEMALE/MALE, 18 years of age or older, who is now at home?] GO TO MAIN INTERVIEW
#
# CELL PHONE INTRO:
# Hello, I am _____ calling on behalf of the Pew Research Center. We are conducting a telephone opinion survey for leading newspapers and TV stations around the country. I know I am calling you on a cell phone. As a token of our appreciation for your time, we will pay all eligible respondents $5 for participating in this survey. This is not a sales call. [IF R SAYS DRIVING/UNABLE TO TAKE CALL: Thank you. We will try you another time…].
#
# VOICE MAIL MESSAGE (LEAVE ONLY ONCE -- THE FIRST TIME A CALL GOES TO VOICEMAIL): I am calling on behalf of the Pew Research Center. We are conducting a national opinion survey of cell phone users. This is NOT a sales call. We will try to reach you again.
#
# SCREENING INTERVIEW:
# S1. Are you under 18 years old, OR are you 18 or older?
# 1 Under 18
# 2 18 or older
# 9 Don’t know/Refused
#
# IF S1=2, CONTINUE WITH MAIN INTERVIEW
# IF S1=1,9 THANK AND TERMINATE: This survey is limited to adults age 18 and over. I won’t take any more of your time…
#
# READ TO ALL CELL PHONE
# INTRODUCTION TO MAIN INTERVIEW: If you are now driving a car or doing any activity requiring your full attention, I need to call you back later. The first question is…
#
# INTERVIEWER:
# IF R SAYS IT IS NOT A GOOD TIME, TRY TO ARRANGE A TIME TO CALL BACK. OFFER THE TOLL-FREE CALL-IN NUMBER THEY CAN USE TO COMPLETE THE SURVEY BEFORE ENDING THE CONVERSATION.
#
# [PROGRAMMER NOTE: PLEASE INCLUDE THE INTRODUCTION RANDOMIZATION VARIABLES IN THE ALL CONTACTS FILES. WE WOULD LIKE TO BE ABLE TO RUN RESPONSE RATES SEPARATELY FOR EACH VERSION OF THE INTRODUCTION FOR THE LANDLINE AND CELL FRAMES SEPARATELY.]
#
# ASK ALL PHASE A:
# Q.A1 Generally, how would you say things are these days in your life -- would you say that you are very happy, pretty happy, or not too happy?
#
# 1 Very happy
# 2 Pretty happy
# 3 Not too happy
# 9 Don’t know/Refused (VOL.)
#
# ASK ALL PHASE C:
# Q.C1 Do you approve or disapprove of the way Barack Obama is handling his job as President? [IF DK ENTER AS DK. IF DEPENDS PROBE ONCE WITH: Overall do you approve or disapprove of the way Barack Obama is handling his job as President? IF STILL DEPENDS ENTER AS DK]
#
# 1 Approve
# 2 Disapprove
# 9 Don't know/Refused (VOL.)
#
# ASK IF AND APPROVE OR DISAPPROVE (Q.C1=1,2):
# Q.C1a Do you [approve/disapprove] very strongly, or not so strongly?
#
# 1 Very strongly
# 2 Not so strongly
# 9 Don’t know/Refused (VOL.)
#
# ASK ALL PHASE B:
# Q.B2 All in all, are you satisfied or dissatisfied with the way things are going in this country today?
#
# 1 Satisfied
# 2 Dissatisfied
# 9 Don’t know/Refused (VOL.)
#
# ASK ALL PHASE B:
# Q.B3 And thinking about the local community where you live, are you satisfied or dissatisfied with the way things are going in your local community today?
#
# 1 Satisfied
# 2 Dissatisfied
# 9 Don't know/Refused (VOL.)
#
# ASK ALL PHASE B:
# Q.B4 Thinking about the future of the United States, do you think the country's best years are ahead of us or behind us?
#
# 1 Ahead of us
# 2 Behind us
# 9 Don’t know/Refused (VOL.)
#
# ASK ALL PHASE B:
# Q.B5 Thinking about the Democratic and Republican parties, would you say there is a great deal of difference in what they stand for, a fair amount of difference, or hardly any difference at all?
#
# 1 A great deal
# 2 A fair amount
# 3 Hardly any
# 9 Don’t know/Refused (VOL.)
#
#
# ASK ALL PHASE A:
# Q.A6 If you could live anywhere in the United States that you wanted to, would you prefer a city, a suburban area, a small town or a rural area?
#
# 1 City
# 2 Suburban area
# 3 Small town
# 4 Rural area
# 9 Don't know/Refused (VOL.)
#
# NO QUESTION 7
#
# ASK ALL PHASE A:
# Imagine for a moment that you are moving to another community.
# ASK ALL:
# Q.A8 Would you prefer to live in [INSERT ITEM; RANDOMIZE]?
#
# 1 A community where the houses are larger and farther apart, but schools, stores, and restaurants are several miles away [OR]
# 2 A community where the houses are smaller and closer to each other, but schools, stores, and restaurants are within walking distance
# 9 [VOL. DO NOT READ] Don't know/Refused
#
# ASK ALL PHASE A:
# Q.A9 Still imagining that you are moving to another community. In deciding where to live, would each of the following be important, or not too important to you. First, would [INSERT ITEM; RANDOMIZE] be important, or not too important? What about [NEXT ITEM]?
#
# a. Living in a place where most people share your political views
# b. Having high quality public schools
# c. Living in a place with a mix of people from different racial and ethnic backgrounds
# d. Living in a place with many people who share your religious faith
# e. Being near art museums and theaters
# f. Having easy access to the outdoors for things like hiking, fishing, and camping
# g. Being near your extended family
#
# RESPONSE CATEGORIES:
# 1 Important
# 2 Not too important
# 9 Don't know/Refused (VOL.)
#
# NO QUESTION 10
#
# ASK ALL:
# Next,
# Q.11 Would you say your overall opinion of… [INSERT ITEM; RANDOMIZE] is very favorable, mostly favorable, mostly UNfavorable, or very unfavorable? [INTERVIEWERS: PROBE TO DISTINGUISH BETWEEN “NEVER HEARD OF” AND “CAN’T RATE.”] How about [NEXT ITEM]?
#
# a. The Republican Party
# b. The Democratic Party
#
# ASK PHASE B ONLY:
# c.B Congress
# NO ITEM d
# e.B Labor unions
# NO ITEMS f AND g
# h.B The National Rifle Association
# i.B The Federal Reserve
# j.B The Environmental Protection Agency, the EPA
#
# RESPONSE CATEGORIES:
# 1 Very favorable
# 2 Mostly favorable
# 3 Mostly unfavorable
# 4 Very unfavorable
# 5 Never heard of (VOL.)
# 8 Can't rate (VOL.)
# 9 Refused (VOL.)
#
# ASK PHASE C IF VERY UNFAVORABLE VIEW OF REP PARTY (Q11a=4):
# Q.11at Would you say the Republican Party’s policies are so misguided that they threaten the nation’s well-being, or wouldn’t you go that far?
#
# 1 Yes, Republican Party’s policies pose a threat to the nation’s well-being [OR]
# 2 No, wouldn’t go that far
# 9 Don’t know/Refused (VOL.)
#
# ASK PHASE C IF VERY UNFAVORABLE VIEW OF DEM PARTY (Q11b=4):
# Q.11bt Would you say the Democratic Party’s policies are so misguided that they threaten the nation’s well-being, or wouldn’t you go that far?
#
# 1 Yes, Democratic Party’s policies pose a threat to the nation’s well-being [OR]
# 2 No, wouldn’t go that far
# 9 Don’t know/Refused (VOL.)
#
# ASK ALL PHASE B:
# Q.B12 Thinking about elected officials in Washington who share your positions on the most important issues facing the nation. [READ AND RANDOMIZE]
#
# 1 Should they work with elected officials they disagree with, even if it results in some policies you don’t like [OR]
# 2 Should they stand up for their positions, even if that means little gets done in Washington
# 9 [VOL. DO NOT READ] Don't know/Refused
#
# NO QUESTIONS 13-24
#
# ASK ALL:
# Q.25 I'm going to read you some pairs of statements that will help us understand how you feel about a number of things. As I read each pair, tell me whether the FIRST statement or the SECOND statement comes closer to your own views — even if neither is exactly right. The first pair is [READ AND RANDOMIZE PAIRS BUT NOT STATEMENTS WITHIN EACH PAIR]. Next, [NEXT PAIR] [IF NECESSARY: “Which statement comes closer to your views, even if neither is exactly right?”]
#
# a. Government is almost always wasteful and inefficient [OR]
# Government often does a better job than people give it credit for
#
survey$q25a.c1 <- as.numeric(recode(survey$q25a, "'Statement #1'=1;else=0"))
survey$q25a.c2 <- as.numeric(recode(survey$q25a, "'Statement #2'=1;else=0"))
#
# b. Government regulation of business is necessary to protect the public interest [OR]
# Government regulation of business usually does more harm than good
#
survey$q25b.c1 <- as.numeric(recode(survey$q25b, "'Statement #1'=1;else=0"))
survey$q25b.c2 <- as.numeric(recode(survey$q25b, "'Statement #2'=1;else=0"))
# c. Poor people today have it easy because they can get government benefits without doing anything in return [OR]
# Poor people have hard lives because government benefits don't go far enough to help them live decently
#
survey$q25c.c1 <- as.numeric(recode(survey$q25c, "'Statement #1'=1;else=0"))
survey$q25c.c2 <- as.numeric(recode(survey$q25c, "'Statement #2'=1;else=0"))
# d. The government should do more to help needy Americans, even if it means going deeper into debt [OR]
# The government today can't afford to do much more to help the needy
#
survey$q25d.c1 <- as.numeric(recode(survey$q25d, "'Statement #1'=1;else=0"))
survey$q25d.c2 <- as.numeric(recode(survey$q25d, "'Statement #2'=1;else=0"))
# NO ITEM e
#
# f. Racial discrimination is the main reason why many black people can't get ahead these days [OR]
# Blacks who can't get ahead in this country are mostly responsible for their own condition
#
survey$q25f.c1 <- as.numeric(recode(survey$q25f, "'Statement #1'=1;else=0"))
survey$q25f.c2 <- as.numeric(recode(survey$q25f, "'Statement #2'=1;else=0"))
# g. Immigrants today strengthen our country because of their hard work and talents [OR]
# Immigrants today are a burden on our country because they take our jobs, housing and health care
#
survey$q25g.c1 <- as.numeric(recode(survey$q25g, "'Statement #1'=1;else=0"))
survey$q25g.c2 <- as.numeric(recode(survey$q25g, "'Statement #2'=1;else=0"))
# h. Society is better off if people make marriage and having children a priority [OR]
# Society is just as well off if people have priorities other than marriage and children
#
survey$q25h.c1 <- as.numeric(recode(survey$q25h, "'Statement #1'=1;else=0"))
survey$q25h.c2 <- as.numeric(recode(survey$q25h, "'Statement #2'=1;else=0"))
# i. The best way to ensure peace is through military strength [OR]
# Good diplomacy is the best way to ensure peace
#
survey$q25i.c1 <- as.numeric(recode(survey$q25i, "'Statement #1'=1;else=0"))
survey$q25i.c2 <- as.numeric(recode(survey$q25i, "'Statement #2'=1;else=0"))
# j. U.S. efforts to solve problems around the world usually end up making things worse [OR] Problems in the world would be even worse without U.S. involvement
#
survey$q25j.c1 <- as.numeric(recode(survey$q25j, "'Statement #1'=1;else=0"))
survey$q25j.c2 <- as.numeric(recode(survey$q25j, "'Statement #2'=1;else=0"))
# k. Most people who want to get ahead can make it if they're willing to work hard [OR]
# Hard work and determination are no guarantee of success for most people
#
survey$q25k.c1 <- as.numeric(recode(survey$q25k, "'Statement #1'=1;else=0"))
survey$q25k.c2 <- as.numeric(recode(survey$q25k, "'Statement #2'=1;else=0"))
# l. Success in life is pretty much determined by forces outside of our control [OR]
# Everyone has it in their own power to succeed
#
survey$q25l.c1 <- as.numeric(recode(survey$q25l, "'Statement #1'=1;else=0"))
survey$q25l.c2 <- as.numeric(recode(survey$q25l, "'Statement #2'=1;else=0"))
# m. Too much power is concentrated in the hands of a few large companies [OR]
# The largest companies do NOT have too much power
#
survey$q25m.c1 <- as.numeric(recode(survey$q25m, "'Statement #1'=1;else=0"))
survey$q25m.c2 <- as.numeric(recode(survey$q25m, "'Statement #2'=1;else=0"))
# n. Business corporations make too much profit [OR]
# Most corporations make a fair and reasonable amount of profit
#
survey$q25n.c1 <- as.numeric(recode(survey$q25n, "'Statement #1'=1;else=0"))
survey$q25n.c2 <- as.numeric(recode(survey$q25n, "'Statement #2'=1;else=0"))
# ASK ALL PHASE B:
# o. Elected officials in Washington lose touch with the people pretty quickly [OR]
# Elected officials in Washington try hard to stay in touch with voters back home
#
# ASK ALL PHASE C:
# p. Most elected officials care what people like me think [OR]
# Most elected officials don't care what people like me think
#
# RESPONSE CATEGORIES:
# 1 Statement #1
# 2 Statement #2
# 5 Neither/Both equally (VOL.)
# 9 Don't know/Refused (VOL.)
#
#
#
# ASK ALL PHASE B:
# Q.B26 And in your view, has this country been successful more because of its [INSERT ITEM; RANDOMIZE] or more because of its [ITEM]?
#
# 1 Ability to change [OR]
# 2 Reliance on long-standing principles
# 9 [VOL. DO NOT READ] Don't know/Refused
#
# ASK ALL PHASE C:
# Q.C26 Next, [READ AND RANDOMIZE]
#
# 1 Americans are united and in agreement about the most important values [OR]
# 2 Americans are greatly divided when it comes to the most important values
# 9 [VOL. DO NOT READ] Don't know/Refused
#
# ASK ALL:
# OFTVOTE How often would you say you vote...[READ IN ORDER]?
#
# 1 Always
# 2 Nearly always
# 3 Part of the time
# 4 Seldom
# 5 [VOL. DO NOT READ] Never vote
# 6 [VOL. DO NOT READ] Other
# 9 [VOL. DO NOT READ] Don't know/Refused
#
# ASK PHASE A FORM 1:
# Now a different kind of question,
# Q.26F1 Thinking about how Barack Obama and Republican leaders should address the most important issues facing the country. Imagine a scale from zero to 100 where 100 means Republican leaders get everything they want and Obama gets nothing he wants, and zero means Obama gets everything and Republican leaders get nothing. Where on this scale from zero to 100 do you think they should end up? [OPEN END ENTER NUMBER 0-100] [IF NECESSARY: “100 means Republicans get everything they want, ZERO means Obama gets everything he wants, about where, from 0 to 100 should they end up?] [INTERVIEWER, IF RESPONDENT STRUGGLES WITH PRECISE NUMBER YOU CAN SAY: “you can just give me a number close to what you think”]
#
# [IF RESPONDENT SAYS A NUMBER BETWEEN 0-49, CLARIFY: “Just to be sure I get this right, [INSERT NUMBER CHOSEN], means Obama should get more than Republican leaders, is that what you meant?” [IF NO, RESPONDENT MEANT REP LEADERS SHOULD GET MORE: “A number between 51 and 100 would mean Republican leaders get more than Obama”]
#
# [IF RESPONDENT SAYS A NUMBER BETWEEN 51-100, CLARIFY: “Just to be sure I get this right, [INSERT NUMBER CHOSEN], means Republican leaders should get more than Obama, is that what you meant?” [IF NO, RESPONDENT MEANT OBAMA SHOULD GET MORE: “A number between 0 and 49 would mean Obama gets more than Republican leaders”]
#
# 1 [ENTER NUMBER 0-100]
# 999 [VOL. DO NOT READ] Don't know/Refused
#
#
# ASK PHASE A FORM 2:
# Now a different kind of question,
# Q.26F2 Thinking about how Barack Obama and Republican leaders should address the most important issues facing the country. Imagine a scale from zero to 100 where 100 means Obama gets everything he wants and Republican leaders get nothing they want, and zero means Republican leaders get everything and Obama gets nothing. Where on this scale from zero to 100 do you think they should end up? [OPEN END ENTER NUMBER 0-100] [IF NECESSARY: “100 means Obama gets everything he wants, ZERO means Republicans gets everything they want, about where, from 0 to 100 should they end up?] [INTERVIEWER, IF RESPONDENT STRUGGLES WITH PRECISE NUMBER YOU CAN SAY: “you can just give me a number close to what you think”]
#
# [IF RESPONDENT SAYS A NUMBER BETWEEN 51-100, CLARIFY: “Just to be sure I get this right, [INSERT NUMBER CHOSEN], means Obama should get more than Republican leaders, is that what you meant?” [IF NO, RESPONDENT MEANT REP LEADERS SHOULD GET MORE: “A number between 0 and 49 would mean Republican leaders get more than Obama”]
#
# [IF RESPONDENT SAYS A NUMBER BETWEEN 0-49, CLARIFY: “Just to be sure I get this right, [INSERT NUMBER CHOSEN], means Republican leaders should get more than Obama, is that what you meant?” [IF NO, RESPONDENT MEANT OBAMA SHOULD GET MORE: “A number between 51 and 100 would mean Obama gets more than Republican leaders”]
#
# 1 [ENTER NUMBER 0-100]
# 999 [VOL. DO NOT READ] Don't know/Refused
#
# ASK ALL PHASE B:
# The next congressional elections will be coming up later this year…
# Q.B27 If the elections for U.S. Congress were being held TODAY, would you vote for the Republican Party’s candidate or the Democratic Party’s candidate for Congress in your district?
#
# 1 Republican Party’s candidate
# 2 Democratic Party’s candidate
# 3 Other (VOL.)
# 9 Don’t know/Refused (VOL.)
#
# ASK IF ‘OTHER’ ‘DON’T KNOW/REFUSED’ (Q.B27=3,9):
# Q.B27a As of TODAY, would you LEAN more to the Republican or the Democrat?
#
# 1 Republican Party’s candidate
# 2 Democratic Party’s candidate
# 3 Other (VOL.)
# 9 Don’t know/Refused (VOL.)
#
# ASK ALL:
# Next,
# INT1 Do you use the internet, at least occasionally?
#
# 1 Yes
# 2 No
# 9 Don’t Know/Refused (VOL.)
#
# ASK IF DOES NOT USE THE INTERNET (INT1=2,9):
# INT2 Do you send or receive email, at least occasionally?
#
# 1 Yes
# 2 No
# 9 Don’t Know/Refused (VOL.)
#
# ASK IF DOES NOT USE THE INTERNET OR EMAIL (INT2=2,9):
# INT3M Do you access the internet on a cell phone, tablet or other mobile handheld device, at least occasionally?
#
# 1 Yes
# 2 No
# 9 Don’t know/Refused (VOL.)
#
# ASK ALL PHASE C:
# Now, I have a short set of questions on marriage and family.
# Q.C28 First, how do you think you would react if a member of your immediate family told you they were going to marry... [INSERT ITEM; RANDOMIZE]? Would you be generally happy about this, generally unhappy, or wouldn’t it matter to you at all? What about [NEXT ITEM]? [IF NECESSARY: if a member of your immediate family told you they were going to marry [ITEM], would you be generally happy, generally unhappy, or wouldn’t it matter to you at all?] [INTERVIEWER INSTRUCTION: IF RESPONDENT SAYS THEY HAVE FAMILY MEMBER(S) MARRIED TO SOMEONE OF THAT GROUP]: “Are you happy about that, unhappy about that, or doesn’t it matter?”]
#
# a. A Republican
# b. A Democrat
# c. Someone who didn’t go to college
# d. Someone born and raised outside the U.S.
# e. Someone who does not believe in God
# f. A “born again” Christian
# g. A gun owner
# h. Someone of a different race
#
# RESPONSE CATEGORIES:
# 1 Happy
# 2 Unhappy
# 3 Wouldn’t it matter to you at all
# 9 Don’t know/Refused (VOL.)
#
# ASK ALL PHASE A:
# Q.A29 Thinking about some news organizations, would you say your overall opinion of… [INSERT ITEM; RANDOMIZE] is favorable, unfavorable, or neither in particular? How about [NEXT ITEM]? [IF NECESSARY: Is your overall opinion of [ITEM] favorable, unfavorable, or neither in particular]
#
# a. MSNBC cable news
# b. The Fox News Cable Channel
#
# RESPONSE CATEGORIES:
# 1 Favorable
# 2 Unfavorable
# 3 Neither in particular
# 9 Don't know/Refused (VOL.)
#
# NO QUESTIONS 30-39
#
# ASK ALL:
# Q.40 Would you say you follow what's going on in government and public affairs...[READ]?
#
# 1 Most of the time
# 2 Some of the time
# 3 Only now and then [OR]
# 4 Hardly at all
# 9 [VOL. DO NOT READ] Don't know/Refused
survey$q40.c <- as.numeric(recode(survey$q40,
"'Most of the time'=1;
'Some of the time'=0.75;
'Only now and then [OR]'=0.5;
'Hardly at all'=0.25;
else=0"))
# ASK ALL PHASE B:
# Q.B40a Some people say they are basically content with the federal government, others say they are frustrated, and others say they are angry. Which of these best describes how you feel?
#
# 1 Basically content
# 2 Frustrated
# 3 Angry
# 9 Don’t know/Refused (VOL.)
#
# ASK ALL PHASE B:
# Q.B40b How much of the time do you think you can trust the government in Washington to do what is right? Just about always, most of the time, or only some of the time?
#
# 1 Just about always
# 2 Most of the time
# 3 Only some of the time
# 4 Never (VOL.)
# 9 Don’t know/Refused (VOL.)
#
# ASK ALL:
# Just as far as you know…
# Q.41 Which political party has a majority in the U.S. House of Representatives [READ AND RANDOMIZE]? [IF NECESSARY: Just as far as you know] [INTERVIEWER INSTRUCTION: DO NOT PROBE, PUNCH 9 IF RESPONDENT SAYS THEY DON’T KNOW]
#
# 1 The Republican Party [OR]
# 2 The Democratic Party
# 9 [VOL. DO NOT READ] Don’t know/Refused
#
# ASK ALL:
# Q.42 Which political party, has a majority in the U.S. Senate [READ AND RANDOMIZE]? [INTERVIEWER INSTRUCTION: DO NOT PROBE, PUNCH 9 IF RESPONDENT SAYS THEY DON’T KNOW]
#
# 1 The Republican Party [OR]
# 2 The Democratic Party
# 9 [VOL. DO NOT READ] Don’t know/Refused
#
# ASK ALL PHASE A:
# Q.43 Which political party is more in favor of raising taxes on higher income people [READ AND RANDOMIZE]? [IF NECESSARY: Just as far as you know] [INTERVIEWER INSTRUCTION: DO NOT PROBE, PUNCH 9 IF RESPONDENT SAYS THEY DON’T KNOW]
#
# 1 The Republican Party [OR]
# 2 The Democratic Party
# 9 [VOL. DO NOT READ] Don't know/Refused
#
# NO QUESTIONS 44-47
#
# RANDOMIZE Q.C48/Q.C49
# ASK ALL PHASE C:
# Now some questions about your views of the political parties…
# Q.C48 Do you think the Republican Party [INSERT ITEM; RANDOMIZE] or not?
#
# a. Is too extreme
# b. Cares about the middle class
# c. Is too willing to cut government programs, even when they work
#
# RESPONSE CATEGORIES:
# 1 Yes, describes Republican Party
# 2 No
# 9 Don’t know/Refused (VOL.)
#
# RANDOMIZE Q.C48/Q.C49
# ASK ALL PHASE C:
# [Next,]
# Q.C49 Do you think the Democratic Party [INSERT ITEM; RANDOMIZE] or not?
#
# a. Is too extreme
# b. Cares about the middle class
# c. Too often sees government as the only way to solve problems
#
# RESPONSE CATEGORIES:
# 1 Yes, describes Democratic Party
# 2 No
# 9 Don’t know/Refused (VOL.)
#
# ASK ALL:
# Q.50 Now I'm going to read a few more pairs of statements. Again, just tell me whether the FIRST statement or the SECOND statement comes closer to your own views — even if neither is exactly right. The first pair is [READ AND RANDOMIZE ITEMS Q THRU Z FOLLOWED BY RANDOMIZED ITEMS AA THRU HH; RANDOMIZE PAIRS BUT NOT STATEMENTS WITHIN EACH PAIR]. Next, [NEXT PAIR] [IF NECESSARY: “Which statement comes closer to your views, even if neither is exactly right?”]
#
# q. This country should do whatever it takes to protect the environment [OR]
# This country has gone too far in its efforts to protect the environment
#
survey$q50q.c1 <- as.numeric(recode(survey$q50q, "'Statement #1'=1;else=0"))
survey$q50q.c2 <- as.numeric(recode(survey$q50q, "'Statement #2'=1;else=0"))
# r. Stricter environmental laws and regulations cost too many jobs and hurt the economy [OR]
# Stricter environmental laws and regulations are worth the cost
#
survey$q50r.c1 <- as.numeric(recode(survey$q50r, "'Statement #1'=1;else=0"))
survey$q50r.c2 <- as.numeric(recode(survey$q50r, "'Statement #2'=1;else=0"))
# ASK ALL PHASE B:
# s. There are no real limits to growth in this country today [OR]
# People in this country should learn to live with less
#
# ASK ALL PHASE C:
# t. As Americans, we can always find ways to solve our problems and get what we want [OR]
# This country can't solve many of its important problems
#
# ASK ALL:
# u. Homosexuality should be accepted by society [OR]
# Homosexuality should be discouraged by society
#
survey$q50u.c1 <- as.numeric(recode(survey$q50u, "'Statement #1'=1;else=0"))
survey$q50u.c2 <- as.numeric(recode(survey$q50u, "'Statement #2'=1;else=0"))
# ASK ALL PHASE C:
# v. It’s not the government’s job to protect people from themselves [OR]
# Sometimes laws to protect people from themselves are necessary
#
# ASK ALL PHASE A:
# w. Religion is a very important part of my life [OR]
# Religion is not that important to me
#
# NO ITEM x
#
# ASK ALL:
# y. I'm generally satisfied with the way things are going for me financially [OR]
# I'm not very satisfied with my financial situation
#
# z. I often don't have enough money to make ends meet [OR]
# Paying the bills is generally not a problem for me
#
# aa. It IS NOT necessary to believe in God in order to be moral and have good values [OR]
# It IS necessary to believe in God in order to be moral and have good values
#
survey$q50aa.c1 <- as.numeric(recode(survey$q50aa, "'Statement #1'=1;else=0"))
survey$q50aa.c2 <- as.numeric(recode(survey$q50aa, "'Statement #2'=1;else=0"))
# bb. Using overwhelming military force is the best way to defeat terrorism around the world [OR]
# Relying too much on military force to defeat terrorism creates hatred that leads to more terrorism
#
survey$q50bb.c1 <- as.numeric(recode(survey$q50bb, "'Statement #1'=1;else=0"))
survey$q50bb.c2 <- as.numeric(recode(survey$q50bb, "'Statement #2'=1;else=0"))
# NO ITEM cc
#
# dd. The growing number of newcomers from other countries threatens traditional American customs and values [OR]
# The growing number of newcomers from other countries strengthens American society
#
survey$q50dd.c1 <- as.numeric(recode(survey$q50dd, "'Statement #1'=1;else=0"))
survey$q50dd.c2 <- as.numeric(recode(survey$q50dd, "'Statement #2'=1;else=0"))
# ee. It’s best for the future of our country to be active in world affairs [OR]
# We should pay less attention to problems overseas and concentrate on problems here at home
#
survey$q50ee.c1 <- as.numeric(recode(survey$q50ee, "'Statement #1'=1;else=0"))
survey$q50ee.c2 <- as.numeric(recode(survey$q50ee, "'Statement #2'=1;else=0"))
# ff. Americans need to be willing to give up privacy and freedom in order to be safe from terrorism [OR] Americans shouldn’t have to give up privacy and freedom in order to be safe from terrorism
#
# Not asked of all:
# survey$q50ff.c1 <- recode(survey$q50ff, "'Statement #1'=1;else=0")
# survey$q50ff.c2 <- recode(survey$q50ff, "'Statement #2'=1;else=0")
# ASK ALL PHASE B:
# gg. The government should do more to protect morality in society [OR]
# I worry the government is getting too involved in the issue of morality
#
# hh. Our country has made the changes needed to give blacks equal rights with whites [OR]
# Our country needs to continue making changes to give blacks equal rights with whites
#
# RESPONSE CATEGORIES:
# 1 Statement #1
# 2 Statement #2
# 5 Neither/Both equally (VOL.)
# 9 Don't know/Refused (VOL.)
#
# ASK ALL:
# Q.51 Next, [ASK ITEM ii FIRST, FOLLOWED BY RANDOMIZED ITEMS jj THROUGH mm AND RANDOMIZE STATEMENTS WITHIN PAIRS]. [IF NECESSARY: “Which statement comes closer to your views, even if neither is exactly right?”] Next, [NEXT PAIR]
#
# ASK ALL PHASE A:
# ii. Government should do more to solve problems [OR]
# Government is doing too many things better left to businesses and individuals
#
# ASK ALL PHASE A:
# jj. Children are better off when a parent stays home to focus on the family
# Children are just as well off when their parents work outside the home
#
# ASK ALL:
# kk. Government aid to the poor does more harm than good, by making people too dependent on government assistance [OR]
# Government aid to the poor does more good than harm, because people can’t get out of poverty until their basic needs are met
#
survey$q51kk.c1 <- as.numeric(recode(survey$q51kk, "'Statement #1'=1;else=0"))
survey$q51kk.c2 <- as.numeric(recode(survey$q51kk, "'Statement #2'=1;else=0"))
# ASK ALL PHASE A:
# ll. The economic system in this country unfairly favors powerful interests [OR]
# The economic system in this country is generally fair to most Americans
#
# ASK ALL PHASE A:
# mm. I like elected officials who make compromises with people they disagree with [OR]
# I like elected officials who stick to their positions
#
# NO ITEM nn
#
# ASK ALL PHASE C:
# oo. The police should be allowed to stop and search anyone who fits the general description of a crime suspect [OR]
# The police should not be able to search people just because they think they look suspicious
#
# ASK ALL PHASE C:
# pp. Wall Street HELPS the American economy more than it hurts [OR]
# Wall Street HURTS the American economy more than it helps
#
# RESPONSE CATEGORIES:
# 1 Statement #1
# 2 Statement #2
# 5 Neither/Both equally (VOL.)
# 9 Don't know/Refused (VOL.)
#
# NO QUESTION 52
#
# ASK ALL PHASE A:
# Q.53 In your opinion, which is generally more often to blame if a person is poor? Lack of effort on his or her own part, or circumstances beyond his or her control?
#
# 1 Lack of effort
# 2 Circumstances beyond control
# 3 Both (VOL.)
# 9 Don’t know/Refused (VOL.)
#
# ASK ALL PHASE B:
# Q.B54 Next, [IF NECESSARY: Which comes closer to your own views — even if neither is exactly right]. [READ DO NOT RANDOMIZE STATEMENTS]
#
# The Islamic religion is more likely than others to encourage violence among its believers [OR]
# The Islamic religion does not encourage violence more than others
#
# RESPONSE CATEGORIES:
# 1 Statement #1
# 2 Statement #2
# 5 Neither/Both equally (VOL.)
# 9 Don't know/Refused (VOL.)
#
# ASK ALL PHASE B:
# Q.B55 Should the U.S. Supreme Court base its rulings on its understanding of what the U.S. Constitution meant as it was originally written, or should the court base its rulings on its understanding of what the US Constitution means in current times?
#
# 1 What it meant as originally written
# 2 What it means in current times
# 3 Somewhere in between (VOL.)
# 9 Don’t know/Refused (VOL.)
#
#
# ASK ALL PHASE C:
# Q.C56 Which of these statements best describes your opinion about the United States? [READ IN ORDER; REVERSE ORDER FOR HALF OF SAMPLE]
#
# 1 The U.S. stands above all other countries in the world.
# 2 The U.S. is one of the greatest countries in the world, along with some others [OR]
# 3 There are other countries that are better than the U.S.
# 9 [VOL. DO NOT READ] Don’t know/Refused
#
# ASK ALL PHASE C:
# Q.C57 From what you’ve read and heard, is there solid evidence that the average temperature on earth has been getting warmer over the past few decades, or not?
#
# 1 Yes
# 2 No
# 3 Mixed/some evidence (VOL.)
# 9 Don’t know/Refused (VOL.)
#
# ASK IF EARTH IS GETTING WARMER (Q.C57=1):
# Q.C58a Do you believe that the earth is getting warmer [READ AND RANDOMIZE]?
#
# 1 Mostly because of human activity such as burning fossil fuels [OR]
# 2 Mostly because of natural patterns in the earth’s environment
# 9 [VOL. DO NOT READ] Don’t know/Refused
#
# ASK IF EARTH IS NOT GETTING WARMER (Q.C57=2):
# Q.C58b Do you think that we just don’t know enough yet about whether the Earth is getting warmer or do you think it’s just not happening?
#
# 1 Just don’t know enough yet
# 2 Just not happening
# 9 Don’t know/Refused (VOL.)
#
# NO QUESTIONS 59-99
#
# ASK ALL:
# Q.100 Have you ever contributed money to a candidate running for public office or to a group working to elect a candidate?
#
#
# 1 Yes
# 2 No
# 9 Don’t know/Refused (VOL.)
#
survey$q100.ca <- as.numeric(recode(survey$q100, "'Yes'=1;else=0"))
survey$q100.cd <- as.numeric(recode(survey$q100, "'No'=1;else=0"))
# ASK IF HAVE EVER CONTRIBUTED MONEY (Q.100=1):
# Q.101 Have you done this over the last two years, that is, during or since the 2012 elections, or not? [IF NECESSARY: Have you contributed money to any candidates or political groups over the last two years, or not?]
#
# 1 Yes
# 2 No
# 9 Don’t know/Refused (VOL.)
#
#
# ASK IF HAVE CONTRIBUTED MONEY DURING 2012/2013 (Q.101=1):
# Q.102 Over the last two years, would you say all of those contributions added up to more than $100 or less than that?
#
# 1 More than $100
# 2 Less than that
# 9 Don’t know/Refused (VOL.)
#
# ASK IF MORE THAN $100 (Q.102=1):
# Q.102a And did they add up to more than $250 or not?
#
# 1 More than $250
# 2 No, less than that
# 9 Don’t know/Refused (VOL.)
#
# NO QUESTIONS 103-104
#
# ASK ALL:
# Q.105 And again, just thinking about the last two years…Please tell me if you have done any of the following. First, over the last two years have you [INSERT ITEM; RANDOMIZE], or not? And over the last two years have you [INSERT NEXT ITEM], or not?
#
# a. Worked or volunteered for a political candidate or campaign
survey$q105a.ca <- as.numeric(recode(survey$q105a, "'Yes, have done this within the 2 years'=1;else=0"))
survey$q105a.cd <- as.numeric(recode(survey$q105a, "'No, have not done this within the 2 years'=1;else=0"))
# b. Contacted any elected official
survey$q105b.ca <- as.numeric(recode(survey$q105b, "'Yes, have done this within the 2 years'=1;else=0"))
survey$q105b.cd <- as.numeric(recode(survey$q105b, "'No, have not done this within the 2 years'=1;else=0"))
# NO ITEM C
# d. Attended a campaign event
#
# RESPONSE CATEGORIES:
# 1 Yes, have done this within the last 2 years
# 2 No, have not done this within the last 2 years
# 9 Don't know/Refused (VOL.)
#
# ASK ALL PHASE A:
# Q.106 And have you, yourself, ever run for federal, state, or local elected office, or not?
#
# 1 Yes, have run for elected office
# 2 No, have not run for elected office
# 9 Don't know/Refused (VOL.)
#
# ASK ALL PHASE B:
# Next,
# Q.B106 Do you favor or oppose legalized casino gambling in your state?
#
# 1 Favor
# 2 Oppose
# 9 Don’t know/Refused (VOL.)
#
# ASK ALL PHASE B:
# Q.B107 Right now, which ONE of the following do you think should be the more important priority for addressing America’s energy supply? [READ AND RANDOMIZE]?
#
# 1 Developing alternative sources, such as wind, solar and hydrogen technology [OR]
# 2 Expanding exploration and production of oil, coal and natural gas
# 3 [VOL. DO NOT READ] Both should be given equal priority
# 9 [VOL. DO NOT READ] Don’t know/Refused
#
#
# ASK ALL PHASE B:
# Q.B108 Do you strongly favor, favor, oppose, or strongly oppose allowing gays and lesbians to marry legally?
#
# 1 Strongly favor
# 2 Favor
# 3 Oppose
# 4 Strongly oppose
# 9 Don't know/Refused (VOL.)
#
# ASK ALL PHASE B:
# Q.B109 Thinking about our economic and trade policy toward China, which is more important [READ AND RANDOMIZE]?
#
# 1 Building a stronger relationship with China on economic issues [OR]
# 2 Getting tougher with China on economic issues
# 9 [VOL. DO NOT READ] Don’t know/Refused
#
# ASK ALL PHASE B:
# Q.B110 Do you think the use of marijuana should be made legal, or not?
#
# 1 Yes, legal
# 2 No, illegal
# 9 Don’t know/Refused (VOL.)
#
# ASK ALL PHASE C:
# Q.C111 How much, if anything, have you read or heard about COMMON CORE, a set of education standards for students in grades K-12? Have you heard … [READ]
#
# 1 A lot
# 2 A little
# 3 Nothing at all
# 9 [VOL. DO NOT READ] Don’t know/Refused
#
# ASK IF HEARD OF COMMON CORE (Q.C111=1,2):
# Q.C112 From what you’ve read and heard, do you strongly favor, favor, oppose or strongly oppose the Common Core education standards?
#
# 1 Strongly favor
# 2 Favor
# 3 Oppose
# 4 Strongly oppose
# 9 Don’t know/Refused (VOL.)
#
# NO QUESTIONS 113-114
#
# ASK ALL PHASE C:
# Q.C115 In general, do you think that free trade agreements between the U.S. and other countries have been a good thing or a bad thing for the United States?
#
# 1 Good thing
# 2 Bad thing
# 9 Don’t know/Refused (VOL.)
#
#
# ASK ALL PHASE C:
# Q.C116 Do you approve or disapprove of the health care law passed by Barack Obama and Congress in 2010?
#
# 1 Approve
# 2 Disapprove
# 9 Don't know/Refused (VOL.)
#
# ASK IF APPROVE OR DISAPPROVE (Q.C116=1,2)
# Q.C116a Do you [approve/disapprove] very strongly, or not so strongly?
#
# 1 Very strongly
# 2 Not so strongly
# 9 Don't know/Refused (VOL.)
#
# ASK IF ‘DISAPPROVE’ (Q.C116=2):
# Q.C117 What do you think elected officials who oppose the health care law should do now that the law has started to take effect? Should they [READ AND RANDOMIZE] or should they [ITEM]?
#
# 1 Do what they can to make the law work as well as possible
# 2 Do what they can to make the law fail
# 9 [VOL. DO NOT READ] Don't know/Refused
#
# NO QUESTIONS 118-120
#
# RANDOMIZE IN BLOCKS:
# Q121/121a/b, Q122/122a/b, Q123/a/b, Q124/a/b, Q125/a/b, Q126/a/b
# ASK ALL PHASE A:
# Q.121 Do you think it is the responsibility of the federal government to make sure all Americans have health care coverage, or is that not the responsibility of the federal government?
#
# 1 Yes, government responsibility
# 2 No, not government responsibility
# 9 Don't know/Refused (VOL.)
#
# ASK IF GOVERNMENT RESPONSIBILITY (Q121=1):
# Q.121a Should health insurance [READ AND RANDOMIZE]?
#
# 1 Be provided through a single national health insurance system run by the government [OR]
# 2 Continue to be provided through a mix of private insurance companies and government programs
# 9 [VOL. DO NOT READ] Don't know/Refused
#
# ASK IF NOT GOVERNMENT RESPONSIBILITY (Q121=2):
# Q.121b Should the government [READ AND RANDOMIZE]?
#
# 1 Not be involved in providing health insurance at all [OR SHOULD THE GOVERNMENT]
# 2 Continue programs like Medicare and Medicaid for seniors and the very poor
# 9 [VOL. DO NOT READ] Don't know/Refused
#
#
# RANDOMIZE IN BLOCKS:
# Q121/121a/b, Q122/122a/b, Q123/a/b, Q124/a/b, Q125/a/b, Q126/a/b
# ASK ALL PHASE A:
# Q.122 Which comes closer to your view about how to handle immigrants who are now living in the U.S. illegally? Should they [READ AND RANDOMIZE]
#
# 1 Not be eligible for citizenship [OR SHOULD THEY]
# 2 Be eligible for citizenship if they meet certain requirements
# 9 [VOL. DO NOT READ] Don’t know/Refused
#
# ASK IF NOT ELIGIBLE FOR CITIZENSHIP (Q122=1):
# Q.122a Do you think there should be a national law enforcement effort to deport all immigrants who are now living in the U.S. illegally, or should that not be done?
#
# 1 Should be national law enforcement effort to deport
# 2 Should not be national law enforcement effort to deport
# 9 Don’t know/Refused (VOL.)
#
# ASK IF BE ELIGIBLE FOR CITIZENSHIP (Q122=2):
# Q.122b And if immigrants meet these requirements, should they be eligible for citizenship? [READ AND RANDOMIZE]
#
# 1 Right away [OR]
# 2 Only after a period of time
# 9 Don’t know/Refused (VOL.)
#
# RANDOMIZE IN BLOCKS:
# Q121/121a/b, Q122/122a/b, Q123/a/b, Q124/a/b, Q125/a/b, Q126/a/b
# ASK ALL PHASE A:
# Q.123 What do you think is more important – to protect the right of Americans to own guns, OR to control gun ownership?
#
# 1 Protect the right of Americans to own guns
# 2 Control gun ownership
# 9 Don't know/Refused (VOL.)
#
# ASK IF MORE IMPORTANT TO PROTECT OWNERSHIP (Q.123=1):
# Q.123a And do you think there should be [READ AND RANDOMIZE]?
#
# 1 Some restrictions on gun ownership [OR SHOULD THERE BE]
# 2 No restrictions on gun ownership
# 9 Don't know/Refused (VOL.)
#
# ASK IF MORE IMPORTANT TO CONTROL OWNERSHIP (Q.123=2):
# Q.123b And do you think [READ AND RANDOMIZE]?
#
# 1 Most Americans should be able to own guns with certain limits in place [OR]
# 2 Only law enforcement and security personnel should be able to own guns
# 9 Don't know/Refused (VOL.)
#
# Q121/121a/b, Q122/122a/b, Q123/a/b, Q124/a/b, Q125/a/b, Q126/a/b
# ASK ALL PHASE A:
# Q.124 Do you think abortion should be [READ AND RANDOMIZE]
#
# 1 LEGAL in all or most cases [OR]
# 2 ILLEGAL in all or most cases
# 9 [VOL. DO NOT READ] Don't know/Refused
#
#
# ASK IF LEGAL IN ALL/MOST (q124=1):
# Q.124a Do you think there are any situations in which abortion should be restricted, or should there be no restrictions at all on abortion?
#
# 1 Situations in which abortion should be restricted
# 2 No restrictions at all on abortion
# 9 Don't know/Refused (VOL.)
#
# ASK IF ILLEGAL IN ALL/MOST (q124=2):
# Q.124b Do you think there are any situations in which abortion should be allowed, or should there be no situations at all where abortion is allowed?
#
# 1 Situations in which abortion should be allowed
# 2 No situations where abortion should be allowed
# 9 Don't know/Refused (VOL.)
#
# RANDOMIZE IN BLOCKS:
# Q121/121a/b, Q122/122a/b, Q123/a/b, Q124/a/b, Q125/a/b, Q126/a/b
# ASK ALL PHASE A:
# Q.125 Thinking about the long term future of Social Security, do you think [READ AND RANDOMIZE]?
#
# 1 Some reductions in benefits for future retirees need to be considered [OR]
# 2 Social Security benefits should not be reduced in any way
# 9 [VOL. DO NOT READ] Don’t know/Refused
#
# ASK IF ACCEPTABLE (Q.125=1):
# Q.125a Should Social Security be [READ AND RANDOMIZE]?
#
# 1 Phased out as a government program [OR SHOULD IT BE]
# 2 Maintained at a reduced level
# 9 [VOL. DO NOT READ] Don't know/Refused
#
# ASK IF UNACCEPTABLE (Q.125=2):
# Q.125b Should Social Security [READ AND RANDOMIZE]?
#
# 1 Cover more people, with greater benefits [OR SHOULD IT]
# 2 Be kept about as it is
# 9 [VOL. DO NOT READ] Don't know/Refused
#
# RANDOMIZE IN BLOCKS:
# Q121/121a/b, Q122/122a/b, Q123/a/b, Q124/a/b, Q125/a/b, Q126/a/b
# ASK ALL:
# Q.126 Overall, do you approve or disapprove of the government’s collection of telephone and internet data as part of anti-terrorism efforts?
#
# 1 Approve
# 2 Disapprove
# 9 Don't know/Refused (VOL.)
survey$q126.ca <- as.numeric(recode(survey$q126, "'Approve'=1;else=0"))
survey$q126.cd <- as.numeric(recode(survey$q126, "'Disapprove'=1;else=0"))
#
# ASK PHASE A IF APPROVE (Q.126=1):
# Q.126a Do you think the National Security Agency should be allowed to collect whatever data it needs, or should there be limits on what it collects?
#
# 1 NSA should be allowed to collect whatever data it needs
# 2 Should be limits on what NSA collects
# 9 Don’t know/Refused (VOL.)
#
#
# ASK PHASE A IF DISAPPROVE (Q.126=2):
# Q.126b Do you think the National Security Agency should be prevented from collecting any data about U.S. citizens, or should it be allowed to collect some limited information?
#
# 1 NSA prevented from collecting any data on citizens
# 2 NSA should be allowed to collect some limited information
# 9 Don’t know/Refused (VOL.)
#
# ASK ALL PHASE C:
# Q.C127 In general, do you think affirmative action programs designed to increase the number of black and minority students on college campuses are a good thing or a bad thing?
#
# 1 Good thing
# 2 Bad thing
# 9 Don’t know/Refused (VOL.)
#
# ASK ALL PHASE C:
# Q.C128 Do you favor or oppose building the Keystone XL pipeline that would transport oil from Canada’s oil sands region through the Midwest to refineries in Texas?
#
# 1 Favor
# 2 Oppose
# 9 Don’t know/Refused (VOL.)
#
# NO QUESTIONS 129-134
#
# ASK ALL PHASE C:
# Next,
# Q.C135 Which comes closer to your view? [READ AND RANDOMIZE]
#