-
Notifications
You must be signed in to change notification settings - Fork 0
/
codebook.py
156 lines (150 loc) · 4.08 KB
/
codebook.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
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
#TODO: cross reference excel codebook for latest version
codebook = {
'journal': {
0: 'Journal of Applied Psychology',
1: 'Personnel Psychology',
2: 'Academy of Management Journal',
3: 'Organizational Research Methods',
4: 'Journal of Management',
5: 'Organizational Behavior and Human Decision Processes',
6: 'Journal of Organizational Behavior',
7: 'The Leadership Quarterly',
8: 'Journal of Occupational Health Psychology',
9: 'Journal of Vocational Behavior',
10: 'Journal of Business and Psychology',
11: 'Journal of Occupational and Organizational Psychology',
12: 'Educational and Psychological Measurement',
13: 'Journal of Applied Social Psychology',
14: 'Academy of Management Learning and Education',
15: 'International Journal of Selection and Assessment',
16: 'European Journal of Work and Organizational Psychology',
17: 'Human Performance',
18: 'Human Relations',
19: 'Personality and Individual Differences',
20: 'Applied Psychology: An International Review',
21: 'Work & Stress',
22: 'Group and Organization Management',
23: 'Journal of Personnel Psychology',
24: 'Journal of Managerial Psychology',
25: 'Dissertations'
},
'sample_source': {
-1: 'unspecified',
0: 'student',
1: 'employee_working_adult',
2: 'student_employee',
3: 'other_mixture'
},
'sample_recruitment': {
-1: 'unspecified',
0: 'university platform',
1: 'crowdsource platform',
2: 'workplace',
3: 'social media',
4: 'listserv',
5: 'mixture',
6: 'other'
},
'sample_method': {
-1: 'unspecified',
0: 'random',
1: 'conveniance',
2: 'snowball'
},
'sample_platform': {
-1: 'unspecified',
0: 'mturk',
1: 'qualtrics',
2: 'prolific',
3: 'university platform',
4: 'mixture',
5: 'other'
},
'sample_mturk': {
-1: 'unspecified/NA',
0: 'master',
1: 'non-master'
},
'sample_level': {
-1: 'unspecified',
0: 'undergraduate',
1: 'graduate',
2: 'non_managerial',
3: 'managerial',
4: 'mixture',
5: 'faculty'
},
'sample_incentive': {
-1: 'unspecified',
0: 'none',
1: 'course credit',
2: 'financial',
3: 'raffle',
4: 'results_feedback',
5: 'mixture',
6: 'training'
},
'sample_country': {
-1: 'unspecified',
0: 'north america',
1: 'international mixture',
2: 'UK',
3: 'Germany',
4: 'Nigeria',
5: 'Israel',
6: 'India'
},
'cr_multiple': {
0: 'no',
1: 'yes'
},
'cr_sequential': {
-1: 'NA',
0: 'no',
1: 'yes'
},
'cr_method': {
-1: '',
0: 'instructed response items',
1: 'response time',
2: 'avg longstring',
3: 'max longstring',
4: 'mahalanobis D',
5: 'univariate outlier',
6: 'SRSI use me',
7: 'SRSI effort',
8: 'SRSI attention',
9: 'even-odd consistency',
10: 'PsySyn',
11: 'PsyAnt',
12: 'Bogus items',
13: 'unspecified attention check item',
14: 'unspecified longstring',
15: 'inter-item sd',
16: 'person-total correlation'
},
'cr_method_type': {
'response_time': [1],
'outlier_analysis': [4, 5],
'attention_check_items': [0, 12, 13],
'consistency_indices': [9, 10, 11, 15, 16],
'response_pattern': [2, 3, 14],
'self_reported': [6, 7, 8]
},
'design_time': {
-1: '',
0: 'cross-sectional',
1: 'repeated measures'
},
'design_method': {
-1: '',
0: 'observational',
1: 'experimental'
},
'design_location': {
-1: '',
0: 'online',
1: 'in-person',
2: 'mixture'
}
}