-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
1730 lines (1692 loc) · 108 KB
/
index.html
File metadata and controls
1730 lines (1692 loc) · 108 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
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">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>
The Stetson Corpus of Individual Differences and Eye Movements
</title>
<link rel="canonical" href="https://www.stetson.edu/other/research/student-research.php" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700&display=swap" />
<link rel="stylesheet" href="https://code.jquery.com/ui/1.13.2/themes/smoothness/jquery-ui.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css" />
<link rel="stylesheet"
href="https://www.stetson.edu/software/webgarage/system/themes/stetson-university/assets/css/theme.min.css?v=20230210" />
<link rel="stylesheet" href="./css/index.css" />
<script src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script>
function toggleBadgeSelection(event) {
event.target.classList.toggle("selected-badge");
}
</script>
</head>
<body class="d-flex flex-column h-100">
<div id="banner">
<div id="banner-alert"></div>
</div>
<a href="#layout" tabindex="0" class="offscreen"><strong>Skip to Content</strong></a>
<header>
<div class="container">
<div class="row">
<nav class="navbar navbar-expand-lg navbar-light" aria-label="Universal Navigation">
<a class="navbar-brand" href="https://www.stetson.edu"><img
src="https://www.stetson.edu/software/webgarage/system/themes/stetson-university/assets/images/logo.png"
srcset="
https://www.stetson.edu/software/webgarage/system/themes/stetson-university/assets/images/logo.png,
https://www.stetson.edu/software/webgarage/system/themes/stetson-university/assets/images/logo-x2.png 2x
" class="img-fluid" width="235" height="80" alt="Stetson University Logo" /></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#site-menu"
aria-controls="site-menu" aria-expanded="false" aria-label="Toggle universal navigation">
<span class="navbar-toggler-icon"></span>
<span class="navbar-toggler-text visually-hidden">MENU</span>
</button>
<div id="site-menu" class="collapse navbar-collapse">
<div id="top-menu" class="container text-end">
<ul class="list-inline mb-0">
<li class="list-inline-item">
<a class="text-white" href="https://www.stetson.edu/administration/admissions/apply/">Apply</a>
</li>
<li class="list-inline-item">
<a class="text-white" href="https://www.stetson.edu/other/visit/deland-campus.php">Visit</a>
</li>
<li class="d-none d-md-inline-block list-inline-item">
<a class="text-white" href="https://www2.stetson.edu/today/">StetsonToday</a>
</li>
<li class="d-none d-md-inline-block list-inline-item">
<a class="text-white" href="https://my.stetson.edu/">MyStetson</a>
</li>
<li class="list-inline-item">
<a class="text-white" href="https://www.stetson.edu/administration/alumni/">Alumni</a>
</li>
<li class="list-inline-item">
<a class="text-white" href="https://www.stetson.edu/administration/development/">Giving</a>
</li>
<li id="search-form" class="list-inline-item">
<form class="form-inline" method="get" action="https://www.stetson.edu/other/search/all.php">
<input type="hidden" name="cx" value="004483070290768435938:dw-fmkxniwm" />
<input type="hidden" name="cof" value="FORID:10" />
<input type="hidden" name="ie" value="UTF-8" />
<div id="search-bar">
<label for="q" class="form-label visually-hidden">Search</label>
<div class="input-group input-group-sm">
<input id="q" name="q" type="text" class="form-control" aria-label="Search"
aria-describedby="sa" />
<button id="sa" name="sa" type="submit" class="btn btn-outline-light fw-bold">
<i class="bi bi-search text-white" title="Open Search Bar"></i>
</button>
</div>
</div>
</form>
</li>
<li id="search-open" class="list-inline-item">
<a role="button" tabindex="0"><i class="bi bi-search text-white" title="Open Search Bar"></i></a>
</li>
</ul>
</div>
<ul id="main-menu" class="navbar-nav ms-auto">
<li class="nav-item dropdown position-static">
<a id="site-submenu-1" href="#" class="nav-link dropdown-toggle fw-bold" data-bs-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">About<span class="visually-hidden"> Menu</span></a>
<div class="dropdown-menu mega-menu" aria-labelledby="site-submenu-1">
<div class="row">
<div class="col-lg-3 d-none d-lg-block">
<img
src="https://www.stetson.edu/software/webgarage/system/themes/stetson-university/assets/images/mega-menu-1.jpg"
loading="lazy" alt="John B. Stetson's bronze statue on the DeLand campus." class="img-fluid" />
</div>
<div class="col-lg-3 d-none d-lg-block">
<p class="h5">Celebrating 140 Years</p>
<p class="mega-menu-text mb-0">
Join us in honoring Stetson University's people,
places and milestones.
</p>
<a class="btn btn-success btn-block fw-bold mt-3"
href="https://www.stetson.edu/other/140-year/">Updates and Events</a>
</div>
<div class="col-sm-6 col-lg-3 border-start">
<a class="dropdown-item linked" href="https://www.stetson.edu/other/about/">About Stetson
University</a>
<a class="dropdown-item linked"
href="https://visit.stetson.edu/campus-maps-and-tours/deland-campus" target="_blank">Campus
Maps</a>
<a class="dropdown-item linked" href="https://www.stetson.edu/other/about/history.php">History of
Stetson</a>
<a class="dropdown-item linked" href="https://www.stetson.edu/portal/diversity/">Diversity, Equity
and Inclusion</a>
<a class="dropdown-item linked" href="https://www.stetson.edu/administration/president/">Office of
the President</a>
</div>
<div class="col-sm-6 col-lg-3">
<a class="dropdown-item linked" href="https://www2.stetson.edu/today/">News and Stories</a>
<a class="dropdown-item linked" href="https://www.stetson.edu/other/calendar/">Calendar of
Events</a>
<a class="dropdown-item linked" href="https://www.stetson.edu/other/visit/">Plan a Visit</a>
<a class="dropdown-item linked" href="https://visit.stetson.edu/">Virtual Tour</a>
<a class="dropdown-item linked"
href="https://www.stetson.edu/other/visit/explore-central-florida.php">Explore Central
Florida</a>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown position-static">
<a id="site-submenu-2" href="#" class="nav-link dropdown-toggle fw-bold" data-bs-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">Academics<span class="visually-hidden"> Menu</span></a>
<div class="dropdown-menu mega-menu" aria-labelledby="site-submenu-2">
<div class="row">
<div class="col-lg-3 d-none d-lg-block">
<img
src="https://www.stetson.edu/software/webgarage/system/themes/stetson-university/assets/images/mega-menu-2.jpg"
loading="lazy" alt="A top-down aerial view of the Palm Court." class="img-fluid" />
</div>
<div class="col-lg-3 d-none d-lg-block">
<p class="mega-menu-text mb-0">
Choose the right undergraduate or graduate program for
you, one that exceeds all expectations and sets up
your journey to success.
</p>
</div>
<div class="col-sm-6 col-lg-3 border-start">
<a class="dropdown-item linked" href="https://www.stetson.edu/other/academics/">Academics<span
class="visually-hidden">
Overview</span></a>
<a class="dropdown-item linked"
href="https://www.stetson.edu/other/academics/undergraduate/">Undergraduate Programs</a>
<a class="dropdown-item linked" href="https://www.stetson.edu/other/academics/graduate/">Graduate
Programs</a>
<a class="dropdown-item linked"
href="https://www.stetson.edu/other/academics/programs.php#pre-professional">Pre-Professional
Programs</a>
<a class="dropdown-item linked"
href="https://www.stetson.edu/other/academics/programs.php#non-degree">Non-Degree Programs</a>
</div>
<div class="col-sm-6 col-lg-3">
<a class="dropdown-item linked"
href="https://www.stetson.edu/administration/registrar/academic-calendars.php">Academic
Calendars</a>
<a class="dropdown-item linked"
href="https://www.stetson.edu/other/academics/colleges-and-schools.php">Colleges and Schools</a>
<a class="dropdown-item linked"
href="https://www.stetson.edu/administration/provost/about/institutes-centers-programs-initiatives.php">Centers
and Institutes</a>
<a class="dropdown-item linked"
href="https://www.stetson.edu/other/about/libraries.php">Libraries</a>
<a class="dropdown-item linked" href="https://www.stetson.edu/other/research/">Research</a>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown position-static">
<a id="site-submenu-3" href="#" class="nav-link dropdown-toggle fw-bold" data-bs-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">Admissions<span class="visually-hidden"> Menu</span></a>
<div class="dropdown-menu mega-menu" aria-labelledby="site-submenu-3">
<div class="row">
<div class="col-lg-3 d-none d-lg-block">
<p class="mega-menu-text mb-0">
Our admissions team is ready to help guide you through
the application process, from visiting campus to
applying and becoming a member of the Hatter family.
</p>
</div>
<div class="col-sm-6 col-lg-3 border-start">
<a class="dropdown-item linked"
href="https://www.stetson.edu/administration/admissions/">Admissions<span
class="visually-hidden">
Overview</span></a>
<a class="dropdown-item linked"
href="https://www.stetson.edu/administration/admissions/graduate-students.php">Graduate
Admissions</a>
<a class="dropdown-item linked" href="https://www.stetson.edu/law/admissions/home/">Law
Admissions</a>
<a class="dropdown-item linked"
href="https://www.stetson.edu/administration/financial-aid/">Student Financial Aid</a>
<a class="dropdown-item linked"
href="https://www.stetson.edu/administration/financial-aid/tuition-and-cost.php">Tuition and
Costs</a>
</div>
<div class="col-sm-6 col-lg-3 pt-2">
<a class="btn btn-success btn-block fw-bold w-100 mb-2"
href="https://www.stetson.edu/administration/admissions/apply/">Apply Now</a>
<a class="btn btn-success btn-block fw-bold w-100 mb-2"
href="https://admissions.stetson.edu/register/interest">Request Information</a>
<a class="btn btn-success btn-block fw-bold w-100"
href="https://www.stetson.edu/administration/admissions/accepted-students.php">Deposit and
Enroll</a>
</div>
<div class="col-sm-6 col-lg-3 pt-2">
<a class="btn btn-success btn-block fw-bold w-100 mb-2"
href="https://www.stetson.edu/other/visit/deland-campus.php">Visit Stetson</a>
<a class="btn btn-success btn-block fw-bold w-100 mb-2"
href="https://www.stetson.edu/administration/admissions/find-your-recruiter.php">Find Your
Recruiter</a>
<a class="btn btn-success btn-block fw-bold w-100"
href="https://www.stetson.edu/administration/financial-aid/scholarships/">Scholarships</a>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown position-static">
<a id="site-submenu-4" href="#" class="nav-link dropdown-toggle fw-bold" data-bs-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">Student Life<span class="visually-hidden"> Menu</span></a>
<div class="dropdown-menu mega-menu" aria-labelledby="site-submenu-4">
<div class="row">
<div class="col-sm-6 col-lg-3">
<p class="h5">DeLand Campus</p>
<p class="d-none d-lg-block mb-0">
The DeLand campus is home to an inclusive and
welcoming environment enriched with opportunities for
everyone to have fun, learn, grow and find their
place.
</p>
</div>
<div class="col-sm-6 col-lg-3">
<a class="dropdown-item linked"
href="https://www.stetson.edu/administration/campus-life/home/">Student Life<span
class="visually-hidden">
Overview</span></a>
<a class="dropdown-item linked" href="https://www.stetson.edu/administration/housing/">Living on
Campus</a>
<a class="dropdown-item linked"
href="https://www.stetson.edu/administration/campus-life/home/getting-involved.php">Getting
Involved</a>
<a class="dropdown-item linked"
href="https://www.stetson.edu/administration/campus-life/home/student-success.php">Student
Success</a>
<a class="dropdown-item linked"
href="https://www.stetson.edu/administration/campus-life/home/student-wellness.php">Student
Wellness</a>
</div>
<div class="col-sm-6 col-lg-3 border-start">
<p class="h5">Gulfport Campus</p>
<p class="d-none d-lg-block mb-0">
The Gulfport campus, home to Stetson Law, has
opportunities and diverse organizations for students
to develop and display their talents in a variety of
places.
</p>
</div>
<div class="col-sm-6 col-lg-3">
<a class="dropdown-item linked" href="https://www.stetson.edu/law/students/home/">Campus Life</a>
<a class="dropdown-item linked"
href="https://www.stetson.edu/law/academics/clinical-education/">Clinics and Externships</a>
<a class="dropdown-item linked" href="https://www.stetson.edu/law/academics/success/">Academic
Success</a>
<a class="dropdown-item linked"
href="https://www.stetson.edu/law/academics/home/international-programs.php">Study Abroad</a>
<a class="dropdown-item linked" href="https://www.stetson.edu/law/career/">Career Services</a>
</div>
</div>
</div>
</li>
<li class="nav-item dropdown position-static">
<a id="site-submenu-5" href="#" class="nav-link dropdown-toggle fw-bold" data-bs-toggle="dropdown"
aria-haspopup="true" aria-expanded="false">Athletics<span class="visually-hidden"> Menu</span></a>
<div class="dropdown-menu mega-menu" aria-labelledby="site-submenu-5">
<div class="row">
<div class="col-lg-3 d-none d-lg-block">
<img
src="https://www.stetson.edu/software/webgarage/system/themes/stetson-university/assets/images/mega-menu-5.jpg"
loading="lazy"
alt="A Stetson University football running back avoid a tackle while running the ball."
class="img-fluid" />
</div>
<div class="col-lg-3 d-none d-lg-block">
<p class="mega-menu-text mb-0">
Known as the Hatters, Stetson University has 18 NCAA
Division I teams that compete in the Atlantic Sun
Conference, Pioneer Football League and Metro Atlantic
Athletic Conference.
</p>
</div>
<div class="col-sm-6 col-lg-3 border-start">
<a class="dropdown-item linked" href="https://gohatters.com/">Athletics</a>
<a class="dropdown-item linked" href="https://gohatters.com/">Sports</a>
<a class="dropdown-item linked"
href="https://gohatters.com/calendar.aspx?vtype=list">Schedules</a>
<a class="dropdown-item linked"
href="https://gohatters.com/sports/2016/5/30/HatterTicketOffice.aspx">Tickets</a>
</div>
<div class="col-sm-6 col-lg-3">
<a class="dropdown-item linked"
href="https://gohatters.com/sports/2016/9/20/directions-to-facilities.aspx">Directions</a>
<a class="dropdown-item linked" href="http://www.shopgohatters.com/">Merchandise</a>
<a class="dropdown-item linked"
href="https://gohatters.com/sports/2017/4/18/hatter-athletic-fund.aspx">Supporting Athletics</a>
</div>
</div>
</div>
</li>
</ul>
</div>
</nav>
</div>
</div>
</header>
<div id="page-banner"></div>
<div id="content">
<article class="row">
<aside class="col-lg-3">
<button id="side-menu-toggle" type="button" class="d-lg-none rounded" data-bs-toggle="collapse"
data-bs-target="#side-menu">
<i class="bi bi-list"></i> Webpage Menu
</button>
<ul id="side-menu" class="collapse">
<li><i class="bi bi-dash"></i> <a href="index.html">SCIDEM</a></li>
<li>
<i class="bi bi-dash"></i>
<a href="https://www.stetson.edu/other/research/contact-information.php">Contact Information</a>
</li>
</ul>
</aside>
<article class="col-lg-9" role="main">
<div class="container-fluid">
<nav id="breadcrumbs" aria-label="Breadcrumb Navigation" class="d-none d-lg-block py-2">
<ol class="breadcrumb">
<li class="breadcrumb-item">
<a href="https://www.stetson.edu/">Stetson University</a>
</li>
<li class="breadcrumb-item">
<a href="https://www.stetson.edu/other/research/"><span>Research</span></a>
</li>
</ol>
</nav>
</div>
<div id="layout" class="container-fluid">
<h1>
The Stetson Corpus of Individual Differences and Eye Movements
</h1>
<div class="row mt-4">
<div class="col-sm-auto"></div>
<div class="col-sm">
<h2>Instructions</h2>
<p>
Choose which data you would like to create a customized data set for you! Make sure to hit that export button at the bottom of the page, and you will receive a file in the CSV format with all the data you selected!
</p>
<!-- <p>
<a
class="button"
style="float: left"
href="https://archives.stetson.edu/digital/collection/Research"
aria-invalid="true"
>Senior Project Archive</a
>
</p> -->
</div>
</div>
<div class="row mt-4">
<div class="col-sm-auto"></div>
<div class="col-sm">
<h2>Data Cleaning Method</h2>
<p>
Please select which base data file you would like to use to
create your customized data set. There are two base data files
to choose from: baseline and modal. The baseline data file
includes all eye movement data with no trimming. The modal
data file includes data trimming using the most common methods
used to clean eye movement data: merging fixations that are
shorter than 80ms with longer fixations within .50 degree of
visual angle and deleting fixations that are shorter than 80ms
or longer than 800ms. The user might choose additional data
cleaning methods such as removing outliers. For more
information about best practices for cleaning eye movement
data, see Eskenazi (2023)
<a href="https://link.springer.com/article/10.3758/s13428-023-02137-x" target="_blank">here</a>
</p>
<p><strong>What is your preferred Option?</strong></p>
<button onclick="extractAndProcessData('csv/baseline_data.csv')"
class="badge rounded-pill bg-light text-dark"
>Baseline Data</button>
<button onclick="extractAndProcessData('csv/modal_data.csv')"
class="badge rounded-pill bg-light text-dark"
>Modal Data</button>
<script src="js/extractAndProcessData.js"></script>
<hr class="dotted-border mt-4">
<div class="data-section">
<div class="card shadow rounded-4 mb-3">
<!-- Collapsible card header -->
<div class="card-header" id="hover">
<h5 class="mb-0">
<button class="btn btn-link" type="button" data-bs-toggle="collapse" data-bs-target="#collapseFour"
aria-expanded="true" aria-controls="collapseFour">
Identifying Variables
</button>
</h5>
</div>
<!-- Collapsible content -->
<div id="collapseFour" class="collapse show" aria-labelledby="headingOne"
data-bs-parent="#accordionExample">
<!-- Your existing card content -->
<div class="card-body shadow rounded-4 scrollable-card-body">
<div class="container">
<div class="row">
<p>
These variables are used to build the basic structure
of the data file such as Participant ID, Passage ID,
and Word. Participant ID and Passage ID should always
automatically be checked by default.
</p>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="RECORDING_SESSION_LABEL" checked />
<label class="form-check-label" for="RECORDING_SESSION_LABEL">
Participant ID
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="TRIAL_INDEX" />
<label class="form-check-label" for="TRIAL_INDEX">
Trial Order
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="Unique ID" />
<label class="form-check-label" for="Unique ID">
Unique Word ID
</label>
</div>
</div>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="page" checked />
<label class="form-check-label" for="page">
Passage ID
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_ID" />
<label class="form-check-label" for="IA_ID">
IA ID
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="text" />
<label class="form-check-label" for="text">
Passage Text
</label>
</div>
</div>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_LABEL" />
<label class="form-check-label" for="IA_LABEL">
Word
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="Word_Cleaned" />
<label class="form-check-label" for="Word_Cleaned">
Word Cleaned
</label>
</div>
</div>
<div class="card-body shadow rounded-4 scrollable-card-body">
<h5 class="card-title">
<input class="form-check-input checkAllCheckbox" type="checkbox" id="checkAllTrialData"> Check All
</h5>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="card shadow rounded-4 mb-3">
<!-- Collapsible card header -->
<div class="card-header" id="hover">
<h5 class="mb-0">
<button class="btn btn-link" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree"
aria-expanded="true" aria-controls="collapseThree">
Eye Movement Data
</button>
</h5>
</div>
<!-- Collapsible content -->
<div id="collapseThree" class="collapse show" aria-labelledby="headingOne"
data-bs-parent="#accordionExample">
<!-- Your existing card content -->
<div class="card-body shadow rounded-4 scrollable-card-body">
<div class="container">
<div class="row">
<p>
In this section, you can select variables that were
recorded during the eye-tracking portion of this study.
</p>
<h5 class="card-title">Trial Data</h5>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="EYE_USED" />
<label class="form-check-label" for="EYE_USED">
Eye Tracked
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="TRIAL_DWELL_TIME" />
<label class="form-check-label" for="TRIAL_DWELL_TIME">
Total Trial Time
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="TRIAL_FIXATION_COUNT" />
<label class="form-check-label" for="TRIAL_FIXATION_COUNT">
Total Trial Fixation Count
</label>
</div>
</div>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="TRIAL_IA_COUNT" />
<label class="form-check-label" for="TRIAL_IA_COUNT">
Total Trial Ias
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="TRIAL_TOTAL_VISITED_IA_COUNT" />
<label class="form-check-label" for="TRIAL_TOTAL_VISITED_IA_COUNT">
Total Trial IAs Visited
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_VISITED_%" />
<label class="form-check-label" for="IA_VISITED_%">
Percent of IAs Visited
</label>
</div>
</div>
<h5 class="card-title">Interest Area Size</h5>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_AREA" />
<label class="form-check-label" for="IA_AREA">
IA Size
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_BOTTOM" />
<label class="form-check-label" for="IA_BOTTOM">
IA Bottom Side Pixel
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_TOP" />
<label class="form-check-label" for="IA_TOP">
IA Top Side Pixel
</label>
</div>
</div>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_LEFT" />
<label class="form-check-label" for="IA_LEFT">
IA Left Side Pixel
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_RIGHT" />
<label class="form-check-label" for="IA_RIGHT">
IA Right Side Pixel
</label>
</div>
</div>
<h5 class="card-title">Total Reading Time</h5>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_DWELL_TIME" />
<label class="form-check-label" for="IA_DWELL_TIME">
IA Total Reading Time
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_DWELL_TIME_%" />
<label class="form-check-label" for="IA_DWELL_TIME_%">
Percent of Time Spent in this IA
</label>
</div>
</div>
<h5 class="card-title">First Fixation Data</h5>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_FIRST_FIXATION_DURATION" />
<label class="form-check-label" for="IA_FIRST_FIXATION_DURATION">
First Fixation Duration
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_FIRST_FIXATION_INDEX" />
<label class="form-check-label" for="IA_FIRST_FIXATION_INDEX">
First Fixation Duration Ordinal Sequence
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_FIRST_FIXATION_PREVIOUS_FIX_IA" />
<label class="form-check-label" for="IA_FIRST_FIXATION_PREVIOUS_FIX_IA">
Previously Fixated IA
</label>
</div>
</div>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_FIRST_FIXATION_RUN_INDEX" />
<label class="form-check-label" for="IA_FIRST_FIXATION_RUN_INDEX">
First Fixation Run Index
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_FIRST_FIXATION_VISITED_IA_COUNT" />
<label class="form-check-label" for="IA_FIRST_FIXATION_VISITED_IA_COUNT">
Number Previous of IAs Fixated
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_FIRST_FIXATION_X" />
<label class="form-check-label" for="IA_FIRST_FIXATION_X">
First Fixation X
</label>
</div>
</div>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_FIRST_FIXATION_Y" />
<label class="form-check-label" for="IA_FIRST_FIXATION_Y">
First Fixation Y
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_FIRST_FIX_PROGRESSIVE" />
<label class="form-check-label" for="IA_FIRST_FIX_PROGRESSIVE">
First Pass?
</label>
</div>
</div>
<h5 class="card-title">First Run Data</h5>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_FIRST_RUN_DWELL_TIME" />
<label class="form-check-label" for="IA_FIRST_RUN_DWELL_TIME">
Gaze Duration
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_FIRST_RUN_FIXATION_%" />
<label class="form-check-label" for="IA_FIRST_RUN_FIXATION_%">
Gaze Duration % of Total Time
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_FIRST_RUN_FIXATION_COUNT" />
<label class="form-check-label" for="IA_FIRST_RUN_FIXATION_COUNT">
First Run Fixation Count
</label>
</div>
</div>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_FIRST_RUN_FIXATION_COUNT" />
<label class="form-check-label" for="IA_FIRST_RUN_FIXATION_COUNT">
First Run Landing Position
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_FIRST_RUN_LAUNCH_SITE" />
<label class="form-check-label" for="IA_FIRST_RUN_LAUNCH_SITE">
First Run Launch Site
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_FIRST_SACCADE_AMPLITUDE" />
<label class="form-check-label" for="IA_FIRST_SACCADE_AMPLITUDE">
First Run Saccade Amplitude
</label>
</div>
</div>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_FIRST_SACCADE_ANGLE" />
<label class="form-check-label" for="fIA_FIRST_SACCADE_ANGLE">
First Run Saccade Angle
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_FIRST_SACCADE_INDEX" />
<label class="form-check-label" for="IA_FIRST_SACCADE_INDEX">
First Run Saccade Index
</label>
</div>
</div>
<h5 class="card-title">Fixation Data</h5>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_FIXATION_%" />
<label class="form-check-label" for="IA_FIXATION_%">
Fixation Percent
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_LEGAL" />
<label class="form-check-label" for="IA_LEGAL">
Fixation Count
</label>
</div>
</div>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="flexCheckDefault" />
<label class="form-check-label" for="flexCheckDefault">
Legal?
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_LEGAL_IMMEDIATE" />
<label class="form-check-label" for="IA_LEGAL_IMMEDIATE">
Legal Immediate?
</label>
</div>
</div>
<h5 class="card-title">Regression Data</h5>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_REGRESSION_IN" />
<label class="form-check-label" for="IA_REGRESSION_IN">
Regression In
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_REGRESSION_IN_COUNT" />
<label class="form-check-label" for="IA_REGRESSION_IN_COUNT">
Regression In Count
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_REGRESSION_OUT" />
<label class="form-check-label" for="IA_REGRESSION_OUT">
Regression Out
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_REGRESSION_OUT_COUNT" />
<label class="form-check-label" for="IA_REGRESSION_OUT_COUNT">
Regression Out Count
</label>
</div>
</div>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_REGRESSION_OUT_FULL" />
<label class="form-check-label" for="IA_REGRESSION_OUT_FULL">
Regression Out Full
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_REGRESSION_OUT_FULL_COUNT" />
<label class="form-check-label" for="IA_REGRESSION_OUT_FULL_COUNT">
Regression Out Full Count
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_REGRESSION_PATH_DURATION" />
<label class="form-check-label" for="IA_REGRESSION_PATH_DURATION">
Regression Path Duration
</label>
</div>
</div>
<h5 class="card-title">Other Eye Movement Data</h5>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_RUN_COUNT" />
<label class="form-check-label" for="IA_RUN_COUNT">
IA Run Count
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_SELECTIVE_REGRESSION_PATH_DURATION" />
<label class="form-check-label" for="IA_SELECTIVE_REGRESSION_PATH_DURATION">
Selective Regression Path Duration
</label>
</div>
</div>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_SKIP" />
<label class="form-check-label" for="IA_SKIP">
Skip?
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IA_SPILLOVER" />
<label class="form-check-label" for="IA_SPILLOVER">
Spillover Time
</label>
</div>
</div>
<div class="card-body shadow rounded-4 scrollable-card-body">
<h5 class="card-title">
<input class="form-check-input checkAllCheckbox" type="checkbox" id="checkAllTrialData"> Check All
</h5>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="card shadow rounded-4 mb-3">
<!-- Collapsible card header -->
<div class="card-header" id="hover">
<h5 class="mb-0">
<button class="btn btn-link" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo"
aria-expanded="true" aria-controls="collapseTwo">
Lexical Variables
</button>
</h5>
</div>
<!-- Collapsible content -->
<div id="collapseTwo" class="collapse show" aria-labelledby="headingOne"
data-bs-parent="#accordionExample">
<!-- Your existing card content -->
<div class="card-body shadow rounded-4 scrollable-card-body">
<div class="container">
<div class="row">
<p>
In this section, you can select variables related to the
lexical characteristics of each word that was read in the
eye-tracking portion of this study. The predictability
variables were identified from the Provo Corpus (Luke &
Christianson, 2018) and all other variables were generated
using the South Carolina Psycholinguistic Metabase (SCOPE;
Gao et al., 2022)
</P>
<h5 class="card-title">Length</h5>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="Word_Length" />
<label class="form-check-label" for="Word_Length">
Word Length
</label>
</div>
</div>
<h5 class="card-title">Predectability</h5>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="Total_Response_Count" />
<label class="form-check-label" for="Total_Response_Count">
Total Response Count
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="Unique_Count" />
<label class="form-check-label" for="Unique_Count">
Unique Response Count
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="OrthographicMatch" />
<label class="form-check-label" for="OrthographicMatch">
Orthographic Match
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="OrthoMatchModel" />
<label class="form-check-label" for="OrthoMatchModel">
Orthographic Match Model
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="IsModalResponse" />
<label class="form-check-label" for="IsModalResponse">
Modal Response?
</label>
</div>
</div>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="ModalResponse" />
<label class="form-check-label" for="ModalResponse">
Modal Response
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="ModalResponseCount" />
<label class="form-check-label" for="ModalResponseCount">
Modal Response Count
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="Certainty" />
<label class="form-check-label" for="Certainty">
Certainty
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="POSMatch" />
<label class="form-check-label" for="POSMatch">
Part of Speech Match
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="POSMatchModel" />
<label class="form-check-label" for="POSMatchModel">
Part of Speech Match Model
</label>
</div>
</div>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="InflectionMatch" />
<label class="form-check-label" for="InflectionMatch">
Inflection Match
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="InflectionMatchModel" />
<label class="form-check-label" for="InflectionMatchModel">
Inflection Match Model
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="LSA_Context_Score" />
<label class="form-check-label" for="LSA_Context_Score">
LSA Context Score
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="LSA_Response_Match_Score" />
<label class="form-check-label" for="LSA_Response_Match_Score">
LSA Response Match Score
</label>
</div>
</div>
<h5 class="card-title">Part of Speech</h5>
<div class="col">
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="POS_CLAWS" />
<label class="form-check-label" for="POS_CLAWS">
Part of Speech
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="Word_Content_Or_Function" />
<label class="form-check-label" for="Word_Content_Or_Function">
Content or Function?
</label>
</div>
<div class="form-check">
<input class="form-check-input dataCheckbox" type="checkbox" value="sameValueRepeated, consistentPattern, containsZeros, containsEmptyCells" id="flexCheckDefault" />
<label class="form-check-label" for="Word_POS">
Part of Speech Limited
</label>
</div>
</div>