forked from HimesGroup/BMIN503_Final_Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathload_data.R
3190 lines (3143 loc) · 285 KB
/
load_data.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
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
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
library(Hmisc)
library(feather)
if (refresh){
load_demo_data <- function(csv){
data=read.csv(csv)
label(data$record_id)="Record ID"
label(data$redcap_repeat_instrument)="Repeat Instrument"
label(data$redcap_repeat_instance)="Repeat Instance"
label(data$visit_dt)="Visit Date"
label(data$prov_nm)="Provider name"
label(data$nt_auth)="Note author"
label(data$pat_id)="Patient ID"
label(data$mrn)="Medical Record Number"
label(data$last_name)="Patients Last Name"
label(data$first_name)="Patients First Name"
label(data$dob)="Patients Birth Date: "
label(data$gender)="Gender"
label(data$age)="Age"
label(data$weight)="Weight in kilograms"
label(data$ethnicity)="Patients Ethnicity:"
label(data$race)="Patients Race Category:"
label(data$pt_ha_quest_yn)="Did the patient fill out the Headache Questionnaire form?"
label(data$prov_ha_quest_yn)="Did the provider fill out the Headache Questionnaire form?"
label(data$prov_action)="Actions taken for the patient answers"
label(data$prob_fill_form_yn)="NEURO WEL HEADACHE - problem with form"
label(data$prob_fill_form_oth)="NEURO WEL HEADACHE - problem with form (comments)"
label(data$pt_ha_quest_compl_yn)="Did the patient completed the Headache Questionnaire form? (p_current_ha_pattern is filled)"
label(data$demographics_complete)="Complete?"
#Setting Units
#Setting Factors(will create new variable for factors)
data$redcap_repeat_instrument.factor = factor(data$redcap_repeat_instrument,levels=c("visit_diagnoses","lab","prior_labs","all_problems","imaging"))
data$gender.factor = factor(data$gender,levels=c("1","2","99"))
data$ethnicity.factor = factor(data$ethnicity,levels=c("hisp","no_hisp","unk","no_answer"))
data$race.factor = factor(data$race,levels=c("am_indian","asian","black","pacific_island","white","multi","unk","no_answer"))
data$pt_ha_quest_yn.factor = factor(data$pt_ha_quest_yn,levels=c("1","0"))
data$prov_ha_quest_yn.factor = factor(data$prov_ha_quest_yn,levels=c("1","0"))
data$prov_action.factor = factor(data$prov_action,levels=c("1","2","3"))
data$prob_fill_form_yn.factor = factor(data$prob_fill_form_yn,levels=c("0","1","99"))
data$pt_ha_quest_compl_yn.factor = factor(data$pt_ha_quest_compl_yn,levels=c("0","1"))
data$demographics_complete.factor = factor(data$demographics_complete,levels=c("0","1","2"))
levels(data$redcap_repeat_instrument.factor)=c("Visit Diagnoses","Lab","Prior Labs","All Problems","Imaging")
levels(data$gender.factor)=c("Female","Male","Unknown")
levels(data$ethnicity.factor)=c("Hispanic or Latino","Not Hispanic or Latino","Dont know","Prefer not to answer")
levels(data$race.factor)=c("American Indian or Alaska Native","Asian","Black or African-American","Native Hawaiian or Other Pacific Islander","White","Multiple Races","Dont know","Prefer not to answer")
levels(data$pt_ha_quest_yn.factor)=c("Yes","No")
levels(data$prov_ha_quest_yn.factor)=c("Yes","No")
levels(data$prov_action.factor)=c("Accept","Reject","Remove")
levels(data$prob_fill_form_yn.factor)=c("No","Yes","Comments")
levels(data$pt_ha_quest_compl_yn.factor)=c("No","Yes")
levels(data$demographics_complete.factor)=c("Incomplete","Unverified","Complete")
return(data)
}
load_ha_data <- function(csv) {
#Read Data
data=read.csv(csv)
#Setting Labels
label(data$record_id)="Record ID"
label(data$redcap_repeat_instrument)="Repeat Instrument"
label(data$redcap_repeat_instance)="Repeat Instance"
label(data$relation___mom)="What is your relationship to the patient? (choice=Mother)"
label(data$relation___dad)="What is your relationship to the patient? (choice=Father)"
label(data$relation___self)="What is your relationship to the patient? (choice=Self (I am the patient))"
label(data$relation___interpret)="What is your relationship to the patient? (choice=Interpreter assisted)"
label(data$relation___m_grandma)="What is your relationship to the patient? (choice=Maternal Grandmother)"
label(data$relation___m_grandpa)="What is your relationship to the patient? (choice=Maternal Grandfather)"
label(data$relation___p_grandma)="What is your relationship to the patient? (choice=Paternal Grandmother)"
label(data$relation___p_grandpa)="What is your relationship to the patient? (choice=Paternal Grandfather)"
label(data$relation___aunt_unc)="What is your relationship to the patient? (choice=Aunt or Uncle)"
label(data$relation___stepma)="What is your relationship to the patient? (choice=Stepmother)"
label(data$relation___steppa)="What is your relationship to the patient? (choice=Stepfather)"
label(data$relation___guard)="What is your relationship to the patient? (choice=Gaurdian)"
label(data$relation___fosterma)="What is your relationship to the patient? (choice=Foster Mother)"
label(data$relation___fosterpa)="What is your relationship to the patient? (choice=Foster Father)"
label(data$relation___provider)="What is your relationship to the patient? (choice=Childcare provider)"
label(data$relation___facility)="What is your relationship to the patient? (choice=Residential Facility Staff)"
label(data$relation___oth)="What is your relationship to the patient? (choice=Other)"
label(data$p_prov_seen___none)="Have you seen other health care providers for headaches and related conditions? (choice=None)"
label(data$p_prov_seen___pcp)="Have you seen other health care providers for headaches and related conditions? (choice=Primary Care Clinician)"
label(data$p_prov_seen___neuro)="Have you seen other health care providers for headaches and related conditions? (choice=Neurologist)"
label(data$p_prov_seen___eye)="Have you seen other health care providers for headaches and related conditions? (choice=Eye doctor)"
label(data$p_prov_seen___ent)="Have you seen other health care providers for headaches and related conditions? (choice=Ear, Nose, Throat (ENT))"
label(data$p_prov_seen___allergy)="Have you seen other health care providers for headaches and related conditions? (choice=Allergist)"
label(data$p_prov_seen___conc)="Have you seen other health care providers for headaches and related conditions? (choice=concion or Sports Medicine)"
label(data$p_prov_seen___nsg)="Have you seen other health care providers for headaches and related conditions? (choice=Neurosurgeon)"
label(data$p_prov_seen___gi)="Have you seen other health care providers for headaches and related conditions? (choice=Gastroenterologist)"
label(data$p_prov_seen___osteo)="Have you seen other health care providers for headaches and related conditions? (choice=Osteopathic/Integrative Doctor)"
label(data$p_prov_seen___onco)="Have you seen other health care providers for headaches and related conditions? (choice=Oncologist)"
label(data$p_prov_seen___cardio)="Have you seen other health care providers for headaches and related conditions? (choice=Cardiologist)"
label(data$p_prov_seen___psych)="Have you seen other health care providers for headaches and related conditions? (choice=Psychiatrist)"
label(data$p_prov_seen___psychol)="Have you seen other health care providers for headaches and related conditions? (choice=psychologist)"
label(data$p_prov_seen___couns)="Have you seen other health care providers for headaches and related conditions? (choice=Counselor)"
label(data$p_prov_seen___ed)="Have you seen other health care providers for headaches and related conditions? (choice=Emergency Department)"
label(data$p_prov_seen___oth)="Have you seen other health care providers for headaches and related conditions? (choice=Other)"
label(data$p_stud_eval___none)="Have any tests been performed? (choice=None)"
label(data$p_stud_eval___brain)="Have any tests been performed? (choice=MRI of Brain)"
label(data$p_stud_eval___spine)="Have any tests been performed? (choice=MRI of Spine)"
label(data$p_stud_eval___ct)="Have any tests been performed? (choice=CT of Brain)"
label(data$p_stud_eval___eeg)="Have any tests been performed? (choice=EEG (brain wave test))"
label(data$p_stud_eval___emg)="Have any tests been performed? (choice=EMG (muscle/nerve test))"
label(data$p_stud_eval___genetic)="Have any tests been performed? (choice=Genetic Testing)"
label(data$p_stud_eval___lp)="Have any tests been performed? (choice=Lumbar Puncture/Spinal tap)"
label(data$p_stud_eval___npsych)="Have any tests been performed? (choice=Neuropsych Testing)"
label(data$p_stud_eval___metabolic)="Have any tests been performed? (choice=Metabolic Disorders testing)"
label(data$p_stud_eval___blood)="Have any tests been performed? (choice=Blood Work)"
label(data$p_stud_eval___notsure)="Have any tests been performed? (choice=Not sure)"
label(data$p_stud_eval___oth)="Have any tests been performed? (choice=Other)"
label(data$p_age_first_ha)="How old were you when you had your first headache? We are asking about any headaches, not just the bad or recent ones."
label(data$p_ha_in_lifetime)="How many headaches have you had in your lifetime?"
label(data$p_current_ha_pattern)="What is the current pattern of your headaches?"
label(data$p_epi_prec___none)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=None)"
label(data$p_epi_prec___conc)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Head trauma or concussion)"
label(data$p_epi_prec___oth_inj)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Other injury)"
label(data$p_epi_prec___sxg)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Surgery)"
label(data$p_epi_prec___infect)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Infection)"
label(data$p_epi_prec___oth_ill)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Other illness)"
label(data$p_epi_prec___mens)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Menstrual periods started)"
label(data$p_epi_prec___stress)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Stressful life event)"
label(data$p_epi_prec___oth)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Other)"
label(data$p_epi_conc_date)="On what date(s) did your concussion/trauma occur?"
label(data$p_epi_pattern_change___often)="Have any of the following happened recently? (choice=Headaches come more often than they used to)"
label(data$p_epi_pattern_change___longer)="Have any of the following happened recently? (choice=Headaches last longer than they used to)"
label(data$p_epi_pattern_change___none)="Have any of the following happened recently? (choice=No recent change in headache pattern.)"
label(data$p_epi_inc_fre_prec___none)="Did anything happen around the time your headaches became more freuent? (choice=None)"
label(data$p_epi_inc_fre_prec___conc)="Did anything happen around the time your headaches became more freuent? (choice=Head trauma or concussion)"
label(data$p_epi_inc_fre_prec___oth_inj)="Did anything happen around the time your headaches became more freuent? (choice=Other injury)"
label(data$p_epi_inc_fre_prec___sxg)="Did anything happen around the time your headaches became more freuent? (choice=Surgery)"
label(data$p_epi_inc_fre_prec___infect)="Did anything happen around the time your headaches became more freuent? (choice=Infection)"
label(data$p_epi_inc_fre_prec___oth_ill)="Did anything happen around the time your headaches became more freuent? (choice=Other illness)"
label(data$p_epi_inc_fre_prec___mens)="Did anything happen around the time your headaches became more freuent? (choice=Menstrual periods started)"
label(data$p_epi_inc_fre_prec___stress)="Did anything happen around the time your headaches became more freuent? (choice=Stressful life event)"
label(data$p_epi_inc_fre_prec___oth)="Did anything happen around the time your headaches became more freuent? (choice=Other)"
label(data$p_epi_inc_fre_time)="Over how much time did the headaches become more frequent?"
label(data$p_epi_fre)="How often are the headaches now?"
label(data$p_epi_fre_dur)="For how long have the headaches been more than 3 days per week?"
label(data$p_pattern_to_con)="How did the pain get to this pattern where there is at least some headache all the time?"
label(data$p_con_st_epi_prec_ep___none)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=None)"
label(data$p_con_st_epi_prec_ep___conc)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Head trauma or concussion)"
label(data$p_con_st_epi_prec_ep___oth_inj)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Other injury)"
label(data$p_con_st_epi_prec_ep___sxg)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Surgery)"
label(data$p_con_st_epi_prec_ep___infect)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Infection)"
label(data$p_con_st_epi_prec_ep___oth_ill)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Other illness)"
label(data$p_con_st_epi_prec_ep___mens)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Menstrual periods started)"
label(data$p_con_st_epi_prec_ep___stress)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Stressful life event)"
label(data$p_con_st_epi_prec_ep___oth)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Other)"
label(data$p_con_prec___none)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=None)"
label(data$p_con_prec___conc)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=Head trauma or concussion)"
label(data$p_con_prec___oth_inj)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=Other injury)"
label(data$p_con_prec___sxg)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=Surgery)"
label(data$p_con_prec___infect)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=Infection)"
label(data$p_con_prec___oth_ill)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=Other illness)"
label(data$p_con_prec___mens)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=Menstrual periods started)"
label(data$p_con_prec___stress)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=Stressful life event)"
label(data$p_con_prec___oth)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=Other)"
label(data$p_con_conc_date)="On what date(s) did your concussion/trauma occur?"
label(data$p_con_start_epi_time)="How long did it take to go from infreuent headaches (1 time per week or less) to constant headache? In other words, how much time passed between the 2 arrows?"
label(data$p_con_pattern_duration)="For approximately how long have you had a constant headache?"
label(data$p_con_start_date)="When?"
label(data$p_con_start_age)="If you do not know exactly when your constant headache started, about how old were you when the constant headache began? "
label(data$p_fre_bad)="How often do the headaches get in the way of what you want to do?"
label(data$p_timing___none)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=No)"
label(data$p_timing___wake)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=waking up)"
label(data$p_timing___morning)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=morning)"
label(data$p_timing___noon)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=afternoon)"
label(data$p_timing___evening)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=evening)"
label(data$p_timing___night)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=night)"
label(data$p_timing___sleep)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=while asleep)"
label(data$p_timing___spring)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=spring)"
label(data$p_timing___summer)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=summer)"
label(data$p_timing___fall)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=fall)"
label(data$p_timing___winter)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=winter)"
label(data$p_timing___mon)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=Monday)"
label(data$p_timing___tue)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=Tuesday)"
label(data$p_timing___wed)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=Wednesday)"
label(data$p_timing___thur)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=Thursday)"
label(data$p_timing___fri)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=Friday)"
label(data$p_timing___sat)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=Saturday)"
label(data$p_timing___sun)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=Sunday)"
label(data$p_timing_wake_up)="Do headaches wake you from sleep?"
label(data$p_ha_quality___throb)="Which of the following best describes your headache when it is very bad? (choice=Throbbing)"
label(data$p_ha_quality___pound)="Which of the following best describes your headache when it is very bad? (choice=Pounding)"
label(data$p_ha_quality___stab)="Which of the following best describes your headache when it is very bad? (choice=Stabbing)"
label(data$p_ha_quality___pushin)="Which of the following best describes your headache when it is very bad? (choice=Pressure pushing in (squeezing))"
label(data$p_ha_quality___pushout)="Which of the following best describes your headache when it is very bad? (choice=Pressure pushing out)"
label(data$p_ha_quality___dull)="Which of the following best describes your headache when it is very bad? (choice=Dull)"
label(data$p_ha_quality___burn)="Which of the following best describes your headache when it is very bad? (choice=Burning)"
label(data$p_ha_quality___sharp)="Which of the following best describes your headache when it is very bad? (choice=Sharp)"
label(data$p_ha_quality___tight)="Which of the following best describes your headache when it is very bad? (choice=Tightness)"
label(data$p_ha_quality___pinch)="Which of the following best describes your headache when it is very bad? (choice=Pinching)"
label(data$p_ha_quality___pulse)="Which of the following best describes your headache when it is very bad? (choice=Pulsating)"
label(data$p_ha_quality___cant_desc)="Which of the following best describes your headache when it is very bad? (choice=Unable to describe)"
label(data$p_ha_quality___oth)="Which of the following best describes your headache when it is very bad? (choice=Other)"
label(data$p_location_side___right)="On which side do you feel headache pain? (choice=Right side only)"
label(data$p_location_side___left)="On which side do you feel headache pain? (choice=Left side only)"
label(data$p_location_side___both)="On which side do you feel headache pain? (choice=Both sides at the same time)"
label(data$p_location_side___cant_desc)="On which side do you feel headache pain? (choice=Unable to describe)"
label(data$p_location_area___sides)="Where on your head do you feel pain? (choice=Temples/sides)"
label(data$p_location_area___front)="Where on your head do you feel pain? (choice=Front/Forehead)"
label(data$p_location_area___top)="Where on your head do you feel pain? (choice=Top)"
label(data$p_location_area___back)="Where on your head do you feel pain? (choice=Back of head)"
label(data$p_location_area___neck)="Where on your head do you feel pain? (choice=Neck)"
label(data$p_location_area___around)="Where on your head do you feel pain? (choice=Around eyes)"
label(data$p_location_area___behind)="Where on your head do you feel pain? (choice=Behind the eyes)"
label(data$p_location_area___allover)="Where on your head do you feel pain? (choice=All over)"
label(data$p_location_area___oth)="Where on your head do you feel pain? (choice=Other)"
label(data$p_location_area___cant_desc)="Where on your head do you feel pain? (choice=Unable to describe)"
label(data$p_sev_overall)="Overall, how bad are the headaches?"
label(data$p_sev_usual)="Your usual headache level:"
label(data$p_sev_morning)="Your headache when you first wake up, before you get out of bed:"
label(data$p_sev_hr_after_bed)="Your headache an hour after getting out of bed:"
label(data$p_sev_rate_rise)="When the pain goes up, how long does it take for the pain to get bad?"
label(data$p_sev_dur)="How long do bad headaches usually last?"
label(data$p_relief_sleep)="Do you want to sleep when you get a headache?"
label(data$p_relief___no)="Do any of the following make your headaches better? (choice=None)"
label(data$p_relief___ice)="Do any of the following make your headaches better? (choice=Ice)"
label(data$p_relief___heat)="Do any of the following make your headaches better? (choice=Heat)"
label(data$p_relief___sunglasses)="Do any of the following make your headaches better? (choice=Sunglasses)"
label(data$p_relief___caffeine)="Do any of the following make your headaches better? (choice=Caffeine)"
label(data$p_relief___quiet)="Do any of the following make your headaches better? (choice=Quiet)"
label(data$p_relief___lying_down)="Do any of the following make your headaches better? (choice=Lying down)"
label(data$p_relief___active)="Do any of the following make your headaches better? (choice=Staying active)"
label(data$p_relief___oth)="Do any of the following make your headaches better? (choice=Other)"
label(data$p_trigger___none)="Are there triggers that bring on headaches or make them worse? (choice=none)"
label(data$p_trigger___period)="Are there triggers that bring on headaches or make them worse? (choice=menstrual cycle)"
label(data$p_trigger___much_sleep)="Are there triggers that bring on headaches or make them worse? (choice=too much sleep)"
label(data$p_trigger___little_sleep)="Are there triggers that bring on headaches or make them worse? (choice=too little sleep)"
label(data$p_trigger___fatigue)="Are there triggers that bring on headaches or make them worse? (choice=fatigue)"
label(data$p_trigger___exercise)="Are there triggers that bring on headaches or make them worse? (choice=exercising)"
label(data$p_trigger___overheat)="Are there triggers that bring on headaches or make them worse? (choice=becoming overheated)"
label(data$p_trigger___dehyd)="Are there triggers that bring on headaches or make them worse? (choice=dehydration)"
label(data$p_trigger___skip_meals)="Are there triggers that bring on headaches or make them worse? (choice=skipping meals)"
label(data$p_trigger___food)="Are there triggers that bring on headaches or make them worse? (choice=specific foods)"
label(data$p_trigger___meds)="Are there triggers that bring on headaches or make them worse? (choice=medications)"
label(data$p_trigger___chew)="Are there triggers that bring on headaches or make them worse? (choice=chewing)"
label(data$p_trigger___stress)="Are there triggers that bring on headaches or make them worse? (choice=stress)"
label(data$p_trigger___let_down)="Are there triggers that bring on headaches or make them worse? (choice=stress let-down)"
label(data$p_trigger___screen)="Are there triggers that bring on headaches or make them worse? (choice=screen time)"
label(data$p_trigger___concentrate)="Are there triggers that bring on headaches or make them worse? (choice=concentration)"
label(data$p_trigger___read)="Are there triggers that bring on headaches or make them worse? (choice=reading)"
label(data$p_trigger___light)="Are there triggers that bring on headaches or make them worse? (choice=light)"
label(data$p_trigger___noises)="Are there triggers that bring on headaches or make them worse? (choice=noises)"
label(data$p_trigger___smells)="Are there triggers that bring on headaches or make them worse? (choice=smells)"
label(data$p_trigger___smoke)="Are there triggers that bring on headaches or make them worse? (choice=smoke)"
label(data$p_trigger___weather)="Are there triggers that bring on headaches or make them worse? (choice=weather)"
label(data$p_trigger___high_alt)="Are there triggers that bring on headaches or make them worse? (choice=higher altitude)"
label(data$p_trigger___oth)="Are there triggers that bring on headaches or make them worse? (choice=other)"
label(data$p_allodynia_hurt___none)="Do any of the following hurt? (choice=none)"
label(data$p_allodynia_hurt___ponytail)="Do any of the following hurt? (choice=wearing your hair in a ponytail)"
label(data$p_allodynia_hurt___comb)="Do any of the following hurt? (choice=combing or brushing your hair)"
label(data$p_allodynia_hurt___hat)="Do any of the following hurt? (choice=wearing a hat)"
label(data$p_allodynia_hurt___headphones)="Do any of the following hurt? (choice=wearing headphones)"
label(data$p_valsalva_position___none)="Do any of these make headaches much worse? (choice=none)"
label(data$p_valsalva_position___sneeze)="Do any of these make headaches much worse? (choice=sneezing)"
label(data$p_valsalva_position___cough)="Do any of these make headaches much worse? (choice=coughing)"
label(data$p_valsalva_position___laugh)="Do any of these make headaches much worse? (choice=laughing)"
label(data$p_valsalva_position___stand)="Do any of these make headaches much worse? (choice=standing up)"
label(data$p_valsalva_position___lie)="Do any of these make headaches much worse? (choice=lying down)"
label(data$p_valsalva_dur)="How long does the increased pain last?"
label(data$p_activity)="Does activity or playing impact headaches?"
label(data$p_assoc_sx_vis___none)="Changes in vision: (choice=None)"
label(data$p_assoc_sx_vis___spot)="Changes in vision: (choice=Spots)"
label(data$p_assoc_sx_vis___star)="Changes in vision: (choice=Stars)"
label(data$p_assoc_sx_vis___light)="Changes in vision: (choice=Lights)"
label(data$p_assoc_sx_vis___zigzag)="Changes in vision: (choice=Zigzag lines)"
label(data$p_assoc_sx_vis___blur)="Changes in vision: (choice=blurred vision)"
label(data$p_assoc_sx_vis___double_vis)="Changes in vision: (choice=Double vision)"
label(data$p_assoc_sx_vis___heat)="Changes in vision: (choice=Heat waves)"
label(data$p_assoc_sx_vis___loss_vis)="Changes in vision: (choice=Loss of vision)"
label(data$p_assoc_sx_vis___oth)="Changes in vision: (choice=Other)"
label(data$p_assoc_sx_vis___cant_desc)="Changes in vision: (choice=Unable to describe)"
label(data$p_assoc_sx_neur_bil___none)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=None)"
label(data$p_assoc_sx_neur_bil___weak)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Weakness)"
label(data$p_assoc_sx_neur_bil___numb)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Numbness)"
label(data$p_assoc_sx_neur_bil___tingle)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Tingling)"
label(data$p_assoc_sx_neur_bil___run_nose)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Runny nose)"
label(data$p_assoc_sx_neur_bil___tear)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Eye tearing)"
label(data$p_assoc_sx_neur_bil___ptosis)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Droopy eyelid)"
label(data$p_assoc_sx_neur_bil___red_eye)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Red eye)"
label(data$p_assoc_sx_neur_bil___puff_eye)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Puffy eyelid)"
label(data$p_assoc_sx_neur_bil___flush)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Forehead and facial flushing)"
label(data$p_assoc_sx_neur_bil___sweat)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Forehead and facial sweating)"
label(data$p_assoc_sx_neur_bil___full_ear)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Sensation of fullness in the ear)"
label(data$p_assoc_sx_neur_bil___oth)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Other)"
label(data$p_assoc_sx_neur_bil___)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=)"
label(data$p_assoc_sx_neur_uni___none)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=None)"
label(data$p_assoc_sx_neur_uni___weak)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Weakness)"
label(data$p_assoc_sx_neur_uni___numb)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Numbness)"
label(data$p_assoc_sx_neur_uni___tingle)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Tingling)"
label(data$p_assoc_sx_neur_uni___run_nose)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Runny nose)"
label(data$p_assoc_sx_neur_uni___tear)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Eye tearing)"
label(data$p_assoc_sx_neur_uni___ptosis)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Droopy eyelid)"
label(data$p_assoc_sx_neur_uni___red_eye)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Red eye)"
label(data$p_assoc_sx_neur_uni___puff_eye)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Puffy eyelid)"
label(data$p_assoc_sx_neur_uni___pupilbig)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=One pupilbig bigger than the other)"
label(data$p_assoc_sx_neur_uni___flush)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Forehead and facial flushing)"
label(data$p_assoc_sx_neur_uni___sweat)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Forehead and facial sweathing)"
label(data$p_assoc_sx_neur_uni___full_ear)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Sensation of fullness in the ear)"
label(data$p_assoc_sx_neur_uni___oth)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Other)"
label(data$p_assoc_sx_gi___none)="Stomach changes: (choice=none)"
label(data$p_assoc_sx_gi___decreased_app)="Stomach changes: (choice=decreased appetite)"
label(data$p_assoc_sx_gi___diarr)="Stomach changes: (choice=diarrhea)"
label(data$p_assoc_sx_gi___naus)="Stomach changes: (choice=nausea)"
label(data$p_assoc_sx_gi___stom_pain)="Stomach changes: (choice=stomach pain)"
label(data$p_assoc_sx_gi___vomiting)="Stomach changes: (choice=vomiting)"
label(data$p_assoc_sx_gi___oth)="Stomach changes: (choice=other)"
label(data$p_assoc_sx_oth_sx___none)="Other symptoms: (choice=None)"
label(data$p_assoc_sx_oth_sx___light)="Other symptoms: (choice=Sensitivity to light)"
label(data$p_assoc_sx_oth_sx___smell)="Other symptoms: (choice=Sensitivity to smells)"
label(data$p_assoc_sx_oth_sx___sound)="Other symptoms: (choice=Sensitivity to sounds)"
label(data$p_assoc_sx_oth_sx___lighthead)="Other symptoms: (choice=lightheadness)"
label(data$p_assoc_sx_oth_sx___spinning)="Other symptoms: (choice=Spinning sensation)"
label(data$p_assoc_sx_oth_sx___balance)="Other symptoms: (choice=Balance problems)"
label(data$p_assoc_sx_oth_sx___hear)="Other symptoms: (choice=Trouble hearing)"
label(data$p_assoc_sx_oth_sx___ringing)="Other symptoms: (choice=Ringing in ear)"
label(data$p_assoc_sx_oth_sx___unrespons)="Other symptoms: (choice=Unresponsive)"
label(data$p_assoc_sx_oth_sx___neck_pain)="Other symptoms: (choice=Neck pain or stiffness)"
label(data$p_assoc_sx_oth_sx___think)="Other symptoms: (choice=Trouble thinking)"
label(data$p_assoc_sx_oth_sx___talk)="Other symptoms: (choice=Trouble talking)"
label(data$p_assoc_sx_oth_sx___oth)="Other symptoms: (choice=Other)"
label(data$p_assoc_sx_pul_ear___none)="Do you ever hear your pulse in your ears (sounds like whoosh-whoosh-whoosh)? (choice=None)"
label(data$p_assoc_sx_pul_ear___standing)="Do you ever hear your pulse in your ears (sounds like whoosh-whoosh-whoosh)? (choice=When standing up)"
label(data$p_assoc_sx_pul_ear___lying)="Do you ever hear your pulse in your ears (sounds like whoosh-whoosh-whoosh)? (choice=When lying down or at night)"
label(data$p_assoc_sx_pul_ear___ha_bad)="Do you ever hear your pulse in your ears (sounds like whoosh-whoosh-whoosh)? (choice=When the headache is very bad)"
label(data$p_assoc_sx_pul_ear___oth)="Do you ever hear your pulse in your ears (sounds like whoosh-whoosh-whoosh)? (choice=Other times)"
label(data$p_midas_1)="On how many days in the last 3 months did you miss work or school because of your headaches?"
label(data$p_midas_2)="How many days in the last 3 months was your productivity at work or school reduced by half or more because of your headaches? (Do not include days you counted in question 1 where you missed work or school.)"
label(data$p_midas_3)="On how many days in the last 3 months did you not do household work (such as housework, home repairs and maintenance, caring for children and relatives) because of your headaches? "
label(data$p_midas_4)="How many days in the last 3 months was your productivity in household work reduced by half or more because of your headaches? (Do not include days you counted in question 3 where you did not do household work.)"
label(data$p_midas_5)="On how many days in the last 3 months did you miss family, social, or leisure activities because of your headaches?"
label(data$p_midas_score)="Total MIDAS Score"
label(data$p_pedmidas_1)="How many full school days of school were missed in the last 3 months due to headaches?"
label(data$p_pedmidas_2)="How many partial days of school were missed in the last 3 months due to headaches (do not include full days counted in the first question)?"
label(data$p_pedmidas_3)="How many days in the last 3 months did you function at less than half your ability in school because of a headache (do not include days counted in the first two questions)?"
label(data$p_pedmidas_4)="How many days were you not able to do things at home (i.e., chores, homework, etc.) due to a headache?"
label(data$p_pedmidas_5)="How many days did you not participate in other activities due to headaches (i.e., play, go out, sports, etc.)?"
label(data$p_pedmidas_6)="How many days did you participate in these activities, but functioned at less than half your ability (do not include days counted in the 5th question above)?"
label(data$p_pedmidas_score)="Total PedMIDAS Score"
label(data$p_med_stop_ha___none)="Medications to STOP headaches (choice=None)"
label(data$p_med_stop_ha___apap)="Medications to STOP headaches (choice=Acetaminophen (Tylenol))"
label(data$p_med_stop_ha___ibupro)="Medications to STOP headaches (choice=Ibuprofen (Motrin/Advil))"
label(data$p_med_stop_ha___naprox)="Medications to STOP headaches (choice=Naproxen (Aleve/Naprosyn))"
label(data$p_med_stop_ha___asp)="Medications to STOP headaches (choice=Aspirin)"
label(data$p_med_stop_ha___ketorolac)="Medications to STOP headaches (choice=Ketorolac (Toradol/Sprix))"
label(data$p_med_stop_ha___ketoprof)="Medications to STOP headaches (choice=Ketoprofen (Relafen))"
label(data$p_med_stop_ha___diclof)="Medications to STOP headaches (choice=Diclofenac (Voltaren))"
label(data$p_med_stop_ha___celec)="Medications to STOP headaches (choice=Celecoxib (Celebrex))"
label(data$p_med_stop_ha___exced)="Medications to STOP headaches (choice=Excedrin (Excedrin Migraine/Excedrin Tension))"
label(data$p_med_stop_ha___butal)="Medications to STOP headaches (choice=Butalbital (Fioricet/Fiorinal))"
label(data$p_med_stop_ha___midrin)="Medications to STOP headaches (choice=Midrin)"
label(data$p_med_stop_ha___methylpred)="Medications to STOP headaches (choice=Methylprednisolone (Medrol Pack))"
label(data$p_med_stop_ha___pred)="Medications to STOP headaches (choice=Prednisone/Prednisolone)"
label(data$p_med_stop_ha___suma)="Medications to STOP headaches (choice=Sumatriptan (Imitrex/Treximet))"
label(data$p_med_stop_ha___riza)="Medications to STOP headaches (choice=Rizatriptan (Maxalt))"
label(data$p_med_stop_ha___nara)="Medications to STOP headaches (choice=Naratriptan (Amerge))"
label(data$p_med_stop_ha___almo)="Medications to STOP headaches (choice=Almotriptan (Axert))"
label(data$p_med_stop_ha___frova)="Medications to STOP headaches (choice=Frovatriptan (Frova))"
label(data$p_med_stop_ha___eletrip)="Medications to STOP headaches (choice=Eletriptan (Relpax))"
label(data$p_med_stop_ha___zolmit)="Medications to STOP headaches (choice=Zolmitriptan (Zomig))"
label(data$p_med_stop_ha___metoclop)="Medications to STOP headaches (choice=Metoclopramide (Reglan))"
label(data$p_med_stop_ha___proch)="Medications to STOP headaches (choice=Prochlorperazine (Compazine))"
label(data$p_med_stop_ha___prometh)="Medications to STOP headaches (choice=Promethazine (Phenergan))"
label(data$p_med_stop_ha___ond)="Medications to STOP headaches (choice=Ondansetron (Zofran))"
label(data$p_med_stop_ha___diphen)="Medications to STOP headaches (choice=Diphenhydramine (Benadryl))"
label(data$p_med_stop_ha___dhe)="Medications to STOP headaches (choice=DHE (Migranal))"
label(data$p_med_stop_ha___tram)="Medications to STOP headaches (choice=Tramadol (Ultram/Ultracet))"
label(data$p_med_stop_ha___t3)="Medications to STOP headaches (choice=Tylenol #3/Tylenol with Codeine)"
label(data$p_med_stop_ha___morph)="Medications to STOP headaches (choice=Morphine)"
label(data$p_med_stop_ha___hydromor)="Medications to STOP headaches (choice=Hydromorphone (Dilaudid))"
label(data$p_med_stop_ha___nb)="Medications to STOP headaches (choice=Nerve block or Trigger Point Injection)"
label(data$p_med_stop_ha___oth)="Medications to STOP headaches (choice=Other)"
label(data$p_when_take_med)="When do you usually take the medication to stop a headache?"
label(data$p_how_oft_med)="How often do you take a medication to stop a headache?"
label(data$p_duration_overuse)="For how long have you been taking an acute medicine more than 3 days per week?"
label(data$p_med_prev_ha___none)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=None)"
label(data$p_med_prev_ha___acetaz)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Acetazolamide (Diamox))"
label(data$p_med_prev_ha___amitrip)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Amitriptyline (Elavil))"
label(data$p_med_prev_ha___ateno)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Atenolol (Tenormin))"
label(data$p_med_prev_ha___botox)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Botox injections)"
label(data$p_med_prev_ha___cefaly)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Cefaly device)"
label(data$p_med_prev_ha___cypro)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Cyproheptadine (Periactin))"
label(data$p_med_prev_ha___doxy)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Doxycycline)"
label(data$p_med_prev_ha___dulox)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Duloxetine (Cymbalta))"
label(data$p_med_prev_ha___fluox)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Fluoxetine (Prozac))"
label(data$p_med_prev_ha___gaba)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Gabapentin (Neurontin))"
label(data$p_med_prev_ha___lamotrig)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Lamotrigine (Lamictal))"
label(data$p_med_prev_ha___lisin)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Lisinopril (Zestril))"
label(data$p_med_prev_ha___lvt)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Levetiracetam (Keppra))"
label(data$p_med_prev_ha___metopro)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Metoprolol (Toprol))"
label(data$p_med_prev_ha___minocy)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Minocycline)"
label(data$p_med_prev_ha___nb)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Nerve block or Trigger point injections)"
label(data$p_med_prev_ha___nebivo)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Nebivolol (Bystolic))"
label(data$p_med_prev_ha___nortrip)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Nortriptyline (Pamelor))"
label(data$p_med_prev_ha___pregab)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Pregabalin (Lyrica))"
label(data$p_med_prev_ha___propano)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Propanolol (Inderal))"
label(data$p_med_prev_ha___sertra)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Sertraline (Zoloft))"
label(data$p_med_prev_ha___topa)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Topiramate (Topamax))"
label(data$p_med_prev_ha___vpa)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Valproic Acid (Depakote))"
label(data$p_med_prev_ha___venla)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Venlafaxine (Effexor))"
label(data$p_med_prev_ha___verap)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Verapamil (Calan))"
label(data$p_med_prev_ha___zonis)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Zonisamide (Zonegran))"
label(data$p_med_prev_ha___oth)="Prescribed treatments to PREVENT headaches or make the freuency or severity better (choice=Other)"
label(data$p_vit_sup_ha___none)="Vitamins and Supplements (choice=None)"
label(data$p_vit_sup_ha___vitb2)="Vitamins and Supplements (choice=Vitamin B2 (Riboflavin))"
label(data$p_vit_sup_ha___vitd)="Vitamins and Supplements (choice=Vitamin D)"
label(data$p_vit_sup_ha___mag)="Vitamins and Supplements (choice=Magnesium)"
label(data$p_vit_sup_ha___fishoil)="Vitamins and Supplements (choice=Fish Oil)"
label(data$p_vit_sup_ha___coenzq10)="Vitamins and Supplements (choice=CoEnzyme Q10)"
label(data$p_vit_sup_ha___feverfew)="Vitamins and Supplements (choice=Feverfew)"
label(data$p_vit_sup_ha___melatonin)="Vitamins and Supplements (choice=Melatonin)"
label(data$p_vit_sup_ha___butterbur)="Vitamins and Supplements (choice=Butterbur (Petadolex))"
label(data$p_vit_sup_ha___oth)="Vitamins and Supplements (choice=Other)"
label(data$p_non_med_trea_ha___none)="Non-Medication Treatments (choice=none)"
label(data$p_non_med_trea_ha___acupunc)="Non-Medication Treatments (choice=acupuncture)"
label(data$p_non_med_trea_ha___biofeed)="Non-Medication Treatments (choice=biofeedback)"
label(data$p_non_med_trea_ha___chirop)="Non-Medication Treatments (choice=chiropractic manipulation)"
label(data$p_non_med_trea_ha___counsel)="Non-Medication Treatments (choice=counseling or psychotherapy)"
label(data$p_non_med_trea_ha___exercise)="Non-Medication Treatments (choice=intensive exercise)"
label(data$p_non_med_trea_ha___massage)="Non-Medication Treatments (choice=massage therapy)"
label(data$p_non_med_trea_ha___ot)="Non-Medication Treatments (choice=occupational therapy)"
label(data$p_non_med_trea_ha___osteo)="Non-Medication Treatments (choice=osteopathic manipulation)"
label(data$p_non_med_trea_ha___pt)="Non-Medication Treatments (choice=physical therapy)"
label(data$p_non_med_trea_ha___vision)="Non-Medication Treatments (choice=vision therapy)"
label(data$p_non_med_trea_ha___oth)="Non-Medication Treatments (choice=other)"
label(data$p_iv_med_ha___none)="Intravenous (IV) or Intramuscular (IM) Medications: (choice=None)"
label(data$p_iv_med_ha___ketorolac)="Intravenous (IV) or Intramuscular (IM) Medications: (choice=Ketorolac (Toradol))"
label(data$p_iv_med_ha___metoclop)="Intravenous (IV) or Intramuscular (IM) Medications: (choice=Metoclopramide (Reglan))"
label(data$p_iv_med_ha___prochlor)="Intravenous (IV) or Intramuscular (IM) Medications: (choice=Prochlorperazine (Compazine))"
label(data$p_iv_med_ha___methylpred)="Intravenous (IV) or Intramuscular (IM) Medications: (choice=Methylprednisolone)"
label(data$p_iv_med_ha___dexameth)="Intravenous (IV) or Intramuscular (IM) Medications: (choice=Dexamethasone)"
label(data$p_iv_med_ha___mag)="Intravenous (IV) or Intramuscular (IM) Medications: (choice=Magnesium)"
label(data$p_iv_med_ha___vpa)="Intravenous (IV) or Intramuscular (IM) Medications: (choice=Valproic Acid (Depakote))"
label(data$p_iv_med_ha___diphen)="Intravenous (IV) or Intramuscular (IM) Medications: (choice=Diphenhydramine (Benadryl))"
label(data$p_iv_med_ha___opio)="Intravenous (IV) or Intramuscular (IM) Medications: (choice=Opioids (Morphine/Dilaudid))"
label(data$p_iv_med_ha___lvt)="Intravenous (IV) or Intramuscular (IM) Medications: (choice=Levetiracetam (Keppra))"
label(data$p_iv_med_ha___dhe)="Intravenous (IV) or Intramuscular (IM) Medications: (choice=DHE (Dihydroergotamine))"
label(data$p_iv_med_ha___ond)="Intravenous (IV) or Intramuscular (IM) Medications: (choice=Ondansetron (Zofran))"
label(data$p_iv_med_ha___oth)="Intravenous (IV) or Intramuscular (IM) Medications: (choice=Other)"
label(data$p_prob_preg_birth)="Were there complications during pregnancy, labor, or delivery?"
label(data$p_prob_preg_birth_yes)="If yes, please describe."
label(data$p_preg_full_term)="Was the patient born full term?"
label(data$p_birth_lbs)="Babys birth weight in pounds?"
label(data$p_birth_oz)="Babys birth weight in ounces?"
label(data$p_mom_age_delivery)="What was the age of the patients MOTHER at delivery?"
label(data$p_early_dev_concerns)="Have there been concerns about the patients development?"
label(data$p_lost_dev_skill)="Has the patient ever lost development skills?"
label(data$p_behav_diff)="Have you ever been concerned that the patient behaves very differently than other children his or her age?"
label(data$p_dom_hand)="Is the patient right handed or left handed?"
label(data$p_dom_hand_age)="How old was the patient when you were certain of this?"
label(data$p_hosp_overnt)="Has the patient ever been admitted overnight to a hospital?"
label(data$p_surgery)="Has the patient ever had surgery?"
label(data$p_surgery_yes)="If yes, please list the procedures."
label(data$p_immun_up_date)="Are immunizations up-to-date?"
label(data$p_overall_prob___none)="General: (choice=None)"
label(data$p_overall_prob___wt_loss)="General: (choice=Weight loss)"
label(data$p_overall_prob___wt_gain)="General: (choice=Weight gain)"
label(data$p_overall_prob___fever)="General: (choice=Fever)"
label(data$p_overall_prob___fatigue)="General: (choice=Tired all the time (fatigued))"
label(data$p_overall_prob___ftt)="General: (choice=Failure to thrive)"
label(data$p_overall_prob___oth)="General: (choice=Other)"
label(data$p_eye_prob___none)="Eyes: (choice=None)"
label(data$p_eye_prob___glasses)="Eyes: (choice=Wears glasses or contacts)"
label(data$p_eye_prob___outward_eyes)="Eyes: (choice=outward turning eye(s))"
label(data$p_eye_prob___inward_eyes)="Eyes: (choice=inward turning eye(s) (crossed eyes))"
label(data$p_eye_prob___eye_movt)="Eyes: (choice=eye movement problems)"
label(data$p_eye_prob___prob_seeing)="Eyes: (choice=problems seeing)"
label(data$p_eye_prob___blind)="Eyes: (choice=blindness)"
label(data$p_eye_prob___oth)="Eyes: (choice=Other)"
label(data$p_ent_prob___none)="Ear, Nose, Throat: (choice=None)"
label(data$p_ent_prob___hearing)="Ear, Nose, Throat: (choice=hearing problem)"
label(data$p_ent_prob___deafness)="Ear, Nose, Throat: (choice=deaf- ness)"
label(data$p_ent_prob___ear_infec)="Ear, Nose, Throat: (choice=ear infection)"
label(data$p_ent_prob___sinus_infec)="Ear, Nose, Throat: (choice=sinus infection)"
label(data$p_ent_prob___ringing)="Ear, Nose, Throat: (choice=ringing in ears)"
label(data$p_ent_prob___dizzy)="Ear, Nose, Throat: (choice=dizzi- ness)"
label(data$p_ent_prob___tracheo)="Ear, Nose, Throat: (choice=trache- ostomy)"
label(data$p_ent_prob___nose_bleed)="Ear, Nose, Throat: (choice=nose bleeds)"
label(data$p_ent_prob___mouth_sore)="Ear, Nose, Throat: (choice=mouth sores)"
label(data$p_ent_prob___oth)="Ear, Nose, Throat: (choice=Other)"
label(data$p_heart_prob___none)="Heart: (choice=None)"
label(data$p_heart_prob___murmur)="Heart: (choice=Murmur)"
label(data$p_heart_prob___chd)="Heart: (choice=Congenital Heart Disease)"
label(data$p_heart_prob___high_blood)="Heart: (choice=high blood pressure)"
label(data$p_heart_prob___faint)="Heart: (choice=fainting (syncope))"
label(data$p_heart_prob___irreg_beat)="Heart: (choice=irregular heartbeat)"
label(data$p_heart_prob___easy_tired)="Heart: (choice=easily tired with exercise)"
label(data$p_heart_prob___pots)="Heart: (choice=POTS)"
label(data$p_heart_prob___chest_pain)="Heart: (choice=chest pain/ pressure)"
label(data$p_heart_prob___oth)="Heart: (choice=Other)"
label(data$p_lung_prob___none)="Lungs: (choice=None)"
label(data$p_lung_prob___asthma)="Lungs: (choice=asthma)"
label(data$p_lung_prob___apnea)="Lungs: (choice=breathing pauses (apnea))"
label(data$p_lung_prob___pneum)="Lungs: (choice=pneumonia)"
label(data$p_lung_prob___cough)="Lungs: (choice=cough)"
label(data$p_lung_prob___sob)="Lungs: (choice=shortness of breath)"
label(data$p_lung_prob___cpap)="Lungs: (choice=CPAP/BiPAP)"
label(data$p_lung_prob___oth)="Lungs: (choice=Other)"
label(data$p_sleep_prob___none)="Sleep: (choice=None)"
label(data$p_sleep_prob___apnea)="Sleep: (choice=sleep apnea)"
label(data$p_sleep_prob___snore)="Sleep: (choice=loud snoring)"
label(data$p_sleep_prob___fall_asleep)="Sleep: (choice=trouble falling asleep)"
label(data$p_sleep_prob___stay_asleep)="Sleep: (choice=trouble staying asleep)"
label(data$p_sleep_prob___pm_terror)="Sleep: (choice=night terrors)"
label(data$p_sleep_prob___day_drowsy)="Sleep: (choice=drowsy in daytime)"
label(data$p_sleep_prob___oth)="Sleep: (choice=Other)"
label(data$p_gi_prob___none)="Abdomen: (choice=None)"
label(data$p_gi_prob___reflux)="Abdomen: (choice=Reflux (heartburn))"
label(data$p_gi_prob___nausea)="Abdomen: (choice=nausea)"
label(data$p_gi_prob___constipa)="Abdomen: (choice=Constipa- tion)"
label(data$p_gi_prob___diarrhea)="Abdomen: (choice=Diarrhea)"
label(data$p_gi_prob___abd_pain)="Abdomen: (choice=Stomach or abdominal pain)"
label(data$p_gi_prob___tube)="Abdomen: (choice=NG-tube, G-tube, J-tube)"
label(data$p_gi_prob___oth)="Abdomen: (choice=Other)"
label(data$p_gu_prob___none)="Urinary: (choice=None)"
label(data$p_gu_prob___kidney)="Urinary: (choice=Kidney problem)"
label(data$p_gu_prob___fre_uti)="Urinary: (choice=freuent urinary tract infection)"
label(data$p_gu_prob___urine_prob)="Urinary: (choice=Urinary problem)"
label(data$p_gu_prob___menstrual)="Urinary: (choice=Problems with menstrual period)"
label(data$p_gu_prob___enuresis)="Urinary: (choice=bedwetting)"
label(data$p_gu_prob___incont)="Urinary: (choice=daytime incontinence)"
label(data$p_gu_prob___oth)="Urinary: (choice=Other)"
label(data$p_musc_prob___none)="Musculoskeletal: (choice=None)"
label(data$p_musc_prob___joint_pain)="Musculoskeletal: (choice=Joint or muscle pain)"
label(data$p_musc_prob___neck_pain)="Musculoskeletal: (choice=Neck pain)"
label(data$p_musc_prob___back_pain)="Musculoskeletal: (choice=Back pain)"
label(data$p_musc_prob___scolio)="Musculoskeletal: (choice=Scoliosis)"
label(data$p_musc_prob___muscle_weak)="Musculoskeletal: (choice=Muscle weakness)"
label(data$p_musc_prob___osteopenia)="Musculoskeletal: (choice=Bone Density problem (osteopenia))"
label(data$p_musc_prob___oth)="Musculoskeletal: (choice=Other)"
label(data$p_skin_prob___none)="Skin: (choice=None)"
label(data$p_skin_prob___eczema)="Skin: (choice=Eczema)"
label(data$p_skin_prob___birthmark)="Skin: (choice=Birthmarks)"
label(data$p_skin_prob___rash)="Skin: (choice=Rash)"
label(data$p_skin_prob___acne)="Skin: (choice=Acne)"
label(data$p_skin_prob___oth)="Skin: (choice=Other)"
label(data$p_endo_prob___none)="Endocrine: (choice=None)"
label(data$p_endo_prob___thyroid)="Endocrine: (choice=Thyroid problems)"
label(data$p_endo_prob___diab)="Endocrine: (choice=Diabetes)"
label(data$p_endo_prob___grow_prob)="Endocrine: (choice=Growth problems)"
label(data$p_endo_prob___puberty)="Endocrine: (choice=early puberty)"
label(data$p_endo_prob___oth)="Endocrine: (choice=Other)"
label(data$p_hema_prob___none)="Hematology: (choice=None)"
label(data$p_hema_prob___sickle)="Hematology: (choice=Sickle cell disease or trait)"
label(data$p_hema_prob___anemia)="Hematology: (choice=Anemia)"
label(data$p_hema_prob___abnl_bleed)="Hematology: (choice=Blood clotting problems)"
label(data$p_hema_prob___bruise)="Hematology: (choice=Easy bruising)"
label(data$p_hema_prob___bleed)="Hematology: (choice=Easy bleeding)"
label(data$p_hema_prob___cancer)="Hematology: (choice=Cancer)"
label(data$p_hema_prob___oth)="Hematology: (choice=Other)"
label(data$p_hema_prob___)="Hematology: (choice=)"
label(data$p_immu_prob___none)="Immune: (choice=None)"
label(data$p_immu_prob___allergies)="Immune: (choice=Seasonal allergies)"
label(data$p_immu_prob___lupus)="Immune: (choice=lupus)"
label(data$p_immu_prob___arth)="Immune: (choice=Arthrities)"
label(data$p_immu_prob___imm_def)="Immune: (choice=Immuno- deficiency)"
label(data$p_immu_prob___fre_ill)="Immune: (choice=freuent illness)"
label(data$p_immu_prob___autoimmune)="Immune: (choice=Autoimmune disease)"
label(data$p_immu_prob___oth)="Immune: (choice=Other)"
label(data$p_psych_prob___none)="Behavioral Health (choice=None)"
label(data$p_psych_prob___adhd)="Behavioral Health (choice=Attention deficit disorder (ADHD or ADD))"
label(data$p_psych_prob___anxiety)="Behavioral Health (choice=Anxiety/ Panic attacks)"
label(data$p_psych_prob___depress)="Behavioral Health (choice=Depression)"
label(data$p_psych_prob___behavior)="Behavioral Health (choice=behavior problems)"
label(data$p_psych_prob___odd)="Behavioral Health (choice=Oppositional Defiant Disorder (ODD))"
label(data$p_psych_prob___ocd)="Behavioral Health (choice=Obsessive Compulsive Disorder (OCD))"
label(data$p_psych_prob___pdd)="Behavioral Health (choice=Autism Spectrum or PDD)"
label(data$p_psych_prob___sw)="Behavioral Health (choice=Social Worker Involved)"
label(data$p_psych_prob___psychol)="Behavioral Health (choice=Psychologist Involved)"
label(data$p_psych_prob___psychi)="Behavioral Health (choice=Psychiatrist involved)"
label(data$p_psych_prob___oth)="Behavioral Health (choice=Other)"
label(data$p_psych_prob___)="Behavioral Health (choice=)"
label(data$p_neur_prob___none)="Neurology: (choice=None)"
label(data$p_neur_prob___seiz_epil)="Neurology: (choice=Seizure(s) or epilepsy)"
label(data$p_neur_prob___ha)="Neurology: (choice=Headaches or migraines)"
label(data$p_neur_prob___tics)="Neurology: (choice=Tics)"
label(data$p_neur_prob___stroke)="Neurology: (choice=Stroke)"
label(data$p_neur_prob___learn)="Neurology: (choice=Learning problem(s))"
label(data$p_neur_prob___neuromus)="Neurology: (choice=Neuromuscular problem(s))"
label(data$p_neur_prob___devt_prob)="Neurology: (choice=Developmental problem(s))"
label(data$p_neur_prob___concentrate)="Neurology: (choice=Trouble concentrating)"
label(data$p_neur_prob___balance)="Neurology: (choice=Balance problem)"
label(data$p_neur_prob___mening)="Neurology: (choice=Meningitis)"
label(data$p_neur_prob___conc)="Neurology: (choice=Head Trauma or Concussion)"
label(data$p_neur_prob___enceph)="Neurology: (choice=Encephalitis)"
label(data$p_neur_prob___numb)="Neurology: (choice=Numbness/ tingling)"
label(data$p_neur_prob___motion_sick)="Neurology: (choice=Motion or Car Sickness)"
label(data$p_neur_prob___oth)="Neurology: (choice=Other)"
label(data$p_other_prob_spec)="Please describe any OTHER relevant health conditions that were not listed above. "
label(data$p_curr_interven___none)="Do you currently receive any intervention therapies? (choice=None)"
label(data$p_curr_interven___pt)="Do you currently receive any intervention therapies? (choice=PT)"
label(data$p_curr_interven___ot)="Do you currently receive any intervention therapies? (choice=OT)"
label(data$p_curr_interven___speech)="Do you currently receive any intervention therapies? (choice=Speech therapy)"
label(data$p_curr_interven___behavior)="Do you currently receive any intervention therapies? (choice=Behavior therapy)"
label(data$p_curr_interven___vision)="Do you currently receive any intervention therapies? (choice=Vision therapy)"
label(data$p_curr_interven___feeding)="Do you currently receive any intervention therapies? (choice=Feeding therapy)"
label(data$p_curr_interven___develop)="Do you currently receive any intervention therapies? (choice=Developmental therapy)"
label(data$p_past_interven___none)="In the PAST, have you received any intervention therapies? (choice=None)"
label(data$p_past_interven___pt)="In the PAST, have you received any intervention therapies? (choice=PT)"
label(data$p_past_interven___ot)="In the PAST, have you received any intervention therapies? (choice=OT)"
label(data$p_past_interven___speech)="In the PAST, have you received any intervention therapies? (choice=Speech therapy)"
label(data$p_past_interven___behavior)="In the PAST, have you received any intervention therapies? (choice=Behavior therapy)"
label(data$p_past_interven___vision)="In the PAST, have you received any intervention therapies? (choice=Vision therapy)"
label(data$p_past_interven___feeding)="In the PAST, have you received any intervention therapies? (choice=Feeding therapy)"
label(data$p_past_interven___develop)="In the PAST, have you received any intervention therapies? (choice=Developmental therapy)"
label(data$p_ha_psych_ques)="We have a headache psychologist who teaches pain coping strategies, which have been proven to help children and teens with headaches. She sees all new patients in the Multidisciplinary Headache Clinic and is available for all headache patients as schedule allows (but only at the main campus in Philadelphia). Behavioral health services are usually covered by insurance. Would you like to schedule an appointment with our psychologist?"
label(data$p_fam_hist_dev___none)="Does anyone in the patients family have these development problems? (choice=None)"
label(data$p_fam_hist_dev___devt_delay)="Does anyone in the patients family have these development problems? (choice=Development delay)"
label(data$p_fam_hist_dev___learn)="Does anyone in the patients family have these development problems? (choice=learning problems)"
label(data$p_fam_hist_dev___mental)="Does anyone in the patients family have these development problems? (choice=Mental Retardation)"
label(data$p_fam_hist_dev___autistic)="Does anyone in the patients family have these development problems? (choice=Autistic Spectrum Disorder)"
label(data$p_fam_hist_dev___oth)="Does anyone in the patients family have these development problems? (choice=Other development disorder)"
label(data$p_fam_hist_behav___none)="Does anyone in the patients family have these behavioral health problems? (choice=None)"
label(data$p_fam_hist_behav___add)="Does anyone in the patients family have these behavioral health problems? (choice=Attention Deficit Disorder (ADD, ADHD))"
label(data$p_fam_hist_behav___depress)="Does anyone in the patients family have these behavioral health problems? (choice=Depression)"
label(data$p_fam_hist_behav___anx)="Does anyone in the patients family have these behavioral health problems? (choice=Anxiety)"
label(data$p_fam_hist_behav___sub_abuse)="Does anyone in the patients family have these behavioral health problems? (choice=Substance abuse)"
label(data$p_fam_hist_behav___bipolar)="Does anyone in the patients family have these behavioral health problems? (choice=Bipolar disorder)"
label(data$p_fam_hist_behav___oth)="Does anyone in the patients family have these behavioral health problems? (choice=Other psychiatric/psychological problem)"
label(data$p_fam_hist_neuro___none)="Does anyone in the patients family have these neurologic problems? (choice=None)"
label(data$p_fam_hist_neuro___ha)="Does anyone in the patients family have these neurologic problems? (choice=Headaches)"
label(data$p_fam_hist_neuro___mig)="Does anyone in the patients family have these neurologic problems? (choice=Migraine Headache)"
label(data$p_fam_hist_neuro___seiz)="Does anyone in the patients family have these neurologic problems? (choice=Seizures)"
label(data$p_fam_hist_neuro___epi)="Does anyone in the patients family have these neurologic problems? (choice=Epilepsy)"
label(data$p_fam_hist_neuro___tics)="Does anyone in the patients family have these neurologic problems? (choice=Tics)"
label(data$p_fam_hist_neuro___tourette)="Does anyone in the patients family have these neurologic problems? (choice=Tourette Syndrome)"
label(data$p_fam_hist_neuro___ms)="Does anyone in the patients family have these neurologic problems? (choice=Multiple Sclerosis)"
label(data$p_fam_hist_neuro___neuromus)="Does anyone in the patients family have these neurologic problems? (choice=Neuromuscular Disorder)"
label(data$p_fam_hist_neuro___aneurysm)="Does anyone in the patients family have these neurologic problems? (choice=Brain aneurysms)"
label(data$p_fam_hist_neuro___vascular)="Does anyone in the patients family have these neurologic problems? (choice=Vascular malformation)"
label(data$p_fam_hist_neuro___stroke)="Does anyone in the patients family have these neurologic problems? (choice=Stroke (prior to age 60))"
label(data$p_fam_hist_neuro___tumor)="Does anyone in the patients family have these neurologic problems? (choice=Brain tumor)"
label(data$p_fam_hist_neuro___oth)="Does anyone in the patients family have these neurologic problems? (choice=Other neurologic problem)"
label(data$p_fam_hist_med___none)="Does anyone in the patients family have these medical problems? (choice=None)"
label(data$p_fam_hist_med___bleed)="Does anyone in the patients family have these medical problems? (choice=Bleeding or Clotting Disorder)"
label(data$p_fam_hist_med___venous_throm)="Does anyone in the patients family have these medical problems? (choice=Deep venous thrombosis)"
label(data$p_fam_hist_med___pulm_emb)="Does anyone in the patients family have these medical problems? (choice=Pulmonary Embolism)"
label(data$p_fam_hist_med___miscarriage)="Does anyone in the patients family have these medical problems? (choice=Pregnancy miscarriages)"
label(data$p_fam_hist_med___autoimmune)="Does anyone in the patients family have these medical problems? (choice=Autoimmune Disease)"
label(data$p_fam_hist_med___gene)="Does anyone in the patients family have these medical problems? (choice=Genetic disorder)"
label(data$p_fam_hist_med___early_deaths)="Does anyone in the patients family have these medical problems? (choice=Early deaths (children & young adults))"
label(data$p_fam_hist_med___hear_loss)="Does anyone in the patients family have these medical problems? (choice=Hearing loss (children & young adults))"
label(data$p_fam_hist_med___vision_loss)="Does anyone in the patients family have these medical problems? (choice=Vision problems or loss (children & young adults))"
label(data$p_fam_hist_med___heart_disease)="Does anyone in the patients family have these medical problems? (choice=Heart disease)"
label(data$p_fam_hist_med___pots)="Does anyone in the patients family have these medical problems? (choice=Syncope/POTS)"
label(data$p_fam_hist_med___high_blood)="Does anyone in the patients family have these medical problems? (choice=High blood pressure)"
label(data$p_fam_hist_med___high_choles)="Does anyone in the patients family have these medical problems? (choice=High Cholesterol)"
label(data$p_fam_hist_med___obese)="Does anyone in the patients family have these medical problems? (choice=Obesity)"
label(data$p_fam_hist_med___cancer)="Does anyone in the patients family have these medical problems? (choice=Cancer)"
label(data$p_fam_hist_med___thyroid)="Does anyone in the patients family have these medical problems? (choice=Thyroid Disease)"
label(data$p_fam_hist_med___oth)="Does anyone in the patients family have these medical problems? (choice=Other)"
label(data$p_lives_w_child___mom)="Who lives with the patient? (choice=Mother)"
label(data$p_lives_w_child___dad)="Who lives with the patient? (choice=Father)"
label(data$p_lives_w_child___sibling)="Who lives with the patient? (choice=Sibling(s))"
label(data$p_lives_w_child___grand_par)="Who lives with the patient? (choice=Grandparent(s))"
label(data$p_lives_w_child___aunt_unc)="Who lives with the patient? (choice=Aunt or Uncle)"
label(data$p_lives_w_child___step_par)="Who lives with the patient? (choice=Stepparent)"
label(data$p_lives_w_child___foster_par)="Who lives with the patient? (choice=Foster Parents(s))"
label(data$p_lives_w_child___facility)="Who lives with the patient? (choice=Lives at Residential Facility)"
label(data$p_lives_w_child___oth)="Who lives with the patient? (choice=Other people)"
label(data$p_legal_decision___parent)="Who is legally able to make medical decisions for the patient? (choice=Parents)"
label(data$p_legal_decision___mom)="Who is legally able to make medical decisions for the patient? (choice=Mother)"
label(data$p_legal_decision___dad)="Who is legally able to make medical decisions for the patient? (choice=Father)"
label(data$p_legal_decision___grandma)="Who is legally able to make medical decisions for the patient? (choice=Grandmother)"
label(data$p_legal_decision___grandpa)="Who is legally able to make medical decisions for the patient? (choice=Grandfather)"
label(data$p_legal_decision___grandprnt)="Who is legally able to make medical decisions for the patient? (choice=Grandparents)"
label(data$p_legal_decision___fosterpar)="Who is legally able to make medical decisions for the patient? (choice=Foster parents)"
label(data$p_legal_decision___dhs_dyfs)="Who is legally able to make medical decisions for the patient? (choice=DHS/DYFS)"
label(data$p_legal_decision___oth)="Who is legally able to make medical decisions for the patient? (choice=Other)"
label(data$p_prim_care_occ)="What is the occupation of the patients primary caregiver(s)? Please also provide relationship to the parent. (add note: If completing at the providers office, click on Other to enter information (example: Mother is teacher, Father is contractor)"
label(data$p_recent_change)="Are there any recent changes at home (job changes, recent moves, new family members, new social stressors, etc)?"
label(data$p_recent_change_spec)="Please specify:"
label(data$p_school_type)="What is your grade & school envrionment?"
label(data$p_school_concerns)="Are there any concerns about academic performance in school?"
label(data$p_iep_504)="Do you have an IEP (Individualized Educational Plan) or 504 plan? "
label(data$p_any_oth_info)="Is there anything else we should know?"
label(data$p_prob_with_form)="Did you have any problems completing this form?"
label(data$patient_ha_complete)="Complete?"
label(data$c_reason_for_visit)="What is the reason for your visit today?"
label(data$c_reason_oth)="Please specify the reason for your visit. For the rest of the form, please answer the questions with your biggest symptom in mind wherever we ask about headaches."
label(data$c_visit_type)="Visit Type"
label(data$c_prov_seen___none)="Have you seen other health care providers for headaches and related conditions? (choice=None)"
label(data$c_prov_seen___pcp)="Have you seen other health care providers for headaches and related conditions? (choice=Primary Care Clinician)"
label(data$c_prov_seen___neuro)="Have you seen other health care providers for headaches and related conditions? (choice=Neurologist)"
label(data$c_prov_seen___eye)="Have you seen other health care providers for headaches and related conditions? (choice=Eye doctor)"
label(data$c_prov_seen___ent)="Have you seen other health care providers for headaches and related conditions? (choice=Ear, Nose, Throat (ENT))"
label(data$c_prov_seen___allergy)="Have you seen other health care providers for headaches and related conditions? (choice=Allergist)"
label(data$c_prov_seen___conc)="Have you seen other health care providers for headaches and related conditions? (choice=concion or Sports Medicine)"
label(data$c_prov_seen___nsg)="Have you seen other health care providers for headaches and related conditions? (choice=Neurosurgeon)"
label(data$c_prov_seen___gi)="Have you seen other health care providers for headaches and related conditions? (choice=Gastroenterologist)"
label(data$c_prov_seen___osteo)="Have you seen other health care providers for headaches and related conditions? (choice=Osteopathic/Integrative Doctor)"
label(data$c_prov_seen___onco)="Have you seen other health care providers for headaches and related conditions? (choice=Oncologist)"
label(data$c_prov_seen___cardio)="Have you seen other health care providers for headaches and related conditions? (choice=Cardiologist)"
label(data$c_prov_seen___psych)="Have you seen other health care providers for headaches and related conditions? (choice=Psychiatrist)"
label(data$c_prov_seen___psychol)="Have you seen other health care providers for headaches and related conditions? (choice=psychologist)"
label(data$c_prov_seen___couns)="Have you seen other health care providers for headaches and related conditions? (choice=Counselor)"
label(data$c_prov_seen___ed)="Have you seen other health care providers for headaches and related conditions? (choice=Emergency Department)"
label(data$c_prov_seen___oth)="Have you seen other health care providers for headaches and related conditions? (choice=Other)"
label(data$c_prov_seen_oth)="Please specify:"
label(data$c_stud_eval___none)="Have any tests been performed? (choice=None)"
label(data$c_stud_eval___brain)="Have any tests been performed? (choice=MRI of Brain)"
label(data$c_stud_eval___spine)="Have any tests been performed? (choice=MRI of Spine)"
label(data$c_stud_eval___ct)="Have any tests been performed? (choice=CT of Brain)"
label(data$c_stud_eval___eeg)="Have any tests been performed? (choice=EEG (brain wave test))"
label(data$c_stud_eval___emg)="Have any tests been performed? (choice=EMG (muscle/nerve test))"
label(data$c_stud_eval___genetic)="Have any tests been performed? (choice=Genetic Testing)"
label(data$c_stud_eval___lp)="Have any tests been performed? (choice=Lumbar Puncture/Spinal tap)"
label(data$c_stud_eval___npsych)="Have any tests been performed? (choice=Neuropsych Testing)"
label(data$c_stud_eval___metabolic)="Have any tests been performed? (choice=Metabolic Disorders testing)"
label(data$c_stud_eval___blood)="Have any tests been performed? (choice=Blood Work)"
label(data$c_stud_eval___notsure)="Have any tests been performed? (choice=Not sure)"
label(data$c_stud_eval___oth)="Have any tests been performed? (choice=Other)"
label(data$c_age_first_ha)="How old were you when you had your first headache? We are asking about any headaches, not just the bad or recent ones."
label(data$c_ha_in_lifetime)="How many headaches have you had in your lifetime?"
label(data$c_current_ha_pattern)="What is the current pattern of your headaches?"
label(data$c_epi_prec___none)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=None)"
label(data$c_epi_prec___conc)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Head trauma or concussion)"
label(data$c_epi_prec___oth_inj)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Other injury)"
label(data$c_epi_prec___sxg)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Surgery)"
label(data$c_epi_prec___infect)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Infection)"
label(data$c_epi_prec___oth_ill)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Other illness)"
label(data$c_epi_prec___mens)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Menstrual periods started)"
label(data$c_epi_prec___stress)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Stressful life event)"
label(data$c_epi_prec___oth)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Other)"
label(data$c_epi_prec_oth)="Please specify: "
label(data$c_epi_conc_date)="On what date(s) did your concussion/trauma occur?"
label(data$c_epi_conc_moi)="Mechanism of Injury"
label(data$c_epi_conc_sport)="Sport"
label(data$c_epi_pattern_change___often)="Have any of the following happened recently? (choice=Headaches come more often than they used to)"
label(data$c_epi_pattern_change___longer)="Have any of the following happened recently? (choice=Headaches last longer than they used to)"
label(data$c_epi_pattern_change___none)="Have any of the following happened recently? (choice=No recent change in headache pattern.)"
label(data$c_epi_inc_fre_prec___none)="Did anything happen around the time your headaches became more freuent? (choice=None)"
label(data$c_epi_inc_fre_prec___conc)="Did anything happen around the time your headaches became more freuent? (choice=Head trauma or concussion)"
label(data$c_epi_inc_fre_prec___oth_inj)="Did anything happen around the time your headaches became more freuent? (choice=Other injury)"
label(data$c_epi_inc_fre_prec___sxg)="Did anything happen around the time your headaches became more freuent? (choice=Surgery)"
label(data$c_epi_inc_fre_prec___infect)="Did anything happen around the time your headaches became more freuent? (choice=Infection)"
label(data$c_epi_inc_fre_prec___oth_ill)="Did anything happen around the time your headaches became more freuent? (choice=Other illness)"
label(data$c_epi_inc_fre_prec___mens)="Did anything happen around the time your headaches became more freuent? (choice=Menstrual periods started)"
label(data$c_epi_inc_fre_prec___stress)="Did anything happen around the time your headaches became more freuent? (choice=Stressful life event)"
label(data$c_epi_inc_fre_prec___oth)="Did anything happen around the time your headaches became more freuent? (choice=Other)"
label(data$c_epi_inc_fre_prec_oth)="Please specify: "
label(data$c_epi_inc_fre_conc_date)="On what date(s) did your concussion/trauma occur?"
label(data$c_epi_inc_fre_conc_moi)="Mechanism of Injury"
label(data$c_epi_inc_fre_conc_sport)="Sport"
label(data$c_epi_inc_fre_time)="Over how much time did the headaches become more frequent?"
label(data$c_epi_fre)="How often are the headaches now?"
label(data$c_epi_fre_oth)="Please specify:"
label(data$c_epi_fre_dur)="For how long have the headaches been more than 3 days per week?"
label(data$c_pattern_to_con)="How did the pain get to this pattern where there is at least some headache all the time?"
label(data$c_con_st_epi_prec_ep___none)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=None)"
label(data$c_con_st_epi_prec_ep___conc)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Head trauma or concussion)"
label(data$c_con_st_epi_prec_ep___oth_inj)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Other injury)"
label(data$c_con_st_epi_prec_ep___sxg)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Surgery)"
label(data$c_con_st_epi_prec_ep___infect)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Infection)"
label(data$c_con_st_epi_prec_ep___oth_ill)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Other illness)"
label(data$c_con_st_epi_prec_ep___mens)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Menstrual periods started)"
label(data$c_con_st_epi_prec_ep___stress)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Stressful life event)"
label(data$c_con_st_epi_prec_ep___oth)="The arrow in the image above shows the time that your headaches started. Did anything happen around the time your headaches started? (choice=Other)"
label(data$c_con_st_epi_prec_ep_oth)="Please specify: "
label(data$c_con_st_epi_conc_date)="On what date(s) did your concussion/trauma occur?"
label(data$c_con_st_epi_conc_moi)="Mechanism of Injury"
label(data$c_con_st_epi_conc_sport)="Sport"
label(data$c_con_prec___none)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=None)"
label(data$c_con_prec___conc)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=Head trauma or concussion)"
label(data$c_con_prec___oth_inj)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=Other injury)"
label(data$c_con_prec___sxg)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=Surgery)"
label(data$c_con_prec___infect)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=Infection)"
label(data$c_con_prec___oth_ill)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=Other illness)"
label(data$c_con_prec___mens)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=Menstrual periods started)"
label(data$c_con_prec___stress)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=Stressful life event)"
label(data$c_con_prec___oth)="The arrow in the image above shows the time that your constant pain started. Did anything of the following happen at that time? (choice=Other)"
label(data$c_con_prec_oth)="Please specify:"
label(data$c_con_conc_date)="On what date(s) did your concussion/trauma occur?"
label(data$c_con_conc_moi)="Mechanism of Injury"
label(data$c_con_conc_sport)="Sport"
label(data$c_con_start_epi_time)="How long did it take to go from infreuent headaches (1 time per week or less) to constant headache? In other words, how much time passed between the 2 arrows?"
label(data$c_con_pattern_duration)="For approximately how long have you had a constant headache?"
label(data$c_con_start_date)="When?"
label(data$c_con_start_age)="If you do not know exactly when your constant headache started, about how old were you when the constant headache began? "
label(data$c_any_ha_days)="Days per month with ANY headaches"
label(data$c_severe_ha_days)="Days per month with SEVERE headache"
label(data$c_fre_bad)="How often do the headaches get in the way of what you want to do?"
label(data$c_fre_bad_oth)="Please specify:"
label(data$c_timing___none)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=No)"
label(data$c_timing___wake)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=waking up)"
label(data$c_timing___morning)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=morning)"
label(data$c_timing___noon)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=afternoon)"
label(data$c_timing___evening)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=evening)"
label(data$c_timing___night)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=night)"
label(data$c_timing___sleep)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=while asleep)"
label(data$c_timing___spring)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=spring)"
label(data$c_timing___summer)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=summer)"
label(data$c_timing___fall)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=fall)"
label(data$c_timing___winter)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=winter)"
label(data$c_timing___mon)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=Monday)"
label(data$c_timing___tue)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=Tuesday)"
label(data$c_timing___wed)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=Wednesday)"
label(data$c_timing___thur)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=Thursday)"
label(data$c_timing___fri)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=Friday)"
label(data$c_timing___sat)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=Saturday)"
label(data$c_timing___sun)="Do bad headaches occur at a particular time (time of day, season, or day of the week)? (choice=Sunday)"
label(data$c_timing_wake_up)="Do headaches wake you from sleep?"
label(data$c_ha_quality___throb)="Which of the following best describes your headache when it is very bad? (choice=Throbbing)"
label(data$c_ha_quality___pound)="Which of the following best describes your headache when it is very bad? (choice=Pounding)"
label(data$c_ha_quality___stab)="Which of the following best describes your headache when it is very bad? (choice=Stabbing)"
label(data$c_ha_quality___pushin)="Which of the following best describes your headache when it is very bad? (choice=Pressure pushing in (squeezing))"
label(data$c_ha_quality___pushout)="Which of the following best describes your headache when it is very bad? (choice=Pressure pushing out)"
label(data$c_ha_quality___dull)="Which of the following best describes your headache when it is very bad? (choice=Dull)"
label(data$c_ha_quality___burn)="Which of the following best describes your headache when it is very bad? (choice=Burning)"
label(data$c_ha_quality___sharp)="Which of the following best describes your headache when it is very bad? (choice=Sharp)"
label(data$c_ha_quality___tight)="Which of the following best describes your headache when it is very bad? (choice=Tightness)"
label(data$c_ha_quality___pinch)="Which of the following best describes your headache when it is very bad? (choice=Pinching)"
label(data$c_ha_quality___pulse)="Which of the following best describes your headache when it is very bad? (choice=Pulsating)"
label(data$c_ha_quality___cant_desc)="Which of the following best describes your headache when it is very bad? (choice=Unable to describe)"
label(data$c_ha_quality___oth)="Which of the following best describes your headache when it is very bad? (choice=Other)"
label(data$c_ha_quality_oth)="Please specify: "
label(data$c_location_side___right)="On which side do you feel headache pain? (choice=Right side only)"
label(data$c_location_side___left)="On which side do you feel headache pain? (choice=Left side only)"
label(data$c_location_side___both)="On which side do you feel headache pain? (choice=Both sides at the same time)"
label(data$c_location_side___cant_desc)="On which side do you feel headache pain? (choice=Unable to describe)"
label(data$c_location_area___sides)="Where on your head do you feel pain? (choice=Temples/sides)"
label(data$c_location_area___front)="Where on your head do you feel pain? (choice=Front/Forehead)"
label(data$c_location_area___top)="Where on your head do you feel pain? (choice=Top)"
label(data$c_location_area___back)="Where on your head do you feel pain? (choice=Back of head)"
label(data$c_location_area___neck)="Where on your head do you feel pain? (choice=Neck)"
label(data$c_location_area___around)="Where on your head do you feel pain? (choice=Around eyes)"
label(data$c_location_area___behind)="Where on your head do you feel pain? (choice=Behind the eyes)"
label(data$c_location_area___allover)="Where on your head do you feel pain? (choice=All over)"
label(data$c_location_area___oth)="Where on your head do you feel pain? (choice=Other)"
label(data$c_location_area___cant_desc)="Where on your head do you feel pain? (choice=Unable to describe)"
label(data$c_location_area_oth)="Please specify:"
label(data$c_sev_overall)="Overall, how bad are the headaches?"
label(data$c_sev_usual)="Your usual headache level:"
label(data$c_sev_morning)="Your headache when you first wake up, before you get out of bed:"
label(data$c_sev_hr_after_bed)="Your headache an hour after getting out of bed:"
label(data$c_sev_rate_rise)="When the pain goes up, how long does it take for the pain to get bad?"
label(data$c_sev_dur)="How long do bad headaches usually last?"
label(data$c_sev_dur_spec)="Please specify:"
label(data$c_relief_sleep)="Do you want to sleep when you get a headache?"
label(data$c_relief___no)="Do any of the following make your headaches better? (choice=None)"
label(data$c_relief___ice)="Do any of the following make your headaches better? (choice=Ice)"
label(data$c_relief___heat)="Do any of the following make your headaches better? (choice=Heat)"
label(data$c_relief___sunglasses)="Do any of the following make your headaches better? (choice=Sunglasses)"
label(data$c_relief___caffeine)="Do any of the following make your headaches better? (choice=Caffeine)"
label(data$c_relief___quiet)="Do any of the following make your headaches better? (choice=Quiet)"
label(data$c_relief___lying_down)="Do any of the following make your headaches better? (choice=Lying down)"
label(data$c_relief___active)="Do any of the following make your headaches better? (choice=Staying active)"
label(data$c_relief___oth)="Do any of the following make your headaches better? (choice=Other)"
label(data$c_relief_oth)="Please specify:"
label(data$c_trigger___none)="Are there triggers that bring on headaches or make them worse? (choice=none)"
label(data$c_trigger___period)="Are there triggers that bring on headaches or make them worse? (choice=menstrual cycle)"
label(data$c_trigger___much_sleep)="Are there triggers that bring on headaches or make them worse? (choice=too much sleep)"
label(data$c_trigger___little_sleep)="Are there triggers that bring on headaches or make them worse? (choice=too little sleep)"
label(data$c_trigger___fatigue)="Are there triggers that bring on headaches or make them worse? (choice=fatigue)"
label(data$c_trigger___exercise)="Are there triggers that bring on headaches or make them worse? (choice=exercising)"
label(data$c_trigger___overheat)="Are there triggers that bring on headaches or make them worse? (choice=becoming overheated)"
label(data$c_trigger___dehyd)="Are there triggers that bring on headaches or make them worse? (choice=dehydration)"
label(data$c_trigger___skip_meals)="Are there triggers that bring on headaches or make them worse? (choice=skipping meals)"
label(data$c_trigger___food)="Are there triggers that bring on headaches or make them worse? (choice=specific foods)"
label(data$c_trigger___meds)="Are there triggers that bring on headaches or make them worse? (choice=medications)"
label(data$c_trigger___chew)="Are there triggers that bring on headaches or make them worse? (choice=chewing)"
label(data$c_trigger___stress)="Are there triggers that bring on headaches or make them worse? (choice=stress)"
label(data$c_trigger___let_down)="Are there triggers that bring on headaches or make them worse? (choice=stress let-down)"
label(data$c_trigger___screen)="Are there triggers that bring on headaches or make them worse? (choice=screen time)"
label(data$c_trigger___concentrate)="Are there triggers that bring on headaches or make them worse? (choice=concentration)"
label(data$c_trigger___read)="Are there triggers that bring on headaches or make them worse? (choice=reading)"
label(data$c_trigger___light)="Are there triggers that bring on headaches or make them worse? (choice=light)"
label(data$c_trigger___noises)="Are there triggers that bring on headaches or make them worse? (choice=noises)"
label(data$c_trigger___smells)="Are there triggers that bring on headaches or make them worse? (choice=smells)"
label(data$c_trigger___smoke)="Are there triggers that bring on headaches or make them worse? (choice=smoke)"
label(data$c_trigger___weather)="Are there triggers that bring on headaches or make them worse? (choice=weather)"
label(data$c_trigger___high_alt)="Are there triggers that bring on headaches or make them worse? (choice=higher altitude)"
label(data$c_trigger___oth)="Are there triggers that bring on headaches or make them worse? (choice=other)"
label(data$c_trigger_spec)="Please specify:"
label(data$c_allodynia_hurt___none)="Do any of the following hurt? (choice=none)"
label(data$c_allodynia_hurt___ponytail)="Do any of the following hurt? (choice=wearing your hair in a ponytail)"
label(data$c_allodynia_hurt___comb)="Do any of the following hurt? (choice=combing or brushing your hair)"
label(data$c_allodynia_hurt___hat)="Do any of the following hurt? (choice=wearing a hat)"
label(data$c_allodynia_hurt___headphones)="Do any of the following hurt? (choice=wearing headphones)"
label(data$c_valsalva_position___none)="Do any of these make headaches much worse? (choice=none)"
label(data$c_valsalva_position___sneeze)="Do any of these make headaches much worse? (choice=sneezing)"
label(data$c_valsalva_position___cough)="Do any of these make headaches much worse? (choice=coughing)"
label(data$c_valsalva_position___laugh)="Do any of these make headaches much worse? (choice=laughing)"
label(data$c_valsalva_position___stand)="Do any of these make headaches much worse? (choice=standing up)"
label(data$c_valsalva_position___lie)="Do any of these make headaches much worse? (choice=lying down)"
label(data$c_valsalva_dur)="How long does the increased pain last?"
label(data$c_activity)="Does activity or playing impact headaches?"
label(data$c_assoc_sx_vis___none)="Changes in vision: (choice=None)"
label(data$c_assoc_sx_vis___spot)="Changes in vision: (choice=Spots)"
label(data$c_assoc_sx_vis___star)="Changes in vision: (choice=Stars)"
label(data$c_assoc_sx_vis___light)="Changes in vision: (choice=Lights)"
label(data$c_assoc_sx_vis___zigzag)="Changes in vision: (choice=Zigzag lines)"
label(data$c_assoc_sx_vis___blur)="Changes in vision: (choice=blurred vision)"
label(data$c_assoc_sx_vis___double_vis)="Changes in vision: (choice=Double vision)"
label(data$c_assoc_sx_vis___heat)="Changes in vision: (choice=Heat waves)"
label(data$c_assoc_sx_vis___loss_vis)="Changes in vision: (choice=Loss of vision)"
label(data$c_assoc_sx_vis___oth)="Changes in vision: (choice=Other)"
label(data$c_assoc_sx_vis___cant_desc)="Changes in vision: (choice=Unable to describe)"
label(data$c_assoc_sx_vis_spec)="Please specify:"
label(data$c_assoc_sx_neur_bil___none)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=None)"
label(data$c_assoc_sx_neur_bil___weak)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Weakness)"
label(data$c_assoc_sx_neur_bil___numb)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Numbness)"
label(data$c_assoc_sx_neur_bil___tingle)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Tingling)"
label(data$c_assoc_sx_neur_bil___run_nose)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Runny nose)"
label(data$c_assoc_sx_neur_bil___tear)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Eye tearing)"
label(data$c_assoc_sx_neur_bil___ptosis)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Droopy eyelid)"
label(data$c_assoc_sx_neur_bil___red_eye)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Red eye)"
label(data$c_assoc_sx_neur_bil___puff_eye)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Puffy eyelid)"
label(data$c_assoc_sx_neur_bil___flush)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Forehead and facial flushing)"
label(data$c_assoc_sx_neur_bil___sweat)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Forehead and facial sweating)"
label(data$c_assoc_sx_neur_bil___full_ear)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Sensation of fullness in the ear)"
label(data$c_assoc_sx_neur_bil___oth)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=Other)"
label(data$c_assoc_sx_neur_bil___)="Do you have any of these symptoms on BOTH SIDES of your body? (choice=)"
label(data$c_assoc_sx_neur_bil_spec)="Please specify:"
label(data$c_assoc_sx_neur_uni___none)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=None)"
label(data$c_assoc_sx_neur_uni___weak)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Weakness)"
label(data$c_assoc_sx_neur_uni___numb)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Numbness)"
label(data$c_assoc_sx_neur_uni___tingle)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Tingling)"
label(data$c_assoc_sx_neur_uni___run_nose)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Runny nose)"
label(data$c_assoc_sx_neur_uni___tear)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Eye tearing)"
label(data$c_assoc_sx_neur_uni___ptosis)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Droopy eyelid)"
label(data$c_assoc_sx_neur_uni___red_eye)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Red eye)"
label(data$c_assoc_sx_neur_uni___puff_eye)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Puffy eyelid)"
label(data$c_assoc_sx_neur_uni___pupilbig)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=One pupilbig bigger than the other)"
label(data$c_assoc_sx_neur_uni___flush)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Forehead and facial flushing)"
label(data$c_assoc_sx_neur_uni___sweat)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Forehead and facial sweathing)"
label(data$c_assoc_sx_neur_uni___full_ear)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Sensation of fullness in the ear)"
label(data$c_assoc_sx_neur_uni___oth)="Do you experience any of these symptoms on ONE SIDE of your body? (choice=Other)"
label(data$c_assoc_sx_neur_uni_spec)="Please specify:"
label(data$c_assoc_sx_gi___none)="Stomach changes: (choice=none)"
label(data$c_assoc_sx_gi___decreased_app)="Stomach changes: (choice=decreased appetite)"
label(data$c_assoc_sx_gi___diarr)="Stomach changes: (choice=diarrhea)"
label(data$c_assoc_sx_gi___naus)="Stomach changes: (choice=nausea)"
label(data$c_assoc_sx_gi___stom_pain)="Stomach changes: (choice=stomach pain)"
label(data$c_assoc_sx_gi___vomiting)="Stomach changes: (choice=vomiting)"
label(data$c_assoc_sx_gi___oth)="Stomach changes: (choice=other)"
label(data$c_assoc_sx_gi_spec)="Please specify:"
label(data$c_assoc_sx_oth_sx___none)="Other symptoms: (choice=None)"
label(data$c_assoc_sx_oth_sx___light)="Other symptoms: (choice=Sensitivity to light)"
label(data$c_assoc_sx_oth_sx___smell)="Other symptoms: (choice=Sensitivity to smells)"
label(data$c_assoc_sx_oth_sx___sound)="Other symptoms: (choice=Sensitivity to sounds)"
label(data$c_assoc_sx_oth_sx___lighthead)="Other symptoms: (choice=lightheadness)"
label(data$c_assoc_sx_oth_sx___spinning)="Other symptoms: (choice=Spinning sensation)"
label(data$c_assoc_sx_oth_sx___balance)="Other symptoms: (choice=Balance problems)"
label(data$c_assoc_sx_oth_sx___hear)="Other symptoms: (choice=Trouble hearing)"
label(data$c_assoc_sx_oth_sx___ringing)="Other symptoms: (choice=Ringing in ear)"
label(data$c_assoc_sx_oth_sx___unrespons)="Other symptoms: (choice=Unresponsive)"
label(data$c_assoc_sx_oth_sx___neck_pain)="Other symptoms: (choice=Neck pain or stiffness)"
label(data$c_assoc_sx_oth_sx___think)="Other symptoms: (choice=Trouble thinking)"
label(data$c_assoc_sx_oth_sx___talk)="Other symptoms: (choice=Trouble talking)"
label(data$c_assoc_sx_oth_sx___oth)="Other symptoms: (choice=Other)"
label(data$c_assoc_sx_oth_sx_spec)="Please specify:"
label(data$c_assoc_sx_pul_ear___none)="Do you ever hear your pulse in your ears (sounds like whoosh-whoosh-whoosh)? (choice=None)"
label(data$c_assoc_sx_pul_ear___standing)="Do you ever hear your pulse in your ears (sounds like whoosh-whoosh-whoosh)? (choice=When standing up)"
label(data$c_assoc_sx_pul_ear___lying)="Do you ever hear your pulse in your ears (sounds like whoosh-whoosh-whoosh)? (choice=When lying down or at night)"
label(data$c_assoc_sx_pul_ear___ha_bad)="Do you ever hear your pulse in your ears (sounds like whoosh-whoosh-whoosh)? (choice=When the headache is very bad)"
label(data$c_assoc_sx_pul_ear___oth)="Do you ever hear your pulse in your ears (sounds like whoosh-whoosh-whoosh)? (choice=Other times)"
label(data$c_assoc_sx_pul_ear_spec)="Please specify:"
label(data$c_midas_1)="On how many days in the last 3 months did you miss work or school because of your headaches?"
label(data$c_midas_2)="How many days in the last 3 months was your productivity at work or school reduced by half or more because of your headaches? (Do not include days you counted in question 1 where you missed work or school.)"
label(data$c_midas_3)="On how many days in the last 3 months did you not do household work (such as housework, home repairs and maintenance, caring for children and relatives) because of your headaches? "
label(data$c_midas_4)="How many days in the last 3 months was your productivity in household work reduced by half or more because of your headaches? (Do not include days you counted in question 3 where you did not do household work.)"
label(data$c_midas_5)="On how many days in the last 3 months did you miss family, social, or leisure activities because of your headaches?"
label(data$c_midas_score)="Total MIDAS Score"
label(data$c_pedmidas_1)="How many full school days of school were missed in the last 3 months due to headaches?"
label(data$c_pedmidas_2)="How many partial days of school were missed in the last 3 months due to headaches (do not include full days counted in the first question)?"
label(data$c_pedmidas_3)="How many days in the last 3 months did you function at less than half your ability in school because of a headache (do not include days counted in the first two questions)?"
label(data$c_pedmidas_4)="How many days were you not able to do things at home (i.e., chores, homework, etc.) due to a headache?"
label(data$c_pedmidas_5)="How many days did you not participate in other activities due to headaches (i.e., play, go out, sports, etc.)?"
label(data$c_pedmidas_6)="How many days did you participate in these activities, but functioned at less than half your ability (do not include days counted in the 5th question above)?"
label(data$c_pedmidas_score)="Total PedMIDAS Score"
label(data$c_med_stop_ha___none)="Medications to STOP headaches (choice=None)"
label(data$c_med_stop_ha___apap)="Medications to STOP headaches (choice=Acetaminophen (Tylenol))"
label(data$c_med_stop_ha___ibupro)="Medications to STOP headaches (choice=Ibuprofen (Motrin/Advil))"
label(data$c_med_stop_ha___naprox)="Medications to STOP headaches (choice=Naproxen (Aleve/Naprosyn))"
label(data$c_med_stop_ha___asp)="Medications to STOP headaches (choice=Aspirin)"
label(data$c_med_stop_ha___ketorolac)="Medications to STOP headaches (choice=Ketorolac (Toradol/Sprix))"
label(data$c_med_stop_ha___ketoprof)="Medications to STOP headaches (choice=Ketoprofen (Relafen))"
label(data$c_med_stop_ha___diclof)="Medications to STOP headaches (choice=Diclofenac (Voltaren))"
label(data$c_med_stop_ha___celec)="Medications to STOP headaches (choice=Celecoxib (Celebrex))"
label(data$c_med_stop_ha___exced)="Medications to STOP headaches (choice=Excedrin (Excedrin Migraine/Excedrin Tension))"
label(data$c_med_stop_ha___butal)="Medications to STOP headaches (choice=Butalbital (Fioricet/Fiorinal))"
label(data$c_med_stop_ha___midrin)="Medications to STOP headaches (choice=Midrin)"
label(data$c_med_stop_ha___methylpred)="Medications to STOP headaches (choice=Methylprednisolone (Medrol Pack))"
label(data$c_med_stop_ha___pred)="Medications to STOP headaches (choice=Prednisone/Prednisolone)"
label(data$c_med_stop_ha___suma)="Medications to STOP headaches (choice=Sumatriptan (Imitrex/Treximet))"
label(data$c_med_stop_ha___riza)="Medications to STOP headaches (choice=Rizatriptan (Maxalt))"
label(data$c_med_stop_ha___nara)="Medications to STOP headaches (choice=Naratriptan (Amerge))"
label(data$c_med_stop_ha___almo)="Medications to STOP headaches (choice=Almotriptan (Axert))"
label(data$c_med_stop_ha___frova)="Medications to STOP headaches (choice=Frovatriptan (Frova))"
label(data$c_med_stop_ha___eletrip)="Medications to STOP headaches (choice=Eletriptan (Relpax))"
label(data$c_med_stop_ha___zolmit)="Medications to STOP headaches (choice=Zolmitriptan (Zomig))"
label(data$c_med_stop_ha___metoclop)="Medications to STOP headaches (choice=Metoclopramide (Reglan))"
label(data$c_med_stop_ha___proch)="Medications to STOP headaches (choice=Prochlorperazine (Compazine))"