-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodebook.r
More file actions
330 lines (313 loc) · 7.52 KB
/
codebook.r
File metadata and controls
330 lines (313 loc) · 7.52 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
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
colors_user <- c(
"Kristina Little, MD" = "#1f3c7b",
"Thomas Cudjoe, MD, MPH" = "#f3c300",
"Maria Yefimova, Phd, MS" = "#052049",
"Marianthe Grammas, MD" = "#006242",
"Debbie Freeland, MD" = "#00b6f1",
"Julia Hiner, MD" = "#4e738a",
"Faith Atai, MD" = "#ae6042"
)
colors_institution <- c(
"Baylor College of Medicine - BT House Calls" = "#1f3c7b",
"Johns Hopkins - JHOME" = "#f3c300",
"UCSF - Care at Home" = "#052049",
"University of Alabama - UAB House Calls" = "#006242",
"UT Southwestern - COVE" = "#00b6f1",
"UTH Houston - LBJ House Calls" = "#4e738a",
"UTH Houston - UT Physicians House Calls" = "#ae6042"
)
user <- data.frame(
site_champ = c(51, 71, 61, 11, 31, 41, 21, 99),
site_champ_label = c(
"Debbie Freeland, MD",
"Faith Atai, MD",
"Julia Hiner, MD",
"Kristina Little, MD",
"Maria Yefimova, Phd, MS",
"Marianthe Grammas, MD",
"Thomas Cudjoe, MD, MPH",
"Not listed"
)
)
institution <- data.frame(
institution = c(1, 2, 3, 4, 5, 6, 7),
institution_label = c(
"Baylor College of Medicine - BT House Calls",
"Johns Hopkins - JHOME",
"UCSF - Care at Home",
"University of Alabama - UAB House Calls",
"UT Southwestern - COVE",
"UTH Houston - LBJ House Calls",
"UTH Houston - UT Physicians House Calls"
)
)
gender <- data.frame(
gender = c(1, 2, 98, 77),
gender_label = c(
"Male",
"Female",
"Other",
"Unknown"
)
)
race <- data.frame(
race = c(1, 2, 3, 4, 5, 98, 99),
race_label = c(
"American Indian or Alaskan Native",
"Asian",
"Black or African American",
"Native Hawaiian or Pacific Islander",
"White",
"Other",
"Unknown"
)
)
hispanic <- data.frame(
hispanic = c(1, 0, 77),
hispanic_label = c("Yes", "No", "Unknown")
)
rel_status <- data.frame(
rel_status = c(1, 2, 3, 4, 5, 6, 98, 77),
rel_status_label = c(
"Married",
"Living together and unmarried/Common Law relationship",
"Separated",
"Divorced",
"Widowed",
"Single/Never Married",
"Other",
"Unknown"
)
)
reason <- data.frame(
reason = c(1, 2, 3, 4, 5, 6, 98),
reason_label = c(
"New patient to establish care",
"New patient for home safety evaluation",
"New patient for transition of care",
"Return patient for acute concern only",
"Return patient for chronic concern only",
"Return patient for acute and chronic concerns",
"Not listed"
)
)
cog_imp <- data.frame(
cog_imp = c(0, 1, 2, 77),
cog_imp_label = c(
"No diagnosis",
"Diagnosis of mild cognitive impairment",
"Diagnosis of dementia",
"Unknown"
)
)
func_status <- data.frame(
func_status = c(1, 2, 3, 4, 5, 98, 77),
func_status_label = c(
"Ambulates without assistance",
"Ambulates with assistance of others",
"Uses assistive device",
"Wheelchair bound",
"Bed bound",
"Other",
"Unknown"
)
)
bcm_clinician <- data.frame(
clinician_id = c(101, 102, 103, 109, 104, 105, 106, 107, 108, 198),
clinician_name = c(
"Allison Dobecka, NP",
"Anita Major, MD",
"Elizabeth Brierre, NP",
"Julia Prentiss, NP",
"Kim Johnson, NP",
"Kristina Little, MD",
"Luz Verma, MD",
"Sarah Selleck, MD",
"Tolu Awolaja, NP",
"Not listed"
),
clinician_randomized = c(0, 0, 1, 0, 0, 1, 0, 0, 0, 0)
)
jh_clinician <- data.frame(
clinician_id = c(
201,
202,
203,
204,
205,
206,
207,
208,
209,
210,
211,
212,
298
),
clinician_name = c(
"Amy Kilen, CRNP",
"Angela Davis, CPC-1",
"Charde Thomas, CPC-1",
"Danielle Stewart, CHW",
"Elizabeth (Liddy) Logan, RN",
"Erin Hudson, CHW",
"Mariah Robertson, MD",
"Mary (Mae) Ellen Koontz, RN",
"Mattan Schuchman, MD",
"Melissa Lantz-Garnish, RN",
"Michael Kingan, DNP",
"Thomas Cudjoe, MD, MPH",
"Not listed"
),
clinician_randomized = c(0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0)
)
ucsf_clinician <- data.frame(
clinician_id = c(
301,
302,
303,
304,
305,
317,
306,
307,
308,
309,
318,
310,
311,
312,
319,
320,
313,
314,
315,
316,
398
),
clinician_name = c(
"Courtney Gordon, DNP",
"Daniel Gordon, NP",
"Deepa Dharmarajan, MD",
"Eddie Lam, MD, MPH",
"Helen Horvath, NP, MSN",
"Jamie Rosenthal, MD",
"Josette Rivera, MD",
"Maria Yefimova, PhD, MS",
"Marisa Guardado, LCSW",
"Michael Harper, MD",
"Monica Cheng, MD",
"Raymond Wong, MSW",
"Rebecca Conant, MD",
"Robbie Zimbroff, MD",
"Rodrigo Mojica Castillo, MD",
"Stacy Han, MD",
"Scott Tamblin, NP",
"Simone Chou, RN",
"Tamika Bailey, MD",
"Tom Baker, RN",
"Not listed"
),
clinician_randomized = c(
1,
0,
1,
0,
0,
0,
1,
0,
0,
0,
1,
0,
1,
1,
0,
1,
1,
0,
0,
0,
0
)
)
uab_clinician <- data.frame(
clinician_id = c(401, 402, 403, 404, 405, 406, 407, 408, 498),
clinician_name = c(
"Amber Teter, RN",
"Jessica Nix, LICSW",
"Katelyn Wilcoxon, RN",
"Linda G. Jones, CRNP",
"Lydia Casey, CRNP",
"Marianthe Grammas, MD",
"Meghan Peralta, CRNP",
"Trestalyn Grimes, CM",
"Not listed"
),
clinician_randomized = c(0, 1, 1, 0, 1, 1, 0, 0, 0)
)
utsw_clinician <- data.frame(
clinician_id = c(501, 502, 503, 504, 507, 505, 506, 508, 598),
clinician_name = c(
"Anupama Gangavati, MD",
"Cara Neagoe, NP",
"Debbie Freeland, MD",
"Eunice Opande, NP",
"Kayla Clark, MSW",
"Mihoko Abegunde, NP",
"Namirah Jamshed, MD",
"Rincy Thomas, NP",
"Not listed"
),
clinician_randomized = c(0, 0, 1, 0, 0, 1, 1, 1, 0)
)
lbj_clinician <- data.frame(
clinician_id = c(
601,
602,
603,
604,
605,
606,
607,
608,
609,
610,
614,
611,
612,
613,
698
),
clinician_name = c(
"Grace Akwari, NP",
"Latrell Darwin, NP",
"Edna Garcia, NP",
"Julia Hiner, MD",
"Jessica Lee, MD",
"Delphine Mepewou, NP",
"Delma Montoya-Monge, MD",
"Cristina Murdock, MD",
"Theclar Omeh, NP",
"Lillian Onyemelukwe, NP",
"Soraira Pacheco, DO, MS",
"Linda Pang, MD",
"Nadia Salas, NP",
"Ifeoma Umeh, NP",
"Not listed"
),
clinician_randomized = c(1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0)
)
utp_clinician <- data.frame(
clinician_id = c(701, 702, 703, 704, 705, 798),
clinician_name = c(
"Faith Atai, MD",
"Maureen Beck, DNP",
"Shuyan Bi, NP",
"Candace Johnson, NP",
"Mona Patel, NP",
"Not listed"
),
clinician_randomized = c(1, 1, 0, 1, 0, 0)
)