-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestimate_likely_unlikely_voters.R
More file actions
38 lines (35 loc) · 1.84 KB
/
estimate_likely_unlikely_voters.R
File metadata and controls
38 lines (35 loc) · 1.84 KB
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
#---------------------LIKELY/UNLIKELY VOTER MODELS-----------------------------#
subs <- c("l.vot", TRUE)
cb_pol_08_lv <- estimate("politics", b, at.08,
incl_conflict = FALSE, subs = subs, incl_vote_intent = FALSE)
cb_pol_10_lv <- estimate("politics", b, at.10,
incl_conflict = FALSE, subs = subs, incl_vote_intent = FALSE)
cb_pol_12_lv <- estimate("politics", b, at.12,
incl_conflict = FALSE, subs = subs, incl_vote_intent = FALSE)
cb_pol_14_lv <- estimate("politics", b, at.14,
incl_conflict = FALSE, subs = subs, incl_vote_intent = FALSE)
cb_fr_08_lv <- estimate("friend", b, at.08,
incl_conflict = FALSE, subs = subs, incl_vote_intent = FALSE)
cb_fr_10_lv <- estimate("friend", b, at.10,
incl_conflict = FALSE, subs = subs, incl_vote_intent = FALSE)
cb_fr_12_lv <- estimate("friend", b, at.12,
incl_conflict = FALSE, subs = subs, incl_vote_intent = FALSE)
cb_fr_14_lv <- estimate("friend", b, at.14,
incl_conflict = FALSE, subs = subs, incl_vote_intent = FALSE)
subs <- c("u.vot", FALSE)
cb_pol_08_uv <- estimate("politics", b, at.08,
incl_conflict = FALSE, subs = subs, incl_vote_intent = FALSE)
cb_pol_10_uv <- estimate("politics", b, at.10,
incl_conflict = FALSE, subs = subs, incl_vote_intent = FALSE)
cb_pol_12_uv <- estimate("politics", b, at.12,
incl_conflict = FALSE, subs = subs, incl_vote_intent = FALSE)
cb_pol_14_uv <- estimate("politics", b, at.14,
incl_conflict = FALSE, subs = subs, incl_vote_intent = FALSE)
cb_fr_08_uv <- estimate("friend", b, at.08,
incl_conflict = FALSE, subs = subs, incl_vote_intent = FALSE)
cb_fr_10_uv <- estimate("friend", b, at.10,
incl_conflict = FALSE, subs = subs, incl_vote_intent = FALSE)
cb_fr_12_uv <- estimate("friend", b, at.12,
incl_conflict = FALSE, subs = subs, incl_vote_intent = FALSE)
cb_fr_14_uv <- estimate("friend", b, at.14,
incl_conflict = FALSE, subs = subs, incl_vote_intent = FALSE)