-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAE_copy.R
57 lines (45 loc) · 2 KB
/
AE_copy.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
## A.8 Copy Behavior
summarySE(p1pramt, "copy", "condition")
fit.all <- glmer(copy ~ round + condition + (1|session/player),
family=binomial(),
data=p1pramt)
summary(fit.all)
fit.svo <- glmer(copy ~ round + condition + svo.group + (1|session/player),
family=binomial(),
data=p1pramt[p1pramt$svo.group %in% c("Prosocial", "Individualistic"),])
summary(fit.svo)
fit.young <- glmer(copy ~ round + condition + young + (1|session/player),
family=binomial(),
data=p1pramt)
summary(fit.young)
fit.skill <- glmer(copy ~ round + condition + skill + (1|session/player),
family=binomial(),
data=p1pramt)
summary(fit.skill)
fit.belief <- glmer(copy ~ round + condition + belief.choice + (1|session/player),
family=binomial(),
data=p1pramt)
summary(fit.belief)
fit.female <- glmer(copy ~ round + condition + female + (1|session/player),
family=binomial(),
data=p1pramt)
summary(fit.female)
fit.pub <- glmer(copy ~ round + condition + published.lag.1 + (1|session/player),
family=binomial(),
data=p1pramt[p1pramt$round > 1,])
summary(fit.pub)
fit.success <- glmer(copy ~ round + condition + success.rel + (1|session/player),
family=binomial(),
data=p1pramt[p1pramt$round > 1,])
summary(fit.success)
fit.complete <- glmer(copy ~ round + condition +
female +
svo.group +
young + skill + belief.choice +
(1|session/player),
family=binomial(),
control=glmerControl(optimizer="bobyqa"),
data=p1pramt[p1pramt$round > 1 &
p1pramt$svo.group %in% c("Prosocial", "Individualistic"),])
summary(fit.complete)
texreg(list(fit.all, fit.svo, fit.young, fit.skill, fit.belief, fit.female, fit.complete))