-
Notifications
You must be signed in to change notification settings - Fork 2
/
config_leex_1.py
95 lines (63 loc) · 1.82 KB
/
config_leex_1.py
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
# CONFIG PARAMETERS LEEX EXPERIMENTS SET 2017
# Prelims
paid_game_display = {
'ultimatum': 'Bloque UG',
'public_goods': 'Bloque PG',
'trust': 'Bloque TG',
'guess_two_thirds': 'Bloque BC',
}
# GAME PARAMETERS
# GAME ORDER. Change every session!
app_sequence = ['public_goods', 'trust', 'ultimatum', 'guess_two_thirds', 'payment_info', 'survey']
#
# participation_fee (soles)
participation_fee = 5
# # ultimatum game params
UG_number_rounds = 10
UG_endowment = 20
#
# # public goods params
PG_number_rounds = 10
PG_endowment = 8
#
# # trust game
TG_number_rounds = 10
TG_endowment = 8
#
# # guessing game
BC_number_rounds = 10
BC_jackpot = 20
# paid_game in ['ultimatum', 'public_goods', 'trust', 'guess_two_thirds']
paid_game = 'trust'
paid_round = 5
##################################################################################
# Order Record
# Setp 6 at 1pm:
# ['ultimatum', 'public_goods', 'trust', 'guess_two_thirds', 'payment_info', 'survey']
# paid: PG, t=2
# Setp 6 at 5pm:
# ['public_goods', 'trust', 'ultimatum', 'guess_two_thirds', 'payment_info', 'survey']
# paid: UG, t=5
##################################################################################
## TESTING PARAMS GAME PARAMETERS
# GAME ORDER. Change every session!
#app_sequence = [ 'ultimatum', 'trust', 'payment_info', 'survey']
#
# participation_fee (soles)
#participation_fee = 5
#num_testing_rounds = 2
# ultimatum game params
#UG_number_rounds = num_testing_rounds
#UG_endowment = 20
# public goods params
#PG_number_rounds = num_testing_rounds
#PG_endowment = 8
# trust game
#TG_number_rounds = num_testing_rounds
#TG_endowment = 8
# guessing game
#BC_number_rounds = num_testing_rounds
#BC_jackpot = 20
# # paid_game must live in ['ultimatum', 'public_goods', 'trust', 'guess_two_thirds']
#paid_game = 'ultimatum'
#paid_round = 2