-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
11172 lines (11169 loc) · 396 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en-US" class="no-js">
<head>
<!-- Start resources/views/meta.blade.php-->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Migraine</title>
<meta name="description" content="Migraine overview with data visualizations and likely outcomes based on the anonymously aggregated data donated by 110 participants">
<meta name="keywords" content="Migraine, Symptoms">
<meta name="author" content="QuantiModo">
<!--Google+ Metadata /-->
<meta itemprop="name" content="Migraine">
<meta itemprop="description" content="Migraine overview with data visualizations and likely outcomes based on the anonymously aggregated d..."/>
<meta itemprop="image" content="https://images-na.ssl-images-amazon.com/images/I/419eFm6kS9L._SL160_.jpg"/>
<!-- Twitter Metadata -->
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@quantimodo">
<meta name="twitter:title" content="Migraine">
<meta name="twitter:description" content="Migraine overview with data visualizations and likely outcomes based on the anonymously aggregated data donated by 110 participants">
<meta name="twitter:image" content="https://images-na.ssl-images-amazon.com/images/I/419eFm6kS9L._SL160_.jpg"/>
<meta name="twitter:domain" content="https://app.quantimo.do/variables/Migraine">
<!--Facebook Metadata -->
<meta property="og:type" content="website">
<meta property="og:url" content="https://app.quantimo.do/variables/Migraine">
<meta property="fb:app_id" content="225078261031461">
<meta property="og:image" content="https://images-na.ssl-images-amazon.com/images/I/419eFm6kS9L._SL160_.jpg">
<meta property="og:description" content="Migraine overview with data visualizations and likely outcomes based on the anonymously aggregated data donated by 110 participants">
<meta property="og:title" content="Migraine">
<link rel="canonical" href="https://studies.crowdsourcingcures.org/variables/Migraine" />
<meta name="shortcut icon" content="https://quantimodo.s3.amazonaws.com/app_uploads/quantimodo/app_images_appIcon.png">
<link rel="icon" type="image/x-icon" href="https://quantimodo.s3.amazonaws.com/app_uploads/quantimodo/app_images_appIcon.png">
<link rel="apple-touch-icon" sizes="76x76" href="https://quantimodo.s3.amazonaws.com/app_uploads/quantimodo/app_images_appIcon.png">
<!-- Set default share picture after custom section pictures -->
<meta name="image" property="image" content="https://static.quantimo.do/images/default-logo.png">
<!-- End resources/views/footer-js.blade.php -->
<script>
/* Cut the mustard */
if ( 'querySelector' in document && 'addEventListener' in window ) {
document.documentElement.className = document.documentElement.className.replace(/\bno-js\b/g, '') + 'js';
}
</script>
<link rel="stylesheet" href="https://cdn.datatables.net/responsive/2.2.3/css/responsive.dataTables.min.css">
<link rel="stylesheet" href="https://adminlte.io/themes/AdminLTE/plugins/pace/pace.min.css">
<style>
.pace .pace-progress {
background: #2299dd;
}
</style>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/tailwindcss/dist/tailwind.min.css" >
<!-- Sortable tables -->
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.20/css/jquery.dataTables.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://app.quantimo.do/css/so-simple.css">
<link rel="stylesheet" href="https://static.quantimo.do/css/jekyll-text-theme.css">
<link rel="stylesheet" href="https://app.quantimo.do/css/toc.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tocbot/4.12.3/tocbot.css">
<link rel="alternate" type="application/atom+xml" title="QuantiModo" href="feed.xml">
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://static.quantimo.do/js/psychedelic-loader.js" defer></script>
</head><body class="layout--post">
<nav class="skip-links">
<h2 class="screen-reader-text">Skip links</h2>
<ul>
<li><a href="#primary-nav" class="screen-reader-shortcut">Skip to primary navigation</a></li>
<li><a href="#main" class="screen-reader-shortcut">Skip to content</a></li>
<li><a href="#footer" class="screen-reader-shortcut">Skip to footer</a></li>
</ul>
</nav>
<div class="navigation-wrapper">
<a href="#menu-toggle" id="menu-toggle">Menu</a>
<nav id="primary-nav" class="site-nav animated drop">
<ul>
<li>
<a href="mailto:[email protected]">
<i class="fab fa-facebook-messenger"></i>
Contact Us
</a>
</li>
<li>
<a href="https://web.quantimo.do/#/app/onboarding">
<i class="far fa-edit"></i>
Your Data
</a>
</li>
<li>
<a href="https://app.quantimo.do/variables">
<i class="fas fa-search"></i>
Variable Search
</a>
</li>
<li>
<a href="https://quantimo.do">
<i class="fas fa-info-circle"></i>
About Us
</a>
</li>
</ul>
</nav>
</div><!-- /.navigation-wrapper -->
<script>
$(document).ready(function() {
// main menu toggle
var toggleButton = document.getElementById("menu-toggle");
var menu = document.getElementById("primary-nav");
if (toggleButton && menu) {
toggleButton.addEventListener("click", function() {
menu.classList.toggle("js-menu-is-open");
});
}
// initialize smooth scroll
// Not sure what smooth scroll is for? $("a").smoothScroll({ offset: -20 });
// add lightbox class to all image links
$("a[href$='.jpg'], a[href$='.png'], a[href$='.gif']").attr("data-lity", "");
});
</script><header class="masthead">
<div class="wrap">
<a href="/" class="site-logo" rel="home" title="The Journal of Citizen Science">
<img src="https://static.quantimo.do/img/icons/crowdsourcing-utopia/crowdsourcing-utopia-icon-1024-1024-padding.png"
class="site-logo-img animated fadeInDown" alt="The Journal of Citizen Science">
</a>
</div>
</header><!-- /.masthead -->
<main id="main" class="main-content" aria-label="Content">
<article class="h-entry">
<div class="page-image">
<img src="https://static.quantimo.do/img/factors-slide.png" class="entry-feature-image u-photo"
alt="Migraine Mega Study">
</div>
<div class="page-wrapper">
<header class="page-header">
<h1 id="page-title" class="page-title p-name">Migraine Mega Study</h1>
</header>
<div class="page-sidebar">
<div id="toc-container" class="toc-container"
style="text-align: left !important; padding-bottom: 30px;">
<div class="text-lg" style="font-weight: 1000;">Contents</div>
<div class="js-toc"></div>
</div>
<button onclick="window.scrollToContents()" id="scroll-to-contents-button" title="Go to contents">Contents</button>
<script>
mybutton = document.getElementById("scroll-to-contents-button");
// When the user scrolls down 20px from the top of the document, show the button
window.onscroll = function scrollFunction() {
if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
mybutton.style.display = "block";
} else {
mybutton.style.display = "none";
}
}
// When the user clicks on the button, scroll to the top of the document
function scrollToContents() {$('#toc-container')[0].scrollIntoView();}
</script> <div class="page-author h-card p-author">
<img src="https://images-na.ssl-images-amazon.com/images/I/419eFm6kS9L._SL160_.jpg" class="author-avatar u-photo" alt="Migraine">
<div class="author-info">
<div class="author-name">
<span class="p-name">Migraine</span>
</div>
<ul class="author-links">
<li class="author-link">
<a class="u-url" rel="me" href="mailto:?subject=Migraine&body=1https%3A%2F%2Fapp.quantimo.do%2Fvariables%2FMigraine%0A%0AHave%20a%20great%20day!">
<i class="far fa-envelope fa-lg" title="Email"></i>
</a>
</li>
<li class="author-link">
<a class="u-url" rel="me" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fapp.quantimo.do%2Fvariables%2FMigraine">
<i class="fab fa-facebook fa-lg" title="Facebook"></i>
</a>
</li>
<li class="author-link">
<a class="u-url" rel="me" href="https://twitter.com/intent/tweet?text=Migraine&url=https%3A%2F%2Fapp.quantimo.do%2Fvariables%2FMigraine&via=quantimodo">
<i class="fab fa-twitter fa-lg" title="Twitter"></i>
</a>
</li>
</ul>
</div>
</div>
<div style="padding-top: 10px;">
<h3 class="page-taxonomies-title">Related</h3>
<a href="https://app.quantimo.do/datalab/units/10"
title="1 to 5 Rating is the Default Unit for this Variable"
data-search="1 to 5 Rating">
<div class="flex justify-center items-center m-1 font-medium py-1 px-2 bg-white rounded-full text-purple-700 bg-purple-100 border border-purple-300 ">
<div slot="avatar">
<div class="flex relative w-4 h-4 bg-orange-500 justify-center items-center m-1 mr-2 ml-0 my-0 text rounded-full">
<img class="rounded-full" alt="A" src="https://static.quantimo.do/img/audio-and-video-controls/png/star.png">
</div>
</div>
<div class="text font-normal leading-none max-w-full flex-initial">
1 to 5 Rating
</div>
</div>
</a>
<a href="https://app.quantimo.do/datalab/variableCategories/10"
title="Symptoms is the Variable Category for this Variable"
data-search="Symptoms">
<div class="flex justify-center items-center m-1 font-medium py-1 px-2 bg-white rounded-full text-purple-700 bg-purple-100 border border-purple-300 ">
<div slot="avatar">
<div class="flex relative w-4 h-4 bg-orange-500 justify-center items-center m-1 mr-2 ml-0 my-0 text rounded-full">
<img class="rounded-full" alt="A" src="https://static.quantimo.do/img/variable_categories/sad-96.png">
</div>
</div>
<div class="text font-normal leading-none max-w-full flex-initial">
Symptoms
</div>
</div>
</a>
<a href="https://app.quantimo.do/nova/resources/aggregate-correlations?effect_variable_id=86865"
title="Analyses of factors that could influence Migraine for the average person based on aggregated population level data. "
data-search="Factors">
<div class="flex justify-center items-center m-1 font-medium py-1 px-2 bg-white rounded-full text-purple-700 bg-purple-100 border border-purple-300 ">
<div slot="avatar">
<div class="flex relative w-4 h-4 bg-orange-500 justify-center items-center m-1 mr-2 ml-0 my-0 text rounded-full">
<img class="rounded-full" alt="A" src="https://static.quantimo.do/img/science/png/flasks.png">
</div>
</div>
<div class="text font-normal leading-none max-w-full flex-initial">
Factors
</div>
</div>
</a>
<a href="https://app.quantimo.do/nova/resources/aggregate-correlations?cause_variable_id=86865"
title="Analyses of possible effects of Migraine for the average person based on aggregated population level data. "
data-search="Effects">
<div class="flex justify-center items-center m-1 font-medium py-1 px-2 bg-white rounded-full text-purple-700 bg-purple-100 border border-purple-300 ">
<div slot="avatar">
<div class="flex relative w-4 h-4 bg-orange-500 justify-center items-center m-1 mr-2 ml-0 my-0 text rounded-full">
<img class="rounded-full" alt="A" src="https://static.quantimo.do/img/science/png/flasks.png">
</div>
</div>
<div class="text font-normal leading-none max-w-full flex-initial">
Effects
</div>
</div>
</a>
<a href="https://app.quantimo.do/nova/resources/user-variables?variable_id=86865"
title="Variable statistics, analysis settings, and overviews with data visualizations and likely outcomes or predictors based on data for a specific individual"
data-search="User Variables">
<div class="flex justify-center items-center m-1 font-medium py-1 px-2 bg-white rounded-full text-purple-700 bg-purple-100 border border-purple-300 ">
<div slot="avatar">
<div class="flex relative w-4 h-4 bg-orange-500 justify-center items-center m-1 mr-2 ml-0 my-0 text rounded-full">
<img class="rounded-full" alt="A" src="https://static.quantimo.do/img/basic-flat-icons/png/user.png">
</div>
</div>
<div class="text font-normal leading-none max-w-full flex-initial">
User Variables
<span style="font-size: 0.6rem;"
class="badge rounded-full px-1 py-1 text-center object-right-top bg-white border border-purple-300">
3
</span>
</div>
</div>
</a>
<a href="https://app.quantimo.do/nova/resources/measurements?variable_id=86865"
title="Measurements are any value that can be recorded like daily steps, a mood rating, or apples eaten. "
data-search="Measurements">
<div class="flex justify-center items-center m-1 font-medium py-1 px-2 bg-white rounded-full text-purple-700 bg-purple-100 border border-purple-300 ">
<div slot="avatar">
<div class="flex relative w-4 h-4 bg-orange-500 justify-center items-center m-1 mr-2 ml-0 my-0 text rounded-full">
<img class="rounded-full" alt="A" src="https://static.quantimo.do/img/fitness/png/measuring-tape.png">
</div>
</div>
<div class="text font-normal leading-none max-w-full flex-initial">
Measurements
<span style="font-size: 0.6rem;"
class="badge rounded-full px-1 py-1 text-center object-right-top bg-white border border-purple-300">
1
</span>
</div>
</div>
</a>
</div>
<div style="padding-top: 10px;">
<h3 class="page-taxonomies-title">Tags</h3>
<div>
<div class="justify-center items-center m-1 font-medium py-1 px-2 bg-white rounded-full text-gray-700 bg-gray-100 border border-gray-300 " style="display: inline-block;">
<span class="text-xs font-normal leading-none max-w-full flex-initial">
Migraine
</span>
</div>
</div>
</div>
</div>
<div class="page-content js-toc-content">
<div class="e-content">
<!-- Start resources/views/variable-content.blade.php -->
<!-- start resources/views/variable-descriptive-charts.blade.php -->
<div id="variables-name-Migraine-app-tables-causes-of-condition-table-container" style="padding-top: 1rem; padding-bottom: 1rem;">
<h2 id="variables-name-Migraine-app-tables-causes-of-condition-table-heading" class="text-2xl">Causes of Migraine</h2>
<p>
User reported causes of Migraine based on their intuition.
</p>
<table id="variables-name-Migraine-app-tables-causes-of-condition-table" class="table table-bordered table-striped table-hover" cellspacing="0" width="100%" >
<thead>
<tr>
<th title="User reported causes of Migraine based on their intuition. " style="">
Cause <i class="far fa-question-circle"></i>
</th>
<th title="Percent of people who think it could cause Migraine" style="">
Agree <i class="far fa-question-circle"></i>
</th>
</tr>
</thead>
<tbody>
<tr style="" >
<td data-order="Stress" style="">
<a href="https://app.quantimo.do/variables/Stress"
title="1265 studies on the causes or effects of Stress"
class="variable-button">
<i class="far fa-grin-tongue-wink"></i> Stress
</a>
</td>
<td data-order="85" style="">
85%
</td>
</tr>
<tr style="" >
<td data-order="Not Enough Sleep" style="">
<a href="https://app.quantimo.do/variables/Not_Enough_Sleep"
title="Studies on the causes or effects of Not Enough Sleep"
class="variable-button">
<i class="fas fa-disease"></i> Not Enough Sleep
</a>
</td>
<td data-order="73" style="">
73%
</td>
</tr>
<tr style="" >
<td data-order="Going Too Long Between Eating" style="">
<a href="https://app.quantimo.do/variables/Going_Too_Long_Between_Eating"
title="Studies on the causes or effects of Going Too Long Between Eating"
class="variable-button">
<i class="fas fa-disease"></i> Going Too Long Between Eating
</a>
</td>
<td data-order="67" style="">
67%
</td>
</tr>
<tr style="" >
<td data-order="Dehydration" style="">
<a href="https://app.quantimo.do/variables/Dehydration"
title="Studies on the causes or effects of Dehydration"
class="variable-button">
<i class="fas fa-head-side-cough"></i> Dehydration
</a>
</td>
<td data-order="64" style="">
64%
</td>
</tr>
<tr style="" >
<td data-order="Change In Barometric Pressure" style="">
<a href="https://app.quantimo.do/variables/Change_In_Barometric_Pressure"
title="Studies on the causes or effects of Change in Barometric Pressure"
class="variable-button">
<i class="fas fa-disease"></i> Change in Barometric Pressure
</a>
</td>
<td data-order="62" style="">
62%
</td>
</tr>
<tr style="" >
<td data-order="Bright Sunlight / Eyes Not Protected From Sunlight" style="">
<a href="https://app.quantimo.do/variables/Bright_Sunlight_/_Eyes_Not_Protected_From_Sunlight"
title="Studies on the causes or effects of Bright Sunlight / Eyes Not Protected From Sunlight"
class="variable-button">
<i class="fas fa-disease"></i> Bright Sunlight / Eyes Not Protected From Sunlight
</a>
</td>
<td data-order="62" style="">
62%
</td>
</tr>
<tr style="" >
<td data-order="Excessive Exposure To Sunlight (such as Being at The Beach All Day)" style="">
<a href="https://app.quantimo.do/variables/Excessive_Exposure_To_Sunlight_(such_as_Being_at_The_Beach_All_Day)"
title="Studies on the causes or effects of Excessive Exposure to Sunlight (Such as Being at the Beach All Day)"
class="variable-button">
<i class="fas fa-disease"></i> Excessive Exposure to Sunlight (Such as Being at the Beach All Day)
</a>
</td>
<td data-order="60" style="">
60%
</td>
</tr>
<tr style="" >
<td data-order="Inhaling Smoke And Other Strong Odors" style="">
<a href="https://app.quantimo.do/variables/Inhaling_Smoke_And_Other_Strong_Odors"
title="Studies on the causes or effects of Inhaling Smoke and Other Strong Odors"
class="variable-button">
<i class="fas fa-disease"></i> Inhaling Smoke and Other Strong Odors
</a>
</td>
<td data-order="57" style="">
57%
</td>
</tr>
<tr style="" >
<td data-order="Fluorescent Lights" style="">
<a href="https://app.quantimo.do/variables/Fluorescent_Lights"
title="Studies on the causes or effects of Fluorescent Lights"
class="variable-button">
<i class="fas fa-disease"></i> Fluorescent Lights
</a>
</td>
<td data-order="57" style="">
57%
</td>
</tr>
<tr style="" >
<td data-order="Flashing Lights/ Strobe Lights" style="">
<a href="https://app.quantimo.do/variables/Flashing_Lights/_Strobe_Lights"
title="Studies on the causes or effects of Flashing Lights/ Strobe Lights"
class="variable-button">
<i class="fas fa-disease"></i> Flashing Lights/ Strobe Lights
</a>
</td>
<td data-order="57" style="">
57%
</td>
</tr>
<tr style="" >
<td data-order="Combination of Multiple Triggers" style="">
<a href="https://app.quantimo.do/variables/Combination_of_Multiple_Triggers"
title="Studies on the causes or effects of Combination of Multiple Triggers"
class="variable-button">
<i class="fas fa-disease"></i> Combination of Multiple Triggers
</a>
</td>
<td data-order="57" style="">
57%
</td>
</tr>
<tr style="" >
<td data-order="Neck/Back Pain" style="">
<a href="https://app.quantimo.do/variables/Neck/Back_Pain"
title="Studies on the causes or effects of Neck/Back Pain"
class="variable-button">
<i class="fas fa-disease"></i> Neck/Back Pain
</a>
</td>
<td data-order="57" style="">
57%
</td>
</tr>
<tr style="" >
<td data-order="Staring at A Computer/screen Too Long" style="">
<a href="https://app.quantimo.do/variables/Staring_at_A_Computer/screen_Too_Long"
title="Studies on the causes or effects of Staring at a Computer/screen Too Long"
class="variable-button">
<i class="fas fa-disease"></i> Staring at a Computer/screen Too Long
</a>
</td>
<td data-order="56" style="">
56%
</td>
</tr>
<tr style="" >
<td data-order="Weather Change" style="">
<a href="https://app.quantimo.do/variables/Weather_Change"
title="Studies on the causes or effects of Weather Change"
class="variable-button">
<i class="fas fa-cloud-sun-rain"></i> Weather Change
</a>
</td>
<td data-order="54" style="">
54%
</td>
</tr>
<tr style="" >
<td data-order="Menstrual" style="">
<a href="https://app.quantimo.do/variables/Menstrual"
title="Studies on the causes or effects of Menstrual"
class="variable-button">
<i class="fas fa-disease"></i> Menstrual
</a>
</td>
<td data-order="54" style="">
54%
</td>
</tr>
<tr style="" >
<td data-order="Low Blood Sugar / Hypoglycemia (skipping Meals Or Getting Too Hungry)" style="">
<a href="https://app.quantimo.do/variables/Low_Blood_Sugar_/_Hypoglycemia_(skipping_Meals_Or_Getting_Too_Hungry)"
title="Studies on the causes or effects of Low Blood Sugar / Hypoglycemia (Skipping Meals or Getting Too Hungry)"
class="variable-button">
<i class="fas fa-disease"></i> Low Blood Sugar / Hypoglycemia (Skipping Meals or Getting Too Hungry)
</a>
</td>
<td data-order="53" style="">
53%
</td>
</tr>
<tr style="" >
<td data-order="Tight Muscles In Cranial Base" style="">
<a href="https://app.quantimo.do/variables/Tight_Muscles_In_Cranial_Base"
title="Studies on the causes or effects of Tight Muscles in Cranial Base"
class="variable-button">
<i class="fas fa-disease"></i> Tight Muscles in Cranial Base
</a>
</td>
<td data-order="53" style="">
53%
</td>
</tr>
<tr style="" >
<td data-order="Red Wine" style="">
<a href="https://app.quantimo.do/variables/Red_Wine"
title="Studies on the causes or effects of Red Wine"
class="variable-button">
<i class="fas fa-disease"></i> Red Wine
</a>
</td>
<td data-order="53" style="">
53%
</td>
</tr>
<tr style="" >
<td data-order="Anxiety" style="">
<a href="https://app.quantimo.do/variables/Anxiety"
title="1672 studies on the causes or effects of Anxiety"
class="variable-button">
<i class="far fa-grin-tongue-wink"></i> Anxiety
</a>
</td>
<td data-order="52" style="">
52%
</td>
</tr>
<tr style="" >
<td data-order="Perfume" style="">
<a href="https://app.quantimo.do/variables/Perfume"
title="Studies on the causes or effects of Perfume"
class="variable-button">
<i class="fas fa-briefcase-medical"></i> Perfume
</a>
</td>
<td data-order="52" style="">
52%
</td>
</tr>
<tr style="" >
<td data-order="Strong Emotions" style="">
<a href="https://app.quantimo.do/variables/Strong_Emotions"
title="Studies on the causes or effects of Strong Emotions"
class="variable-button">
<i class="fas fa-disease"></i> Strong Emotions
</a>
</td>
<td data-order="52" style="">
52%
</td>
</tr>
<tr style="" >
<td data-order="Food Triggers" style="">
<a href="https://app.quantimo.do/variables/Food_Triggers"
title="Studies on the causes or effects of Food Triggers"
class="variable-button">
<i class="fas fa-disease"></i> Food Triggers
</a>
</td>
<td data-order="51" style="">
51%
</td>
</tr>
<tr style="" >
<td data-order="Stressful Job" style="">
<a href="https://app.quantimo.do/variables/Stressful_Job"
title="Studies on the causes or effects of Stressful Job"
class="variable-button">
<i class="fas fa-disease"></i> Stressful Job
</a>
</td>
<td data-order="51" style="">
51%
</td>
</tr>
<tr style="" >
<td data-order="Loud And/or Constant Noise" style="">
<a href="https://app.quantimo.do/variables/Loud_And/or_Constant_Noise"
title="Studies on the causes or effects of Loud And/or Constant Noise"
class="variable-button">
<i class="fas fa-disease"></i> Loud And/or Constant Noise
</a>
</td>
<td data-order="50" style="">
50%
</td>
</tr>
<tr style="" >
<td data-order="Flourescent Lights" style="">
<a href="https://app.quantimo.do/variables/Flourescent_Lights"
title="Studies on the causes or effects of Flourescent Lights"
class="variable-button">
<i class="fas fa-disease"></i> Flourescent Lights
</a>
</td>
<td data-order="50" style="">
50%
</td>
</tr>
<tr style="" >
<td data-order="Interrupted Sleep" style="">
<a href="https://app.quantimo.do/variables/Interrupted_Sleep"
title="1 studies on the effects of Interrupted Sleep"
class="variable-button">
<i class="fas fa-disease"></i> Interrupted Sleep
</a>
</td>
<td data-order="50" style="">
50%
</td>
</tr>
<tr style="" >
<td data-order="Hormone Imbalance" style="">
<a href="https://app.quantimo.do/variables/Hormone_Imbalance"
title="Studies on the causes or effects of Hormone Imbalance"
class="variable-button">
<i class="fas fa-head-side-cough"></i> Hormone Imbalance
</a>
</td>
<td data-order="46" style="">
46%
</td>
</tr>
<tr style="" >
<td data-order="Heat" style="">
<a href="https://app.quantimo.do/variables/Heat"
title="Studies on the causes or effects of Heat"
class="variable-button">
<i class="fas fa-briefcase-medical"></i> Heat
</a>
</td>
<td data-order="46" style="">
46%
</td>
</tr>
<tr style="" >
<td data-order="Caffeine Withdrawal" style="">
<a href="https://app.quantimo.do/variables/Caffeine_Withdrawal"
title="Studies on the causes or effects of Caffeine Withdrawal"
class="variable-button">
<i class="fas fa-disease"></i> Caffeine Withdrawal
</a>
</td>
<td data-order="46" style="">
46%
</td>
</tr>
<tr style="" >
<td data-order="Changes In Daily Caffeine Intake" style="">
<a href="https://app.quantimo.do/variables/Changes_In_Daily_Caffeine_Intake"
title="Studies on the causes or effects of Changes in Daily Caffeine Intake"
class="variable-button">
<i class="fas fa-disease"></i> Changes in Daily Caffeine Intake
</a>
</td>
<td data-order="46" style="">
46%
</td>
</tr>
<tr style="" >
<td data-order="Alcohol" style="">
<a href="https://app.quantimo.do/variables/Alcohol"
title="Studies on the causes or effects of Alcohol"
class="variable-button">
<i class="fas fa-briefcase-medical"></i> Alcohol
</a>
</td>
<td data-order="45" style="">
45%
</td>
</tr>
<tr style="" >
<td data-order="Sinus Pressure" style="">
<a href="https://app.quantimo.do/variables/Sinus_Pressure"
title="Studies on the causes or effects of Sinus Pressure"
class="variable-button">
<i class="fas fa-head-side-cough"></i> Sinus Pressure
</a>
</td>
<td data-order="44" style="">
44%
</td>
</tr>
<tr style="" >
<td data-order="Reading Or Looking Down In Moving Vehicle" style="">
<a href="https://app.quantimo.do/variables/Reading_Or_Looking_Down_In_Moving_Vehicle"
title="Studies on the causes or effects of Reading or Looking Down in Moving Vehicle"
class="variable-button">
<i class="fas fa-disease"></i> Reading or Looking Down in Moving Vehicle
</a>
</td>
<td data-order="43" style="">
43%
</td>
</tr>
<tr style="" >
<td data-order="Too Much Sleep" style="">
<a href="https://app.quantimo.do/variables/Too_Much_Sleep"
title="Studies on the causes or effects of Too Much Sleep"
class="variable-button">
<i class="fas fa-disease"></i> Too Much Sleep
</a>
</td>
<td data-order="42" style="">
42%
</td>
</tr>
<tr style="" >
<td data-order="Cigarettes (1st Or 2nd Hand Smoke)" style="">
<a href="https://app.quantimo.do/variables/Cigarettes_(1st_Or_2nd_Hand_Smoke)"
title="Studies on the causes or effects of Cigarettes (1st or 2nd Hand Smoke)"
class="variable-button">
<i class="fas fa-disease"></i> Cigarettes (1st or 2nd Hand Smoke)
</a>
</td>
<td data-order="42" style="">
42%
</td>
</tr>
<tr style="" >
<td data-order="Low Pressure Systems" style="">
<a href="https://app.quantimo.do/variables/Low_Pressure_Systems"
title="Studies on the causes or effects of Low Pressure Systems"
class="variable-button">
<i class="fas fa-disease"></i> Low Pressure Systems
</a>
</td>
<td data-order="41" style="">
41%
</td>
</tr>
<tr style="" >
<td data-order="Progesterone Drop at End of Cycle" style="">
<a href="https://app.quantimo.do/variables/Progesterone_Drop_at_End_of_Cycle"
title="Studies on the causes or effects of Progesterone Drop at End of Cycle"
class="variable-button">
<i class="fas fa-disease"></i> Progesterone Drop at End of Cycle
</a>
</td>
<td data-order="40" style="">
40%
</td>
</tr>
<tr style="" >
<td data-order="Too Many Events Occurring In A Single Day, And Occurring In A Row Or Almost at The Same Time" style="">
<a href="https://app.quantimo.do/variables/Too_Many_Events_Occurring_In_A_Single_Day,_And_Occurring_In_A_Row_Or_Almost_at_The_Same_Time"
title="Studies on the causes or effects of Too Many Events Occurring in a Single Day, and Occurring in a Row or Almost at the Same Time"
class="variable-button">
<i class="fas fa-disease"></i> Too Many Events Occurring in a Single Day, and Occurring in a Row or Almost at the Same Time
</a>
</td>
<td data-order="40" style="">
40%
</td>
</tr>
<tr style="" >
<td data-order="Light Reflections (glares, Sunlight On Water, Etc.)" style="">
<a href="https://app.quantimo.do/variables/Light_Reflections_(glares,_Sunlight_On_Water,_Etc.)"
title="Studies on the causes or effects of Light Reflections (Glares, Sunlight on Water, Etc.)"
class="variable-button">
<i class="fas fa-disease"></i> Light Reflections (Glares, Sunlight on Water, Etc.)
</a>
</td>
<td data-order="40" style="">
40%
</td>
</tr>
<tr style="" >
<td data-order="Computer Monitors(excessive Use Of)" style="">
<a href="https://app.quantimo.do/variables/Computer_Monitors(excessive_Use_Of)"
title="Studies on the causes or effects of Computer Monitors(excessive Use Of)"
class="variable-button">
<i class="fas fa-disease"></i> Computer Monitors(excessive Use Of)
</a>
</td>
<td data-order="39" style="">
39%
</td>
</tr>
<tr style="" >
<td data-order="Looking at Strong Light Contrasts. Person In Front of A Large Bright Window" style="">
<a href="https://app.quantimo.do/variables/Looking_at_Strong_Light_Contrasts._Person_In_Front_of_A_Large_Bright_Window"
title="Studies on the causes or effects of Looking at Strong Light Contrasts. Person in Front of a Large Bright Window"
class="variable-button">
<i class="fas fa-disease"></i> Looking at Strong Light Contrasts. Person in Front of a Large Bright Window
</a>
</td>
<td data-order="39" style="">
39%
</td>
</tr>
<tr style="" >
<td data-order="MSG" style="">
<a href="https://app.quantimo.do/variables/MSG"
title="Studies on the causes or effects of MSG"
class="variable-button">
<i class="fas fa-head-side-cough"></i> MSG
</a>
</td>
<td data-order="38" style="">
38%
</td>
</tr>
<tr style="" >
<td data-order="Crying" style="">
<a href="https://app.quantimo.do/variables/Crying"
title="81 studies on the causes or effects of Crying"
class="variable-button">
<i class="fas fa-head-side-cough"></i> Crying
</a>
</td>
<td data-order="38" style="">
38%
</td>
</tr>
<tr style="" >
<td data-order="Short On Oxygen / Stuffy Atmosphere" style="">
<a href="https://app.quantimo.do/variables/Short_On_Oxygen_/_Stuffy_Atmosphere"
title="Studies on the causes or effects of Short on Oxygen / Stuffy Atmosphere"
class="variable-button">
<i class="fas fa-disease"></i> Short on Oxygen / Stuffy Atmosphere
</a>
</td>
<td data-order="37" style="">
37%
</td>
</tr>
<tr style="" >
<td data-order="Stress Release" style="">
<a href="https://app.quantimo.do/variables/Stress_Release"
title="Studies on the causes or effects of Stress Release"
class="variable-button">
<i class="fas fa-disease"></i> Stress Release
</a>
</td>
<td data-order="37" style="">
37%
</td>
</tr>
<tr style="" >
<td data-order="Vehicle Exhaust And Other Air Pollution" style="">
<a href="https://app.quantimo.do/variables/Vehicle_Exhaust_And_Other_Air_Pollution"
title="Studies on the causes or effects of Vehicle Exhaust and Other Air Pollution"
class="variable-button">
<i class="fas fa-disease"></i> Vehicle Exhaust and Other Air Pollution
</a>
</td>
<td data-order="36" style="">
36%
</td>
</tr>
<tr style="" >
<td data-order="Jaw Clenching" style="">
<a href="https://app.quantimo.do/variables/Jaw_Clenching"
title="Studies on the causes or effects of Jaw Clenching"
class="variable-button">
<i class="fas fa-head-side-cough"></i> Jaw Clenching
</a>
</td>
<td data-order="36" style="">
36%
</td>
</tr>
<tr style="" >
<td data-order="Strong Sunshine Behind Partly Open Blinds" style="">
<a href="https://app.quantimo.do/variables/Strong_Sunshine_Behind_Partly_Open_Blinds"
title="Studies on the causes or effects of Strong Sunshine Behind Partly Open Blinds"
class="variable-button">
<i class="fas fa-disease"></i> Strong Sunshine Behind Partly Open Blinds
</a>
</td>
<td data-order="36" style="">
36%
</td>
</tr>
<tr style="" >
<td data-order="Extreme Frustration" style="">
<a href="https://app.quantimo.do/variables/Extreme_Frustration"
title="Studies on the causes or effects of Extreme Frustration"
class="variable-button">
<i class="fas fa-disease"></i> Extreme Frustration
</a>
</td>
<td data-order="36" style="">
36%
</td>
</tr>
<tr style="" >
<td data-order="Humidity/rain" style="">
<a href="https://app.quantimo.do/variables/Humidity/rain"
title="Studies on the causes or effects of Humidity/rain"
class="variable-button">
<i class="fas fa-disease"></i> Humidity/rain
</a>
</td>
<td data-order="34" style="">
34%
</td>
</tr>
<tr style="" >
<td data-order="Wine of Any Type, Not Just Red Wine" style="">
<a href="https://app.quantimo.do/variables/Wine_of_Any_Type,_Not_Just_Red_Wine"
title="Studies on the causes or effects of Wine of Any Type, Not Just Red Wine"
class="variable-button">
<i class="fas fa-disease"></i> Wine of Any Type, Not Just Red Wine
</a>
</td>
<td data-order="34" style="">
34%
</td>
</tr>
<tr style="" >
<td data-order="Exercise" style="">
<a href="https://app.quantimo.do/variables/Exercise"
title="50 studies on the causes or effects of Exercise"
class="variable-button">
<i class="fas fa-running"></i> Exercise
</a>
</td>
<td data-order="33" style="">
33%
</td>
</tr>
<tr style="" >
<td data-order="Incense" style="">
<a href="https://app.quantimo.do/variables/Incense"
title="Studies on the causes or effects of Incense"
class="variable-button">
<i class="fas fa-disease"></i> Incense
</a>
</td>
<td data-order="33" style="">
33%
</td>
</tr>
<tr style="" >
<td data-order="Bending Head Down Or Looking Down" style="">
<a href="https://app.quantimo.do/variables/Bending_Head_Down_Or_Looking_Down"
title="Studies on the causes or effects of Bending Head Down or Looking Down"
class="variable-button">
<i class="fas fa-disease"></i> Bending Head Down or Looking Down
</a>
</td>
<td data-order="33" style="">
33%
</td>
</tr>
<tr style="" >
<td data-order="Bad Pillows And Mattresses" style="">
<a href="https://app.quantimo.do/variables/Bad_Pillows_And_Mattresses"
title="Studies on the causes or effects of Bad Pillows and Mattresses"
class="variable-button">
<i class="fas fa-disease"></i> Bad Pillows and Mattresses
</a>
</td>
<td data-order="31" style="">
31%
</td>
</tr>
<tr style="" >
<td data-order="Not Enough Exercise" style="">
<a href="https://app.quantimo.do/variables/Not_Enough_Exercise"
title="Studies on the causes or effects of Not Enough Exercise"
class="variable-button">
<i class="fas fa-running"></i> Not Enough Exercise
</a>
</td>
<td data-order="31" style="">
31%
</td>
</tr>
<tr style="" >
<td data-order="Large Jump In Temperature" style="">
<a href="https://app.quantimo.do/variables/Large_Jump_In_Temperature"
title="Studies on the causes or effects of Large Jump in Temperature"
class="variable-button">
<i class="fas fa-disease"></i> Large Jump in Temperature
</a>
</td>
<td data-order="31" style="">
31%
</td>
</tr>
<tr style="" >
<td data-order="Whiskey" style="">
<a href="https://app.quantimo.do/variables/Whiskey"
title="1 studies on the effects of Whiskey"
class="variable-button">
<i class="fas fa-briefcase-medical"></i> Whiskey
</a>
</td>
<td data-order="31" style="">
31%
</td>
</tr>