-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwriting_features.csv
We can't make this file beautiful and searchable because it's too large.
998 lines (998 loc) · 804 KB
/
writing_features.csv
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
essay_id_num,Student_ID,course_discipline,Upload_survey_Q1,Upload_survey_Q2,Upload_survey_Q3,Upload_survey_Q4,Upload_survey_Q5,Ufeat_system_4_NonGen_Fr1000_words,Ufeat_system_4_NonGen_prop_sent,Ufeat_verb_metaphor_raw_count,Ufeat_proportion_verb_metaphor,Ufeat_log_1000_proportion_verb_metaphor,Ufeat_uv_ArgNar,Ufeat_uv_ArgNarGeneralPronouns,Ufeat_uv_General,Ufeat_uv_Pronouns,Ufeat_avgPosETSL,Ufeat_avgNegETSL,Ufeat_avgSaturationETSL,Ufeat_avgPosVADER,Ufeat_avgNegVADER,Ufeat_avgSaturationVADER,Ufeat_max_lsa5,Ufeat_VocabularyRichness3,Ufeat_COLPREP,Ufeat_DIS_COH,Ufeat_GRAMMATICALITY,Ufeat_GUMS101,Ufeat_GUMS102,Ufeat_GUMS103,Ufeat_GUMS104,Ufeat_GUMS105,Ufeat_GUMS106,Ufeat_GUMS107,Ufeat_GUMS108,Ufeat_GUMS109,Ufeat_GUMS201,Ufeat_GUMS202,Ufeat_GUMS203,Ufeat_GUMS204,Ufeat_GUMS205,Ufeat_GUMS206,Ufeat_GUMS207,Ufeat_GUMS208,Ufeat_GUMS209,Ufeat_GUMS210,Ufeat_GUMS301,Ufeat_GUMS302,Ufeat_GUMS303,Ufeat_GUMS304,Ufeat_GUMS305,Ufeat_GUMS306,Ufeat_GUMS307,Ufeat_GUMS308,Ufeat_GUMS309,Ufeat_GUMS310,Ufeat_GUMS311,Ufeat_GUMS312,Ufeat_GUMS401,Ufeat_GUMS402,Ufeat_GUMS403,Ufeat_GUMS404,Ufeat_GUMS405,Ufeat_GUMS406,Ufeat_GUMS501,Ufeat_GUMS502,Ufeat_GUMS503,Ufeat_GUMS504,Ufeat_GUMS505,Ufeat_GUMS506,Ufeat_LOGDTA,Ufeat_LOGDTU,Ufeat_SVF,Ufeat_WORDLN_2,Ufeat_k,Ufeat_m,Ufeat_m_minus_k,Ufeat_m_minus_k_over_n,Ufeat_sentences_between_m_and_k,Ufeat_paragraphs_between_m_and_k,Ufeat_TopicDev_largestElabTopic_4.5,Ufeat_TopicDev_largestElabTopic_4.5_logFr1000,Ufeat_Sources,Ufeat_Sources_norm,Ufeat_claims,Ufeat_claims_agnostic,Ufeat_claims_agnostic_norm,Ufeat_claims_boost,Ufeat_claims_boost_norm,Ufeat_claims_hedge,Ufeat_claims_hedge_norm,Ufeat_claims_norm,Ufeat_complex_clauses,Ufeat_complex_clauses_norm,Ufeat_contractions,Ufeat_contractions_norm,Ufeat_gum_errors,Ufeat_gum_errors_norm,Ufeat_pronouns,Ufeat_pronouns_norm,Ufeat_section_and_citation_headers,Ufeat_section_and_citation_headers_norm,Ufeat_sentence_count,Ufeat_sentence_count_norm,Ufeat_transition_terms,Ufeat_transition_terms_norm,Ufeat_typestokens,Ufeat_unnecessary_words,Ufeat_unnecessary_words_norm,Ufeat_verb_choice,Ufeat_verb_choice_norm,Ufeat_word_count,GenreAnnotation_External_Sources_Required,GenreAnnotation_Source_Use,GenreAnnotation_Genre_Classification_Bin,GenreAnnotation_Writing_Aim,GenreAnnotation_Annotator,GenreAnnotation_Version,Persuasive_Subgenre_Classification,Persuasive_Subgenre_Description
WF0001_U1,WF0001,Business,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.605232705,0.710526316,8,0.103896104,4.652970374,2.655740484,3.416914639,3.42147794,3.338149027,0.168479655,0.030050934,0.198513611,0.039558574,-0.002843803,0.042402377,0.91325,0.469639751,0.512800454,-0.618723802,2.682500171,6.935825611,1.129235548,0,0,2,1,0,0,2,0,2,1,0,0,0,0,0,0,0,11,0,0,0,5,0,0,0,0,0,0,0,46.87160426,0,0,8,0,0,0,7,28,0,3,0,3.978831675,2.397895273,3.621588851,4.739795918,10,590,580,0.873493976,36,7,6,1.001566909,0,0,16,11,0.016566265,1,0.001506024,4,0.006024096,0.024096386,7,0.010542169,0,0,19,0.028614458,60,0.090361446,2,0.003012048,40,0.060240964,12,0.018072289,0.405120482,5,0.00753012,1,0.001506024,664,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0002_U1,WF0002,English,No one helped me,A lot,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.754055242,0.84375,16,0.098159509,4.596729758,3.358259397,3.19978444,3.37230605,3.222457564,0.096060076,0.054417581,0.150477657,0.016658584,-0.020489816,0.0371484,0.89642,0.321898195,0.64214905,-2.076417917,3.243029476,7.406626484,3.654580965,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,2,0,1,0,2,0,0,0,0,2,102.2045606,0,0,7,0,0,1,2,57,0,4,0,4.840242308,2.079441542,4.200410335,4.770750988,29,1090,1061,0.911512027,60,6,17,1.193258513,3,0.00257732,56,41,0.035223368,9,0.007731959,6,0.005154639,0.048109966,24,0.020618557,9,0.007731959,10,0.008591065,111,0.095360825,2,0.001718213,68,0.058419244,32,0.027491409,0.33419244,3,0.00257732,3,0.00257732,1164,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0002_U2,WF0002,English,No one helped me,A lot,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.697617474,0.767857143,12,0.1,4.615120517,3.340990409,3.237448526,3.247250203,3.036391159,0.143522584,0.0418993,0.185421885,0.0306875,-0.01240625,0.04309375,1,0.507945658,0.77981189,-0.093964231,2.991424384,8.677954594,2.985929362,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,6,0,1,0,4,0,5,0,0,0,0,3,100.2579697,0,0,11,1,0,0,4,46,0,6,0,4.1756685,2.48490665,4.224834752,5.226632522,228,737,509,0.546723953,24,0,12,1.142682431,8,0.008592911,14,8,0.008592911,3,0.003222342,3,0.003222342,0.015037594,12,0.012889366,8,0.008592911,13,0.01396348,48,0.051557465,1,0.001074114,59,0.063372718,13,0.01396348,0.395273899,0,0,1,0.001074114,931,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0002_U3,WF0002,English,No one helped me,A lot,0,1,I completed the assignment on a tablet (such as an iPad).,6.168202034,0.476190476,14,0.172839506,5.158132495,2.911033151,3.468957592,3.519734031,3.364300636,0.13820132,0.021693952,0.159895273,0.029748823,-0.004788069,0.034536892,1,0.236409802,0.649234796,-0.892669014,2.978385493,4.115255478,1.902358271,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,33,0,2,1,2,0,0,0,0,0,0,0,54.87710572,0,0,8,0,0,0,1,20,2,18,1,5.345518968,1.098612289,3.241740288,4.488076312,14,567,553,0.793400287,33,0,16,1.379405669,0,0,17,14,0.020086083,2,0.00286944,1,0.00143472,0.024390244,12,0.017216643,0,0,36,0.051649928,82,0.117647059,0,0,40,0.057388809,10,0.014347202,0.43472023,4,0.005738881,1,0.00143472,697,,No,3,Reflect,Annotator2,Draft,N/A,N/A
WF0002_U4,WF0002,English,No one helped me,A lot,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.609648884,0.685714286,26,0.302325581,5.714806755,3.269290111,3.477268918,3.481630198,3.523529021,0.088794797,0.024375933,0.11317073,0.017592593,-0.00238604,0.019978632,0.91513,0.220126711,0.637444795,-0.241086129,2.937518499,2.831460881,2.04523081,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.17831631,0,0,0,0,1,0,4,26,0,5,0,4.247065649,2.302585093,3.893661692,4.467811159,3,761,758,0.985695709,37,4,23,1.490084571,0,0,25,22,0.028608583,1,0.00130039,2,0.00260078,0.032509753,15,0.019505852,2,0.00260078,1,0.00130039,64,0.083224967,0,0,39,0.050715215,20,0.026007802,0.417425228,5,0.006501951,1,0.00130039,769,,No,3,Reflect,Annotator2,Final,N/A,N/A
WF0002_U5,WF0002,English,No one helped me,A lot,0,1,I completed the assignment on a tablet (such as an iPad).,6.589993248,0.731707317,15,0.172413793,5.155680606,3.002193578,3.386816706,3.409098515,3.431044543,0.150295492,0.02026116,0.170556652,0.034016393,-0.004098361,0.038114754,0.85601,0.256716118,0.718289837,-0.932676827,3.364912308,3.085380696,1.790246453,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.14866401,0,0,5,0,0,1,4,33,0,3,0,4.019381524,2.48490665,3.36062676,4.226047904,15,596,581,0.793715847,36,4,16,1.359036775,0,0,22,18,0.024590164,2,0.00273224,2,0.00273224,0.030054645,13,0.017759563,0,0,2,0.00273224,89,0.121584699,0,0,45,0.06147541,11,0.015027322,0.404371585,4,0.005464481,1,0.00136612,732,,No,3,Reflect,Annotator2,Final,N/A,N/A
WF0002_U6,WF0002,English,No one helped me,A little,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.419363805,0.576923077,10,0.144927536,4.983110171,3.139903417,3.33732523,3.503095854,3.241066971,0.108973504,0.038183011,0.147156516,0.021653543,-0.007874016,0.029527559,0.68283,0.323847662,0.67257946,-0.202265828,3.117804783,2.02599065,1.407986139,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,46.21208755,0,0,0,0,0,4,4,18,0,0,0,3.828641396,2.397895273,3.740466881,4.733201581,268,369,101,0.181981982,3,0,9,1.235937708,0,0,12,4,0.007207207,0,0,8,0.014414414,0.021621622,7,0.012612613,3,0.005405405,5,0.009009009,38,0.068468468,0,0,30,0.054054054,16,0.028828829,0.484684685,1,0.001801802,0,0,555,,No,1,Persuade,Annotator2,Final,N/A,N/A
WF0002_U7,WF0002,English,No one helped me,A lot,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.602908936,0.683333333,8,0.067226891,4.22283878,3.342118519,3.356874233,3.255422564,3.246312568,0.112518063,0.031182649,0.143700712,0.014236746,-0.007678245,0.021914991,0.95128,0.528194614,0.651185407,-0.079274251,2.874741036,10.64709772,3.317346006,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,16,0,5,0,1,0,2,1,0,0,0,0,122.9922512,0,0,8,0,2,0,4,50,0,3,3,4.553876892,2.397895273,4.605560013,4.944497608,6,1125,1119,0.919474117,61,5,25,1.333292416,2,0.001643385,46,31,0.025472473,8,0.006573541,7,0.005751849,0.037797864,18,0.014790468,1,0.000821693,21,0.017255546,61,0.050123254,1,0.000821693,64,0.052588332,23,0.018898932,0.377978636,2,0.001643385,5,0.004108463,1217,,Yes,1,Persuade,Annotator2,Final,N/A,N/A
WF0007_U1,WF0007,History,A teacher,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.17608783,0.594594595,12,0.136363636,4.922631689,3.302018551,0.959005987,3.408098999,0.950938785,0.097321094,0.088391581,0.185712674,0.015577508,-0.026823708,0.042401216,0.89047,0.385366217,0.636852243,-0.199690789,2.947230267,3.402440294,2.384331119,0,0,0,0,0,0,0,0,5,1,0,0,0,0,0,0,0,5,2,0,0,0,0,2,0,0,0,0,0,58.89963878,0,0,0,1,1,0,5,22,4,6,0,3.999728586,2.48490665,4.089637461,4.861068702,7,634,627,0.831564987,41,6,19,1.418283704,0,0,23,18,0.023872679,2,0.00265252,3,0.00397878,0.030503979,14,0.018567639,5,0.0066313,18,0.023872679,24,0.031830239,1,0.00132626,45,0.059681698,21,0.027851459,0.407161804,1,0.00132626,2,0.00265252,754,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0008_U1,WF0008,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.785682348,0.905263158,43,0.154676259,5.047778588,2.978171892,3.302335047,3.201975653,3.12913936,0.108489204,0.029067227,0.137556431,0.020783582,-0.006579602,0.027363184,1,0.452699563,0.535283677,-3.167761037,2.813544081,12.67782697,8.455934449,0,6,3,0,3,0,1,1,5,11,0,0,0,0,0,0,0,4,0,2,1,5,0,9,0,0,0,0,2,253.9222306,0,0,11,1,3,0,3,89,0,3,0,5.398162702,2.197224577,4.047342373,4.775766717,93,1994,1901,0.847525635,87,9,19,0.976386576,4,0.001783326,93,55,0.024520731,23,0.010254124,15,0.006687472,0.041462327,35,0.015604102,2,0.000891663,50,0.022291574,199,0.088720464,1,0.000445831,104,0.046366473,61,0.02719572,0.279536335,8,0.003566652,5,0.002229157,2243,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0009_U1,WF0009,Criminology,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.793134492,0.840909091,24,0.16,5.081404365,2.965084839,0.996473621,3.23373476,0.86174804,0.091086221,0.121698609,0.212778549,0.013300879,-0.039431533,0.052732412,1,0.507244397,0.70563273,-0.969550637,2.794793168,22.43736984,3.428496762,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,1,10,0,5,0,14,0,1,0,0,0,0,3,161.2875097,0,0,26,0,1,0,7,79,0,0,2,4.861748513,2.48490665,4.763376684,4.843326886,15,1487,1472,0.829295775,71,12,26,1.19445571,4,0.002253521,76,52,0.029295775,13,0.007323944,11,0.006197183,0.042816901,34,0.01915493,1,0.00056338,11,0.006197183,30,0.016901408,6,0.003380282,94,0.052957746,60,0.033802817,0.272676056,1,0.00056338,5,0.002816901,1775,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0010_U1,WF0010,Biology,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,5.656923047,0.384615385,5,0.151515152,5.027263945,2.952479043,0.45651457,2.066205705,0.482375984,0.085779598,0.048853342,0.13463294,0.009233449,-0.008797909,0.018031359,0.23326,0.477464411,0.592657404,-0.172915409,2.56292696,3.083330751,0.273748036,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,6,0,0,0,0,0,2,0,0,0,0,0,34.34019949,0,0,0,0,2,2,1,8,0,2,0,3.703064089,1.945910149,3.400792361,5.14084507,2,315,313,0.981191223,12,1,24,1.88215503,0,0,7,3,0.009404389,1,0.003134796,3,0.009404389,0.021943574,4,0.012539185,0,0,8,0.02507837,3,0.009404389,1,0.003134796,14,0.043887147,6,0.018808777,0.561128527,0,0,0,0,319,,Yes,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0010_U2,WF0010,Biology,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,5.857913979,0.272727273,11,0.289473684,5.671512984,2.516238171,0.565590326,2.054913036,0.513371297,0.05855472,0.012900585,0.071314954,0.007807018,-0.003596491,0.011403509,0.42564,0.447972475,0.486282325,0.325285055,2.47230739,1.234933156,0.977449707,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,28.16802967,0,0,0,0,1,0,1,6,0,4,0,4.028916757,1.609437912,3.371847301,5.153024911,29,285,256,0.859060403,10,0,9,1.494173278,0,0,2,2,0.006711409,0,0,0,0,0.006711409,5,0.016778523,0,0,4,0.013422819,4,0.013422819,0,0,13,0.043624161,4,0.013422819,0.523489933,1,0.003355705,1,0.003355705,298,,No,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0012_U1,WF0012,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.739148362,0.806722689,50,0.15625,5.057836896,2.741879807,0.622796568,2.881046455,0.587983053,0.158942844,0.033701434,0.192619394,0.022298258,-0.008594028,0.030892286,1,0.779224782,0.642800656,0.324104948,2.647220704,23.18490354,5.346471669,0,2,0,0,2,0,1,1,16,1,0,0,3,0,0,0,0,27,0,9,0,8,0,2,1,0,0,0,1,311.1765481,0,0,31,2,1,1,5,104,5,4,0,4.744207228,3.17805383,4.166037218,5.474981871,61,2538,2477,0.800840608,115,14,53,1.258528748,3,0.000969932,129,77,0.024894924,30,0.009699321,22,0.007112835,0.041707081,48,0.015518914,4,0.001293243,47,0.015195603,82,0.026511478,2,0.000646621,125,0.040413838,61,0.019721953,0.280957,2,0.000646621,3,0.000969932,3093,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0012_U2,WF0012,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.730891858,0.821917808,33,0.153488372,5.040118832,2.975671334,0.812964876,2.875182548,1.036684038,0.116368528,0.032493087,0.148855852,0.017233429,-0.006585014,0.023818444,1,0.767301378,0.618322826,0.30360549,2.620021202,15.83102746,3.257446719,0,1,0,0,0,0,0,0,7,0,2,0,0,0,0,0,0,20,0,3,0,5,0,2,0,0,0,1,1,174.4148999,0,0,17,3,0,0,4,65,0,3,1,5.039899849,2.397895273,4.26374362,5.753972925,15,1715,1700,0.885878061,53,0,37,1.307086698,5,0.002605524,85,58,0.030224075,15,0.007816571,12,0.006253257,0.044293903,26,0.013548723,3,0.001563314,22,0.011464304,33,0.017196456,1,0.000521105,80,0.041688379,50,0.026055237,0.345492444,0,0,7,0.003647733,1919,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0012_U3,WF0012,English,Someone else,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.809711579,0.880434783,44,0.1375,4.930870326,2.881686582,2.280620145,3.034385668,2.126735813,0.115380419,0.023343456,0.138723875,0.023977035,-0.005480167,0.029457203,1,0.640881374,0.610224866,0.365823217,2.545370642,15.60765555,6.798645444,0,0,1,0,1,0,0,0,11,6,0,0,5,0,0,0,1,29,0,8,0,7,0,4,1,0,0,1,6,209.2540517,0,0,21,2,2,0,4,85,1,0,2,5.447168313,2.302585093,4.153066574,5.156398104,14,2032,2018,0.781564679,79,10,42,1.23720331,6,0.00232378,12,5,0.001936483,2,0.000774593,5,0.001936483,0.00464756,9,0.00348567,0,0,6,0.00232378,49,0.018977537,2,0.000774593,94,0.036405887,7,0.002711077,0.284275755,2,0.000774593,1,0.000387297,2582,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0015_U2,WF0015,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,5.652653001,0.3,1,0.041666667,3.753417975,1.811019259,0.718505519,1.758707444,0.513371297,0.084237614,0.019364954,0.103602568,0.009222222,-0.004444444,0.013666667,0.64823,0.321234659,0.383387352,0.447932636,2.342099457,1.385087051,0.260582702,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,18.90333028,0,0,0,0,0,0,2,5,0,3,0,3.601868077,1.791759469,4.061648786,5.154545455,8,240,232,0.902723735,9,2,9,1.55653714,0,0,10,9,0.035019455,0,0,1,0.003891051,0.038910506,2,0.007782101,1,0.003891051,3,0.011673152,5,0.019455253,1,0.003891051,12,0.046692607,4,0.015564202,0.498054475,0,0,1,0.003891051,257,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0020_U1,WF0020,English,A tutor,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.392470185,0.580645161,6,0.083333333,4.4347772,2.680103788,3.320566036,2.987810959,3.292113235,0.090276726,0.066165901,0.156442627,0.014126016,-0.007113821,0.021239837,0.88598,-0.055721102,0.543109466,-0.755340431,3.195252473,4.167353127,1.993190695,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,30.77356411,0,0,0,0,0,2,4,21,0,4,0,3.545091561,2.63905733,3.137470222,3.911340206,114,229,115,0.211009174,24,0,2,0.669291284,0,0,31,23,0.042201835,3,0.005504587,5,0.009174312,0.056880734,10,0.018348624,0,0,2,0.003669725,79,0.144954128,1,0.001834862,37,0.067889908,22,0.040366972,0.343119266,0,0,2,0.003669725,545,,No,3,Reflect,Annotator2,Final,N/A,N/A
WF0021_U1,WF0021,English,No one helped me,A lot,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.15700969,0.422222222,15,0.153061224,5.037350085,3.262292887,3.267385783,3.516908916,3.122907991,0.080859387,0.038794618,0.119654006,0.016988032,-0.00887633,0.025864362,0.98377,0.248714069,0.594189555,-0.845666225,2.571434882,7.010111667,3.450637217,0,1,0,1,0,0,0,0,3,1,0,0,0,0,0,0,0,55,2,6,0,5,1,3,0,0,0,0,2,65.5335701,0,0,6,2,0,0,3,31,1,4,6,4.301358732,2.302585093,3.699334396,4.552845528,54,725,671,0.810386473,42,4,12,1.190128614,0,0,25,22,0.026570048,2,0.002415459,1,0.001207729,0.030193237,9,0.010869565,0,0,71,0.085748792,71,0.085748792,0,0,48,0.057971014,17,0.020531401,0.390096618,4,0.004830918,6,0.007246377,828,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0021_U2,WF0021,English,No one helped me,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.67284782,0.764705882,9,0.290322581,5.674431178,2.812639784,0.968602233,2.453503993,1.002572054,0.119597821,0.059355089,0.178917698,0.008362676,-0.023855634,0.03221831,0.41461,0.418576605,0.837451985,0.027049933,3.08984359,1.380199539,0.51457367,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,1,0,1,0,0,2,1,0,0,0,0,0,32.57762597,0,0,0,0,0,0,2,14,0,1,0,4.039536326,1.609437912,4.42329924,4.940140845,210,251,41,0.132686084,2,0,4,1.144418015,0,0,18,8,0.025889968,9,0.029126214,1,0.003236246,0.058252427,7,0.022653722,0,0,7,0.022653722,6,0.019417476,0,0,19,0.061488673,9,0.029126214,0.533980583,1,0.003236246,0,0,309,,Unsure,1,Persuade,Annotator3,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WF0021_U3,WF0021,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.427248491,0.59375,17,0.191011236,5.257553891,3.163772288,0.976347984,3.296139597,1.016749451,0.124634986,0.043199477,0.167834463,0.020113086,-0.009410339,0.029523425,0.92821,0.428134588,0.63145144,0.189547296,2.881291308,3.068449693,1.685653308,0,1,2,0,0,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,76.7654241,0,0,0,0,0,4,6,22,0,0,0,3.858297606,2.564949357,4.017463486,4.782467532,1,542,541,0.814759036,38,7,16,1.399611178,0,0,34,22,0.03313253,3,0.004518072,9,0.013554217,0.051204819,15,0.022590361,0,0,13,0.019578313,13,0.019578313,0,0,39,0.05873494,12,0.018072289,0.417168675,1,0.001506024,0,0,664,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0023_U1,WF0023,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.708753441,0.8125,7,0.291666667,5.679034305,1.887227558,1.030562953,2.095412462,0.91546542,0.078238719,0.061426492,0.139665211,0.023034934,-0.014737991,0.037772926,0.78567,0.17993539,0.519705445,-0.145388958,2.840546771,1.269026004,0.403829659,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,39.89404777,0,0,0,0,0,1,0,15,0,0,0,4.709530201,0.693147181,2.930517018,4.400900901,42,84,42,0.169354839,2,0,5,1.325542146,0,0,12,7,0.028225806,1,0.004032258,4,0.016129032,0.048387097,4,0.016129032,0,0,6,0.024193548,23,0.092741935,0,0,16,0.064516129,7,0.028225806,0.443548387,0,0,1,0.004032258,248,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0023_U2,WF0023,English,No one helped me,A lot,0,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.536823341,0.71875,10,0.135135135,4.913648033,3.272938423,1.028581558,3.098376575,1.060653623,0.129446826,0.064420723,0.193867549,0.02082495,-0.018863179,0.039688129,0.88932,0.227563438,0.624168367,-0.198487161,3.186715096,3.319746274,1.199173508,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,1,72.09219134,0,0,0,0,0,2,3,24,3,0,0,3.997180814,2.197224577,3.472344183,4.555102041,20,275,255,0.463636364,34,4,4,0.917648707,0,0,36,19,0.034545455,8,0.014545455,9,0.016363636,0.065454545,6,0.010909091,4,0.007272727,6,0.010909091,52,0.094545455,0,0,36,0.065454545,15,0.027272727,0.350909091,0,0,1,0.001818182,550,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0023_U3,WF0023,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.700689057,0.766666667,13,0.151162791,5.024950939,3.151268446,0.708524325,3.30599347,0.557857591,0.098394979,0.033814693,0.132209672,0.040095465,-0.007279236,0.047374702,0.94805,0.355079782,0.602866788,-1.160100325,2.692174895,7.325546796,1.381898428,0,0,0,1,0,0,0,0,5,0,0,0,1,0,0,0,0,41,0,0,0,2,0,1,1,0,0,0,0,115.0953729,0,0,6,0,3,1,3,49,3,4,0,4.156476343,2.564949357,3.955230178,4.996385542,1,414,413,0.439361702,62,5,8,0.978209665,0,0,19,11,0.011702128,0,0,8,0.008510638,0.020212766,20,0.021276596,0,0,59,0.062765957,41,0.043617021,0,0,68,0.072340426,17,0.018085106,0.323404255,0,0,1,0.00106383,940,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0029_U1,WF0029,English,A tutor,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.630480823,0.697674419,21,0.143835616,4.97559942,3.005183583,0.947896918,3.297739078,0.641946704,0.106304711,0.04569338,0.151998091,0.022654867,-0.010730088,0.033384956,0.76568,0.469300683,0.658810426,-0.793958786,2.823953742,4.684260032,2.900885641,0,0,0,0,0,0,1,0,3,1,0,0,0,0,0,0,0,2,0,1,0,1,0,1,0,0,0,0,3,110.282336,0,0,0,0,0,3,3,34,2,1,0,4.509026325,2.48490665,4.062705073,4.897247706,24,1010,986,0.816901408,35,6,14,1.100336276,0,0,48,34,0.028169014,6,0.004971002,8,0.006628003,0.03976802,21,0.017398509,0,0,11,0.009113505,79,0.065451533,1,0.0008285,49,0.04059652,22,0.018227009,0.33968517,0,0,3,0.002485501,1207,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0030_U1,WF0030,English,A teacher,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.554729412,0.710526316,22,0.181818182,5.208492117,3.303802683,2.943101966,3.443958184,2.848293501,0.07234752,0.045636707,0.117972106,0.013060606,-0.008333333,0.021393939,0.87399,0.254454053,0.508267155,-1.024190846,2.664973303,4.166316194,2.095887769,0,0,0,0,0,0,1,0,6,1,0,0,1,0,0,0,0,49,0,0,0,0,0,3,0,0,0,0,0,101.3289595,0,7,0,0,1,0,4,29,1,2,2,4.394449155,2.302585093,4.292076057,4.611111111,20,850,830,0.924276169,40,5,8,0.996016065,0,0,25,14,0.0155902,8,0.008908686,3,0.003340757,0.027839644,13,0.014476615,3,0.003340757,57,0.063474388,76,0.084632517,0,0,43,0.047884187,18,0.020044543,0.35857461,0,0,5,0.005567929,898,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0030_U2,WF0030,English,No one helped me,Not at all,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.241592826,0.571428571,6,0.103448276,4.648691981,3.180820572,3.342564015,3.099887096,3.550173462,0.05208365,0.077051116,0.129134766,0.007461538,-0.023,0.030461538,0.82726,0.13230582,0.582507212,0.010437771,3.150249363,1.733814718,0.66906811,0,1,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,23.07416428,0,0,0,0,2,0,1,14,1,5,0,4.17438727,1.609437912,3.462823471,4.292307692,38,301,263,0.74084507,18,2,5,1.178531122,0,0,8,5,0.014084507,1,0.002816901,2,0.005633803,0.022535211,10,0.028169014,3,0.008450704,5,0.014084507,43,0.121126761,0,0,23,0.064788732,18,0.050704225,0.484507042,1,0.002816901,0,0,355,,Yes,1,Persuade,Annotator3,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WF0030_U3,WF0030,English,No one helped me,A lot,0,0,I completed the assignment on a laptop or desktop computer.,6.395430642,0.6,12,0.142857143,4.968820744,2.957689305,2.405525239,3.490538074,1.952134079,0.135271639,0.06203935,0.197310989,0.033832335,-0.017664671,0.051497006,0.79426,0.404745095,0.6752167,0.162856476,2.97878202,5.179335856,1.278604138,0,3,0,0,1,0,1,0,8,1,0,0,1,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,1,131.9009532,0,0,0,1,0,1,4,21,4,5,0,4.323530428,2.397895273,4.766110555,4.827710843,79,404,325,0.342827004,35,5,6,0.865051472,0,0,38,30,0.03164557,6,0.006329114,2,0.002109705,0.040084388,14,0.014767932,4,0.004219409,19,0.020042194,39,0.041139241,0,0,40,0.042194093,25,0.026371308,0.363924051,1,0.001054852,2,0.002109705,948,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0031_U1,WF0031,History,A tutor,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.619361297,0.776119403,18,0.142857143,4.968820744,3.066363935,3.301553752,3.143614855,3.204384348,0.078844595,0.068393499,0.147238094,0.008140611,-0.025092507,0.033233117,0.99999,0.496734853,0.647181112,-0.31073763,2.72389236,17.85094422,3.224662161,0,0,1,0,1,0,0,0,1,0,1,0,1,0,0,0,0,11,0,16,0,7,0,0,2,0,0,0,3,110.7546943,0,0,19,0,3,0,5,56,0,6,0,4.257030144,2.708050201,4.461730136,5.089707271,5,1036,1031,0.791250959,64,7,10,0.938249312,5,0.003837299,29,19,0.014581734,3,0.002302379,7,0.005372218,0.022256332,12,0.009209517,5,0.003837299,15,0.011511896,77,0.059094398,1,0.00076746,73,0.056024559,30,0.023023791,0.366078281,1,0.00076746,0,0,1303,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0031_U2,WF0031,History,A tutor,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.671892289,0.775862069,16,0.114285714,4.747413519,3.406193498,1.181617995,3.228730345,1.111330617,0.135627748,0.042319265,0.177947013,0.025862069,-0.010414725,0.036276794,0.99999,0.455251901,0.593585498,-1.336919285,2.771650128,13.8820207,2.90687738,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,8,0,15,0,7,0,0,0,0,0,0,4,127.923876,0,0,15,0,0,0,2,49,0,6,1,5.164785974,1.791759469,4.417896134,5.051428571,55,1221,1166,0.925396825,56,0,8,0.866240442,0,0,75,51,0.04047619,14,0.011111111,10,0.007936508,0.05952381,18,0.014285714,9,0.007142857,9,0.007142857,23,0.018253968,0,0,62,0.049206349,23,0.018253968,0.364285714,0,0,6,0.004761905,1260,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0032_U1,WF0032,History,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.749196244,0.866666667,34,0.111842105,4.725989543,3.116604838,1.436498419,3.266447371,1.071725123,0.122526631,0.079093769,0.2016204,0.028038067,-0.033369937,0.061408004,0.97403,0.428414928,0.536090553,-3.41153739,3.020977371,8.165758348,5.842223485,0,0,3,0,1,0,1,0,7,6,0,0,4,0,0,0,0,1,3,0,0,0,0,2,0,0,0,0,4,219.2627754,0,0,6,0,2,4,6,93,1,1,0,4.782577728,2.833213344,3.983008134,4.483743842,31,2219,2188,0.961335677,110,9,10,0.731884622,0,0,155,128,0.056239016,16,0.007029877,11,0.00483304,0.068101933,34,0.014938489,14,0.006151142,34,0.014938489,122,0.053602812,0,0,114,0.050087873,54,0.023725835,0.271528998,1,0.000439367,22,0.009666081,2276,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0032_U2,WF0032,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.742467751,0.855769231,37,0.104225352,4.656104261,3.04157749,2.561492878,3.257622536,2.475818757,0.118497441,0.025648298,0.144145739,0.026035197,-0.004006211,0.030041408,1,0.438082482,0.537571719,-3.704868052,2.855454707,16.56719228,12.2229888,0,0,1,0,3,0,0,1,5,2,0,0,3,0,0,0,0,3,0,11,0,3,0,8,0,0,0,0,2,237.3638648,0,0,27,4,3,3,7,92,1,1,0,4.840450316,2.944438979,3.894845605,4.851913478,44,1865,1821,0.652454317,60,14,21,0.930652861,7,0.002508062,110,73,0.0261555,22,0.007882479,15,0.005374418,0.039412397,38,0.013615192,16,0.005732712,37,0.013256897,153,0.054819061,1,0.000358295,118,0.042278753,49,0.017556431,0.278753135,7,0.002508062,12,0.004299534,2791,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0032_U3,WF0032,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.708442761,0.707482993,39,0.102362205,4.63823937,3.027716271,3.143568479,3.196619871,3.201199031,0.110765271,0.065128483,0.175893754,0.017294396,-0.012736536,0.030030932,1,0.52087676,0.62759968,-1.426151626,2.925443275,29.36676203,11.83690014,0,1,1,2,1,0,1,2,7,1,0,0,0,0,0,0,0,25,0,8,0,7,0,4,1,0,1,0,4,249.4965016,0,0,38,4,0,0,8,111,23,4,1,4.823940552,3.091042453,4.108675812,5.053323594,1,2872,2871,0.884745763,132,17,29,0.99724768,10,0.003081664,147,114,0.035130971,10,0.003081664,23,0.007087827,0.045300462,36,0.011093991,33,0.010169492,63,0.019414484,159,0.048998459,1,0.000308166,163,0.050231125,61,0.018798151,0.267180277,4,0.001232666,8,0.002465331,3245,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0032_U4,WF0032,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.733798639,0.819672131,13,0.091549296,4.52774143,3.008283755,1.099187612,3.046694991,1.033283545,0.135474008,0.031586584,0.167053335,0.018541364,-0.006259071,0.024800435,0.99999,0.481409104,0.575909303,-0.383174022,2.786135488,10.2367356,3.401685913,0,2,0,0,2,0,2,0,3,0,0,0,2,0,0,0,0,13,0,3,0,1,0,8,0,0,0,0,1,160.0118283,0,0,10,0,1,0,4,53,0,4,0,4.824670746,2.397895273,3.987092313,5.013868613,1,1193,1192,0.794666667,67,9,19,1.135662602,1,0.000666667,56,36,0.024,6,0.004,14,0.009333333,0.037333333,24,0.016,0,0,23,0.015333333,30,0.02,1,0.000666667,70,0.046666667,38,0.025333333,0.34,2,0.001333333,3,0.002,1500,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0036_U1,WF0036,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.681998459,0.775,15,0.189873418,5.251610474,3.23591119,3.337500368,3.123016824,3.186016229,0.077749771,0.054471634,0.132221406,0.01244856,-0.011728395,0.024176955,0.81028,0.561687233,0.61927896,-0.210257731,2.873130241,3.758635041,1.825512066,0,0,1,1,1,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,104.4371508,0,0,0,0,2,1,1,35,0,3,0,4.783316371,1.791759469,4.295883191,5.285913529,22,731,709,0.842042755,32,0,21,1.413980311,0,0,27,20,0.023752969,4,0.004750594,3,0.003562945,0.032066508,18,0.021377672,3,0.003562945,12,0.014251781,53,0.062945368,1,0.001187648,42,0.049881235,12,0.014251781,0.427553444,1,0.001187648,1,0.001187648,842,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0036_U2,WF0036,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.70253944,0.75,16,0.170212766,5.142907028,3.176824829,3.285706074,3.009791912,3.251700953,0.120339194,0.031837511,0.152131929,0.033246269,-0.007798507,0.041044776,0.82685,0.501727732,0.624279013,0.083040339,2.489716111,2.548671112,1.562953352,0,0,1,3,1,0,0,0,2,0,0,0,0,0,0,0,0,22,0,0,0,0,0,0,0,0,0,0,0,97.71303741,0,0,0,0,0,2,1,25,0,0,0,4.847331743,1.609437912,4.50673777,5.497645212,18,739,721,0.929123711,26,1,9,1.100299472,0,0,32,29,0.037371134,2,0.00257732,1,0.00128866,0.041237113,13,0.016752577,3,0.003865979,31,0.039948454,28,0.036082474,0,0,30,0.038659794,18,0.023195876,0.429123711,1,0.00128866,0,0,776,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0036_U3,WF0036,English,No one helped me,Somewhat,0,0,I completed the assignment on a laptop or desktop computer.,6.758066585,0.87755102,34,0.2125,5.363636833,3.152991469,3.621801373,3.215761587,3.444223091,0.11598048,0.039645987,0.155626467,0.029554795,-0.004349315,0.03390411,0.95396,0.458538732,0.698196064,-1.465385892,3.115843087,7.686982388,5.38670993,0,0,1,2,0,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,0,0,0,0,2,158.1443434,0,0,9,0,2,1,4,88,0,4,1,4.8800433,2.397895273,4.432210118,4.685773481,364,1524,1160,0.697115385,80,0,19,1.094061071,0,0,60,36,0.021634615,11,0.006610577,13,0.0078125,0.036057692,26,0.015625,2,0.001201923,14,0.008413462,185,0.111177885,0,0,103,0.061899038,32,0.019230769,0.316105769,2,0.001201923,2,0.001201923,1664,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0040_U2,WF0040,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.488204709,0.633333333,9,0.152542373,5.033976574,2.965445114,0.969418677,3.368629494,0.868794704,0.090661015,0.034627292,0.125288307,0.027444254,-0.007118353,0.034562607,0.81572,0.242067191,0.569934929,-0.457070723,2.668405851,2.29969065,1.653547164,0,0,0,0,1,0,0,0,2,1,0,0,0,0,0,0,0,12,0,0,0,0,0,2,0,0,0,0,2,87.56010882,0,0,0,0,0,0,4,22,0,4,0,4.048300624,2.302585093,3.741850486,4.804537522,73,628,555,0.818584071,29,0,6,0.993416721,0,0,20,13,0.019174041,6,0.008849558,1,0.001474926,0.029498525,8,0.01179941,0,0,20,0.029498525,33,0.048672566,0,0,37,0.054572271,23,0.033923304,0.355457227,1,0.001474926,0,0,678,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0041_U1,WF0041,English,A teacher,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.423680596,0.529411765,12,0.166666667,5.121977881,3.280243945,3.373794908,3.291806238,3.272919019,0.057786708,0.080226542,0.13801325,0.009189895,-0.029486063,0.038675958,0.73545,0.340239688,0.545002821,0.145536618,2.166386237,6.914280066,2.458666065,0,0,1,0,0,0,0,0,5,2,1,0,1,0,0,0,0,10,0,1,0,7,0,3,0,0,0,0,0,66.42398962,0,0,0,4,0,1,0,14,0,0,2,5.223952951,1.098612289,3.973640558,5.147217235,475,572,97,0.148091603,1,0,6,1.00690676,0,0,9,4,0.00610687,2,0.003053435,3,0.004580153,0.013740458,2,0.003053435,14,0.021374046,23,0.035114504,25,0.038167939,29,0.044274809,19,0.029007634,15,0.022900763,0.459541985,1,0.001526718,1,0.001526718,655,,Yes,1,Persuade,Annotator3,Final,5,"Sentence Level Outline, with Thesis"
WF0041_U2,WF0041,English,A teacher,A lot,1,1,I completed the assignment on a laptop or desktop computer.,5.894402834,0.571428571,11,0.189655172,5.250466416,3.324131979,1.001316644,3.211403026,1.077696003,0.104190702,0.070947535,0.175138238,0.017220903,-0.017458432,0.034679335,0.4185,0.219690782,0.440269734,-0.472563898,2.927309149,6.408748361,1.751729961,0,0,1,0,2,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,5,0,2,0,0,0,0,1,49.41520819,0,0,0,2,0,1,1,17,1,0,1,4.231688124,1.791759469,3.758667336,4.670702179,6,237,231,0.462,9,1,3,0.84509804,0,0,15,8,0.016,4,0.008,3,0.006,0.03,2,0.004,8,0.016,11,0.022,24,0.048,16,0.032,22,0.044,6,0.012,0.518,0,0,0,0,500,,Yes,1,Persuade,Annotator3,Draft,DUP,Duplicates
WF0043_U1,WF0043,Business,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.736371952,0.733333333,8,0.19047619,5.254763469,2.467582879,3.472190825,2.744003666,3.502030833,0.168863919,0.019507692,0.188371612,0.032230769,-0.002384615,0.034615385,0.47996,0.398659589,0.524357265,0.00717914,2.965577937,1.58302587,0.354437489,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,32.532043,0,0,0,0,0,1,0,14,0,0,0,4.685212894,1.098612289,4.214571274,4.821538462,174,302,128,0.368876081,5,0,5,1.187780709,0,0,20,15,0.043227666,1,0.002881844,4,0.011527378,0.057636888,6,0.017291066,0,0,4,0.011527378,23,0.066282421,0,0,15,0.043227666,9,0.025936599,0.521613833,2,0.005763689,3,0.008645533,347,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0043_U2,WF0043,Business,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.251967054,0.545454545,7,0.116666667,4.767855768,2.995748184,3.366280709,3.338712339,3.360867527,0.109316425,0.01843151,0.127747936,0.021815009,-0.000349,0.022164049,0.67748,0.333404175,0.572699598,0.319681557,2.986697604,1.743693286,0.631096615,0,1,0,0,4,0,1,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,53.8911972,0,0,0,0,0,3,5,14,0,0,0,3.86248256,2.48490665,3.470117655,4.753064799,34,341,307,0.503278689,14,0,14,1.379320381,0,0,10,7,0.01147541,1,0.001639344,2,0.003278689,0.016393443,6,0.009836066,0,0,10,0.016393443,31,0.050819672,0,0,28,0.045901639,13,0.021311475,0.47704918,1,0.001639344,0,0,610,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0043_U3,WF0043,Business,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,5.787275079,0.4,4,0.222222222,5.408167787,1.584570807,3.09864746,1.825526508,3.390882275,0.140429685,0.009381599,0.149811283,0.023333333,-0.000128,0.023461538,0.38988,0.477317166,0.547672697,-0.162163394,2.756802147,2.329473347,0.244004594,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,11.14315647,0,0,0,0,1,1,2,6,0,1,0,3.301113923,1.945910149,3.598164249,5.215789474,16,90,74,0.36453202,3,0,6,1.485105743,0,0,3,1,0.004926108,1,0.004926108,1,0.004926108,0.014778325,4,0.019704433,0,0,3,0.014778325,16,0.078817734,1,0.004926108,14,0.068965517,5,0.024630542,0.596059113,1,0.004926108,0,0,203,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0043_U4,WF0043,Business,A tutor,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.365365272,0.55,8,0.123076923,4.820901721,3.108303545,3.491074433,3.121542643,3.537050677,0.130892627,0.02372312,0.154596879,0.012216981,-0.002877358,0.01509434,0.54336,0.412651828,0.761570563,-0.216296357,2.885568472,1.585117161,0.725067335,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,5,0,0,0,0,0,54.18777458,0,0,0,0,0,0,3,12,1,2,2,4.183956721,2.079441542,4.505268434,4.824761905,17,476,459,0.819642857,20,4,8,1.184285738,0,0,20,14,0.025,4,0.007142857,2,0.003571429,0.035714286,10,0.017857143,0,0,10,0.017857143,37,0.066071429,0,0,24,0.042857143,16,0.028571429,0.471428571,3,0.005357143,0,0,560,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0043_U5,WF0043,Business,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.444959414,0.565217391,9,0.126760563,4.850157914,2.941909417,3.36862148,2.835275369,3.352953246,0.160587042,0.017814815,0.178401857,0.027407407,-0.002916667,0.030324074,0.74919,0.481914019,0.576826499,-0.509772223,2.64799006,2.839879336,0.600934275,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,13,0,0,0,0,0,1,0,0,0,0,0,39.1335708,0,0,0,0,0,4,4,15,0,0,0,3.985273467,2.302585093,3.953875886,5.100371747,20,511,491,0.86443662,24,0,9,1.226472831,0,0,23,20,0.035211268,2,0.003521127,1,0.001760563,0.040492958,12,0.021126761,0,0,14,0.024647887,41,0.072183099,0,0,28,0.049295775,13,0.022887324,0.454225352,1,0.001760563,3,0.00528169,568,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0045_U1,WF0045,Business,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.64932975,0.769230769,7,0.109375,4.703883659,3.222600356,3.577968553,2.769395042,3.490388317,0.146013326,0.015772595,0.161745104,0.024336735,-0.000408,0.024744898,0.80304,0.418989364,0.488682993,-0.183668253,2.61724303,2.292479143,0.728688751,0,1,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,10,0,0,0,0,0,4,0,0,0,0,0,39.0784567,0,0,0,0,0,3,1,22,0,0,0,4.80811103,1.386294361,3.592314376,4.975510204,19,345,326,0.616257089,25,1,12,1.374460737,0,0,27,11,0.020793951,12,0.02268431,4,0.007561437,0.051039698,13,0.024574669,0,0,19,0.035916824,58,0.109640832,0,0,27,0.051039698,5,0.009451796,0.413988658,3,0.005671078,3,0.005671078,529,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0045_U2,WF0045,Business,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.649767842,0.733333333,2,0.04,3.713572067,2.603442675,3.417587037,2.393302268,3.459313094,0.207726117,0.011525974,0.219252091,0.043831169,-0.001298701,0.04512987,0.82607,0.334249985,0.589195238,-0.374771576,3.091983536,0.767288737,0.394082323,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,35.50098158,0,0,0,0,0,1,0,13,0,1,0,4.631487494,1.098612289,3.05465208,4.525974026,17,91,74,0.228395062,4,0,3,1.011116005,0,0,21,15,0.046296296,5,0.015432099,1,0.00308642,0.064814815,6,0.018518519,0,0,4,0.012345679,37,0.114197531,0,0,15,0.046296296,6,0.018518519,0.438271605,2,0.00617284,2,0.00617284,324,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0046_U1,WF0046,English,A tutor,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.757979504,0.840425532,41,0.198067633,5.293644631,2.869772298,0.621869758,2.915392434,0.517717051,0.083414343,0.069345978,0.152754696,0.0143982,-0.017350956,0.031749156,0.95582,0.62231487,0.632678612,0.459593245,2.495070436,16.29832116,2.346522722,0,0,0,0,2,0,0,0,11,1,1,0,1,0,0,0,1,36,0,3,0,3,0,6,0,0,0,0,1,186.6150187,0,0,17,0,3,0,8,82,0,4,0,4.524074292,2.944438979,4.431958711,5.345319635,1,1720,1719,0.85141159,98,13,53,1.435376374,15,0.007429421,83,50,0.024764735,9,0.004457652,24,0.011887073,0.04110946,29,0.014363546,0,0,52,0.025755324,26,0.012877662,1,0.000495295,106,0.052501238,43,0.021297672,0.323922734,0,0,2,0.000990589,2019,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0046_U2,WF0046,English,A tutor,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.609761815,0.767857143,19,0.131944444,4.88993133,2.92268273,1.137898421,3.17970344,1.139946396,0.096772249,0.039985262,0.136757511,0.024400767,-0.00668744,0.031088207,0.88008,0.571376774,0.613220145,-0.146013656,2.466578302,9.302999478,2.140729898,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,17,0,7,1,0,0,8,0,0,0,0,0,138.8766141,0,0,7,0,0,0,3,48,0,2,3,4.9698133,1.945910149,4.262573733,5.410714286,8,901,893,0.757421544,52,8,14,1.109729356,0,0,42,30,0.025445293,4,0.003392706,8,0.006785411,0.03562341,16,0.013570823,6,0.005089059,42,0.03562341,66,0.055979644,0,0,67,0.05682782,27,0.022900763,0.37913486,0,0,4,0.003392706,1179,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0046_U3,WF0046,English,Someone else,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.723856377,0.80952381,21,0.119318182,4.790139749,2.886374604,0.799534609,2.918210879,0.774075677,0.117517988,0.052995942,0.17051393,0.015724441,-0.008649289,0.024373731,0.90473,0.68271973,0.604163185,0.309305897,2.721883743,13.05571294,1.808763335,0,0,0,0,1,1,2,0,7,0,0,0,1,0,0,0,0,13,0,1,0,0,0,2,0,0,0,0,0,174.6183234,0,0,7,0,3,0,6,74,0,3,1,4.448860314,2.833213344,4.549399166,5.611416781,2,1419,1417,0.856193353,87,11,47,1.468329479,7,0.004229607,91,62,0.037462236,10,0.006042296,19,0.011480363,0.054984894,32,0.019335347,0,0,18,0.010876133,13,0.007854985,1,0.00060423,95,0.057401813,41,0.024773414,0.349848943,0,0,1,0.00060423,1655,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0047_U1,WF0047,English,,,#NULL!,#NULL!,,6.647912616,0.721311475,22,0.151724138,5.028633274,2.866167147,1.081454297,2.972267896,1.00053403,0.113700537,0.043502606,0.157203143,0.012530662,-0.008851186,0.021381848,0.90172,0.501910882,0.633715321,0.101099511,2.817831445,8.947940711,1.823510858,1,0,1,0,1,0,0,0,4,0,0,0,0,0,0,0,0,9,0,2,0,0,0,3,0,0,0,0,0,107.8847677,0,0,9,1,1,4,4,47,0,6,0,4.534252386,2.564949357,3.876485124,4.928158547,30,1263,1233,0.876332623,77,0,12,0.979037512,3,0.002132196,68,45,0.031982942,11,0.007818053,12,0.008528785,0.04832978,14,0.009950249,4,0.002842928,21,0.014925373,38,0.027007818,2,0.001421464,82,0.058280028,27,0.019189765,0.369580668,0,0,4,0.002842928,1407,Yes,Yes,1,Persuade,Annotator1,Final,N/A,N/A
WF0047_U2,WF0047,English,"A parent, brother, sister or other relative",Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.793094213,0.883561644,39,0.102362205,4.63823937,3.027716271,3.143568479,3.196619871,3.201199031,0.110765271,0.065128483,0.175893754,0.017294396,-0.012736536,0.030030932,1,0.520888281,0.627386914,-1.461444958,2.918398966,28.99126193,11.81314291,0,1,1,2,1,0,1,2,7,1,0,0,0,0,0,0,0,25,0,7,0,6,0,4,1,0,1,0,4,249.4965016,0,0,37,4,0,0,7,135,0,4,0,4.970544027,2.944438979,4.108675812,5.053323594,1,2872,2871,0.884745763,130,17,29,0.99724768,10,0.003081664,147,114,0.035130971,10,0.003081664,23,0.007087827,0.045300462,36,0.011093991,33,0.010169492,62,0.019106317,159,0.048998459,1,0.000308166,162,0.049922958,61,0.018798151,0.267180277,4,0.001232666,8,0.002465331,3245,Yes,Yes,1,Persuade,Annotator1,Final,N/A,N/A
WF0047_U3,WF0047,English,,,#NULL!,#NULL!,,6.862017142,0.953125,31,0.15270936,5.035063544,3.005292581,1.173609395,3.306347076,0.946128459,0.104042459,0.029981771,0.134017741,0.02560026,-0.006116158,0.031716418,0.81029,0.35581704,0.617282272,-2.715020949,2.790432808,5.233041795,3.867672271,0,0,0,0,0,0,1,0,6,0,0,0,3,0,0,0,0,4,0,0,0,0,0,1,2,0,1,1,9,198.4328376,0,0,0,2,1,1,0,63,0,0,0,6.681481835,0.693147181,3.902507202,4.521003135,60,1383,1323,0.737458194,47,0,18,1.042711127,0,0,52,41,0.022853958,1,0.000557414,10,0.005574136,0.028985507,17,0.009476031,0,0,25,0.01393534,155,0.086399108,0,0,64,0.03567447,27,0.015050167,0.272017837,0,0,15,0.008361204,1794,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0048_U1,WF0048,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.720652159,0.764705882,6,0.222222222,5.408167787,2.492448761,1.033694538,2.53421517,0.91546542,0.068294563,0.060607494,0.128902057,0.028510638,-0.029680851,0.058191489,0.67742,0.329632258,0.479927489,0.218221155,3.097530812,1.576586505,0.473712709,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,33.11897158,0,0,0,0,1,1,0,16,0,0,0,4.343805422,1.098612289,3.086889561,4.714285714,22,184,162,0.604477612,9,0,7,1.433280125,0,0,4,3,0.01119403,1,0.003731343,0,0,0.014925373,4,0.014925373,0,0,3,0.01119403,39,0.145522388,0,0,17,0.063432836,9,0.03358209,0.544776119,1,0.003731343,0,0,268,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0048_U2,WF0048,English,No one helped me,Somewhat,0,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",5.953712811,0.375,2,0.086956522,4.476842621,2.54924558,0.986446428,2.084341515,1.000537165,0.092910906,0.068246928,0.161157834,0.019516129,-0.034032258,0.053548387,0.36501,0.212519161,0.568467532,0.021190154,3.075159702,0.681633292,0.194315243,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11.54897193,0,0,0,0,0,2,1,4,0,0,1,3.938340314,1.098612289,4.028419653,4.668831169,124,172,48,0.271186441,2,0,2,1.089885163,0,0,6,4,0.02259887,1,0.005649718,1,0.005649718,0.033898305,3,0.016949153,0,0,0,0,16,0.09039548,0,0,9,0.050847458,5,0.028248588,0.598870056,0,0,1,0.005649718,177,,Yes,1,Persuade,Annotator3,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WF0048_U3,WF0048,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.372188347,0.666666667,6,0.333333333,5.812138499,1.571421154,3.142024729,2.977760411,3.461342085,0.082934901,0.025641824,0.108576725,0.022413793,-0.006724138,0.029137931,0.58416,0.070744003,0.490468254,0.476856598,2.792996883,1.189240775,0.218508902,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,11.99990124,0,0,0,0,0,1,0,8,0,0,0,4.276666119,0.693147181,3.854065931,4.479166667,19,165,146,0.879518072,7,0,4,1.399611178,0,0,6,3,0.018072289,1,0.006024096,2,0.012048193,0.036144578,1,0.006024096,1,0.006024096,7,0.042168675,16,0.096385542,0,0,9,0.054216867,3,0.018072289,0.572289157,0,0,0,0,166,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0054_U1,WF0054,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.485151971,0.641025641,13,0.083870968,4.441132077,3.254261385,2.711136175,3.189647158,2.738789264,0.097070077,0.06221087,0.159264553,0.023934426,-0.038135246,0.062069672,0.8854,0.443795407,0.607799856,-1.682176492,2.671928011,15.47842297,4.077698278,0,1,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,17,0,9,0,7,0,0,0,0,0,0,1,97.22731766,0,0,20,0,1,2,3,64,0,1,8,4.795790546,2.302585093,4.806556118,4.788429752,1,1318,1317,0.936699858,84,11,32,1.375839156,0,0,63,43,0.030583215,10,0.007112376,10,0.007112376,0.044807966,27,0.019203414,3,0.002133713,56,0.039829303,95,0.067567568,1,0.000711238,89,0.063300142,41,0.02916074,0.389758179,0,0,9,0.006401138,1406,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0054_U2,WF0054,English,No one helped me,A lot,1,0,I completed the assignment on a laptop or desktop computer.,6.632777066,0.697674419,14,0.12173913,4.810061212,3.063070603,3.305051571,3.211678862,3.048696281,0.08861257,0.034812803,0.123425373,0.018627955,-0.011279548,0.029907503,0.9436,0.499483963,0.61762561,-1.782363853,2.701843767,4.435780783,2.50961481,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,10,1,2,0,1,0,0,0,0,0,0,2,89.81539295,0,0,0,0,2,1,4,35,0,2,1,4.386184645,2.48490665,4.764643293,4.881742739,9,1076,1067,0.990714949,50,8,22,1.330963647,0,0,40,28,0.025998143,1,0.000928505,11,0.010213556,0.037140204,14,0.012999071,0,0,19,0.017641597,65,0.060352832,0,0,51,0.04735376,20,0.018570102,0.421541318,1,0.000928505,3,0.002785515,1077,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0055_U1,WF0055,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.455544613,0.6,12,0.151898734,5.029775834,3.371338021,2.894124154,3.141412295,2.661274984,0.093419622,0.058047945,0.151467567,0.013441781,-0.015239726,0.028681507,0.74096,0.402367472,0.618756157,-0.396236585,2.852778763,2.200689715,1.554887423,0,2,3,0,1,0,3,0,5,2,0,0,0,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,56.52294947,0,0,0,1,0,3,4,16,0,1,1,4.062165664,2.302585093,3.993268794,4.719449225,13,573,560,0.880503145,26,0,14,1.361965285,0,0,27,16,0.025157233,5,0.007861635,6,0.009433962,0.04245283,9,0.014150943,3,0.004716981,15,0.023584906,42,0.066037736,0,0,30,0.047169811,17,0.02672956,0.466981132,1,0.001572327,3,0.004716981,636,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0055_U2,WF0055,English,A tutor,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.216606101,0.518518519,13,0.183098592,5.215471438,3.150601094,1.068007741,3.126977311,1.014010073,0.119562847,0.061513518,0.181048077,0.029243281,-0.015841584,0.045084866,0.73154,0.495971895,0.546011042,-0.47388097,2.599315606,3.888472667,2.661312638,0,1,0,0,1,0,1,0,3,1,2,0,0,0,0,0,0,4,0,0,0,1,0,2,0,0,0,0,0,63.57834424,0,0,0,2,1,1,3,17,4,2,0,4.073291153,2.48490665,4.085903205,5.137588652,224,740,516,0.658163265,22,0,9,1.096200381,0,0,25,16,0.020408163,3,0.003826531,6,0.007653061,0.031887755,14,0.017857143,5,0.006377551,15,0.019132653,16,0.020408163,0,0,31,0.039540816,23,0.029336735,0.469387755,1,0.00127551,0,0,784,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0055_U3,WF0055,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.794545269,0.829787234,13,0.132653061,4.895247347,3.270130047,3.304761467,3.406557678,3.190036027,0.11862962,0.023442567,0.142072187,0.032593985,-0.002706767,0.035300752,1,0.167535618,0.604987781,-0.079756166,2.522374622,8.554233105,1.75811615,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,51,0,0,0,1,0,3,0,0,0,1,2,76.177714,0,0,5,0,0,1,4,41,0,0,1,4.295015258,2.197224577,3.878126458,5.060606061,471,594,123,0.162269129,8,0,9,1.109691608,0,0,21,14,0.018469657,2,0.002638522,5,0.006596306,0.027704485,16,0.021108179,8,0.01055409,56,0.073878628,56,0.073878628,1,0.001319261,54,0.071240106,19,0.025065963,0.410290237,0,0,0,0,758,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0057_U1,WF0057,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.657122832,0.806122449,37,0.220238095,5.399239476,2.845892306,1.219968251,2.976429829,1.137379937,0.123457245,0.044976256,0.168426473,0.011085734,-0.007097681,0.018183415,1,0.51667163,0.645270891,-1.209972016,2.757054823,20.82839843,3.634780242,0,0,0,0,0,0,0,0,10,0,0,0,0,0,0,0,0,21,0,14,0,0,0,1,0,0,0,0,0,156.816515,0,8,29,0,0,0,6,87,0,3,2,4.408152939,2.833213344,4.26377072,5.217765043,101,1152,1051,0.634278817,51,0,25,1.206488764,5,0.003017502,75,51,0.030778515,12,0.007242004,12,0.007242004,0.045262523,29,0.017501509,1,0.0006035,15,0.009052505,26,0.015691008,1,0.0006035,105,0.063367532,43,0.025950513,0.345202173,0,0,0,0,1657,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0057_U2,WF0057,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.49743101,0.489130435,26,0.191176471,5.258414068,2.808563452,0.538115759,2.948482192,0.518634639,0.114568971,0.044645629,0.15920765,0.014610841,-0.008373871,0.022984712,1,0.548322872,0.674881731,0.462058797,2.64264529,20.17075025,3.800305375,0,0,0,0,0,0,1,0,6,0,0,0,3,0,0,0,0,23,0,20,1,0,0,1,0,0,0,0,1,147.1253151,0,0,29,0,3,0,4,51,30,3,4,4.93878119,2.302585093,4.077684637,5.531518625,4,1273,1269,0.732256203,55,8,22,1.136554077,10,0.00577034,46,33,0.019042123,6,0.003462204,7,0.004039238,0.026543566,21,0.012117715,0,0,23,0.013271783,19,0.010963647,1,0.000577034,94,0.0542412,32,0.018465089,0.346797461,1,0.000577034,1,0.000577034,1733,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0057_U3,WF0057,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.656950038,0.775510204,20,0.141843972,4.961752927,3.126389233,1.086685198,3.211018493,0.982369306,0.106319416,0.03634223,0.142661647,0.029882812,-0.013802083,0.043684896,0.91782,0.516354183,0.573914036,-0.816583284,2.572327199,4.946876741,2.011358163,0,0,0,0,1,0,0,0,2,1,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,1,117.358476,0,0,0,0,1,0,4,42,0,3,0,4.439932632,2.564949357,3.992132008,5.103448276,55,713,658,0.510869565,22,0,16,1.127828891,5,0.003881988,34,26,0.020186335,4,0.00310559,4,0.00310559,0.026397516,21,0.016304348,3,0.002329193,12,0.00931677,74,0.057453416,1,0.000776398,55,0.042701863,19,0.014751553,0.358695652,1,0.000776398,2,0.001552795,1288,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0058_U1,WF0058,English,Someone else,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.704103699,0.830188679,17,0.146551724,4.994178786,3.017716328,1.830720014,3.316588417,1.5522912,0.09042019,0.022897313,0.113317503,0.033254963,-0.007314525,0.040569488,1,0.36237966,0.566982115,-1.157471842,2.554002507,8.666865377,2.938832724,0,2,0,0,0,0,1,0,4,1,0,0,0,0,0,0,1,67,0,2,0,2,0,1,0,0,0,0,0,112.9824292,0,0,7,0,1,0,4,47,0,2,0,4.367335919,2.48490665,4.156309883,4.946088795,3,924,921,0.841864717,64,6,12,1.078055015,0,0,24,14,0.012797075,3,0.00274223,7,0.006398537,0.021937843,20,0.018281536,2,0.001828154,79,0.072212066,68,0.062157221,1,0.000914077,65,0.059414991,27,0.024680073,0.327239488,1,0.000914077,6,0.005484461,1094,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0059_U1,WF0059,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.379101321,0.588235294,2,0.058823529,4.091399052,2.623830295,0.885716105,2.679367476,0.641946704,0.124603535,0.028606061,0.153209596,0.026363636,-0.010151515,0.036515152,0.90606,0.317107638,0.558969426,0.213374681,2.546987377,2.152518505,0.182371684,0,0,1,1,1,0,1,0,1,0,0,0,0,0,0,0,0,17,0,0,0,2,0,4,0,0,0,0,0,46.88167346,0,0,0,0,1,0,4,11,0,1,1,3.598833173,2.197224577,3.533716571,4.799392097,2,240,238,0.657458564,15,5,8,1.363601593,0,0,14,14,0.038674033,0,0,0,0,0.038674033,5,0.013812155,0,0,27,0.074585635,19,0.052486188,0,0,22,0.060773481,7,0.019337017,0.439226519,0,0,0,0,362,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0059_U2,WF0059,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.282325462,0.586206897,11,0.111111111,4.719490443,2.888099161,1.051993797,3.340350056,0.95595534,0.163856461,0.058733546,0.222590007,0.038769752,-0.017071106,0.055840858,0.83549,0.436872047,0.623191115,0.406095312,2.927642295,2.224700276,1.504235839,0,1,3,0,0,0,2,0,11,1,0,0,2,0,0,0,0,0,0,0,0,1,0,6,1,0,0,0,3,87.36301682,0,0,0,2,0,0,5,17,3,4,0,4.298418551,2.48490665,4.779216308,4.747451869,29,762,733,0.767539267,33,6,10,1.05960901,0,0,55,43,0.045026178,1,0.00104712,11,0.011518325,0.057591623,19,0.019895288,2,0.002094241,29,0.030366492,23,0.02408377,0,0,35,0.036649215,27,0.028272251,0.347643979,0,0,4,0.004188482,955,,No,1,Persuade,Annotator3,Draft,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0060_U1,WF0060,Business,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.126810872,0.45,8,0.210526316,5.354349415,2.732387924,3.307131927,2.31178364,3.611395553,0.137119304,0.012992063,0.150111367,0.028833333,-0.001416667,0.03025,0.57972,0.569832183,0.673569283,-0.371358717,3.147007286,3.43331645,0.516121041,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.97570832,0,0,0,0,0,2,3,12,0,2,1,3.496507561,2.197224577,3.689252731,5.30976431,129,185,56,0.166172107,2,0,5,1.199667302,0,0,7,5,0.014836795,0,0,2,0.005934718,0.020771513,2,0.005934718,0,0,4,0.011869436,24,0.071216617,0,0,24,0.071216617,3,0.008902077,0.581602374,0,0,0,0,337,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0060_U2,WF0060,Business,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.519937878,0.620689655,10,0.158730159,5.073485884,3.20066523,3.459678967,2.973979571,3.517704287,0.169972926,0.027011387,0.196963779,0.050359343,-0.004158111,0.054517454,0.89488,0.404311515,0.644632638,0.167407562,2.684860016,2.371482489,1.437368553,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,9,0,0,0,0,0,0,0,0,1,0,0,43.61728593,0,0,0,0,0,1,4,20,0,4,0,3.786253618,2.397895273,3.574796277,5.381443299,62,519,457,0.827898551,28,0,8,1.190128614,0,0,16,11,0.019927536,2,0.003623188,3,0.005434783,0.028985507,10,0.018115942,6,0.010869565,8,0.014492754,35,0.063405797,0,0,34,0.061594203,9,0.016304348,0.460144928,0,0,0,0,552,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0064_U1,WF0064,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.4861263,0.666666667,7,0.08974359,4.508037834,3.318399742,3.580394411,3.410820869,3.537943511,0.200322173,0.025967704,0.12612879,0.027011139,-0.002815594,0.029826733,0.77851,0.280555236,0.648881544,-0.806598023,2.990264124,2.586575592,3.135937365,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,5,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,45.32856286,#NULL!,#NULL!,#NULL!,#NULL!,1,1,4,24,#NULL!,4,#NULL!,4.292947005,2.397895273,3.700410639,4.498136646,109,581,472,0.533936652,18,4,29,1.528986463,0,0,26,17,0.019230769,6,0.00678733,3,0.003393665,0.029411765,19,0.021493213,7,0.007918552,11,0.012443439,47,0.053167421,0,0,37,0.041855204,19,0.021493213,0.444570136,3,0.003393665,2,0.002262443,884,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0064_U2,WF0064,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.485047322,0.620689655,12,0.184615385,5.223676708,3.429913198,3.658596449,3.522417923,3.570673773,0.234399688,0.024479258,0.141679102,0.044901065,-0.004870624,0.049771689,0.9692,0.172710029,0.693732898,-0.236815178,3.014763285,2.173118874,2.205959746,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,73.6600509,#NULL!,#NULL!,#NULL!,#NULL!,0,4,4,20,#NULL!,1,#NULL!,3.990526067,2.48490665,3.439785355,4.469953775,26,448,422,0.581267218,30,4,19,1.434102408,0,0,36,24,0.033057851,5,0.006887052,7,0.009641873,0.049586777,14,0.019283747,6,0.008264463,6,0.008264463,54,0.074380165,0,0,33,0.045454545,23,0.031680441,0.378787879,0,0,1,0.00137741,726,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0064_U3,WF0064,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.484560353,0.62962963,5,0.073529412,4.311193836,2.862800052,0.859710758,3.357499651,0.859894462,0.197007397,0.028649104,0.127152802,0.02454955,-0.004542042,0.029091592,0.62042,0.344864194,0.654695935,-0.627678119,2.843797089,1.767968448,1.277172286,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,62.87397792,#NULL!,#NULL!,#NULL!,#NULL!,1,1,4,19,#NULL!,2,1,4.198704578,2.302585093,4.006854983,4.78978979,12,588,576,0.784741144,28,4,7,1.022708108,0,0,27,15,0.020435967,4,0.005449591,8,0.010899183,0.036784741,17,0.023160763,2,0.002724796,5,0.006811989,8,0.010899183,0,0,31,0.042234332,25,0.034059946,0.380108992,4,0.005449591,0,0,734,Unsure,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0066_U1,WF0066,English,No one helped me,Not at all,0,1,I completed the assignment on a laptop or desktop computer.,6.449805031,0.571428571,10,0.192307692,5.26428318,2.956281096,0.727223773,2.981710618,0.516252698,0.127876053,0.052176039,0.180027642,0.027628362,-0.015953545,0.043581907,1,0.451164325,0.571449725,0.271977157,2.814793134,7.034868343,1.096855831,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,38.23558663,0,0,6,0,0,2,2,21,0,3,0,3.809128582,2.197224577,4.373521534,4.977832512,81,398,317,0.695175439,23,0,4,0.98998034,0,0,21,13,0.028508772,3,0.006578947,5,0.010964912,0.046052632,9,0.019736842,1,0.002192982,12,0.026315789,10,0.021929825,0,0,31,0.067982456,6,0.013157895,0.478070175,2,0.004385965,1,0.002192982,456,,Yes,1,Persuade,Annotator3,Final,6,Annotated Bibliography
WF0066_U2,WF0066,English,No one helped me,Not at all,1,1,I completed the assignment on a laptop or desktop computer.,6.567412403,0.636363636,15,0.202702703,5.316661591,2.94909252,3.286832135,3.267450727,3.146477695,0.115449942,0.034805214,0.150220007,0.020342707,-0.009929701,0.030272408,0.89958,0.439260393,0.477344271,-0.564808102,2.49521843,3.168088239,1.473387586,1,0,0,0,1,0,0,0,5,0,3,0,1,0,0,0,0,33,0,0,0,0,0,0,0,0,0,0,0,43.06901057,0,0,0,0,1,0,3,23,2,4,1,4.021773869,2.302585093,4.284990823,5.168458781,11,549,538,0.832817337,34,4,8,1.126582713,0,0,17,11,0.017027864,4,0.00619195,2,0.003095975,0.026315789,11,0.017027864,2,0.003095975,43,0.066563467,48,0.074303406,0,0,37,0.057275542,19,0.029411765,0.431888545,0,0,3,0.004643963,646,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0066_U3,WF0066,English,No one helped me,Not at all,1,1,I completed the assignment on a laptop or desktop computer.,6.210018636,0.45,6,0.230769231,5.445742182,2.424903618,1.909522787,1.879694307,2.257465335,0.042420015,0.067838542,0.110258557,0.011328125,-0.025,0.036328125,0.88451,0.329188498,0.511870968,0.079959757,2.808487582,5.18426694,0.603905413,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,15,0,0,0,1,0,1,0,0,0,0,1,41.26394321,0,0,0,0,0,0,1,12,3,1,3,3.575550769,1.945910149,3.795411181,4.912,39,198,159,0.523026316,14,3,5,1.241729932,0,0,9,9,0.029605263,0,0,0,0,0.029605263,5,0.016447368,0,0,24,0.078947368,17,0.055921053,2,0.006578947,23,0.075657895,9,0.029605263,0.450657895,0,0,0,0,304,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0068_U1,WF0068,History,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.333250269,0.535714286,13,0.166666667,5.121977881,3.336775555,3.632080824,3.496267173,3.604865024,0.135734709,0.053075339,0.188810049,0.029494382,-0.022565543,0.052059925,0.90336,0.206935276,0.493339623,-1.015136077,2.840482905,1.547366017,4.229364502,0,2,1,0,0,0,1,0,1,3,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,36.61845006,1,0,0,0,0,5,3,16,3,1,0,3.970291914,2.302585093,3.819887176,4.301886792,25,126,101,0.166942149,31,4,4,0.88147426,0,0,22,13,0.021487603,5,0.008264463,4,0.00661157,0.036363636,7,0.011570248,3,0.004958678,15,0.024793388,44,0.072727273,0,0,32,0.052892562,17,0.028099174,0.469421488,1,0.001652893,0,0,605,Unsure,Unsure,3,Reflect,Annotator1,Final,N/A,N/A
WF0068_U2,WF0068,History,Someone else,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.745056942,0.782945736,24,0.107142857,4.683453104,2.95274361,3.03722501,3.27688123,2.193280064,0.080722367,0.053340393,0.13406276,0.018715084,-0.026091925,0.044807009,0.99999,0.374016513,0.563703414,-2.937487157,2.837855822,19.26170077,9.829381029,0,4,2,0,1,0,0,0,0,0,0,0,2,0,1,0,0,51,0,13,0,2,0,6,0,0,0,0,8,183.9058387,0,0,32,2,6,0,2,118,0,3,6,5.370121099,2.197224577,4.236838116,4.63081696,501,2180,1679,0.744237589,103,0,12,0.800658591,1,0.000443262,69,48,0.021276596,12,0.005319149,9,0.003989362,0.030585106,50,0.022163121,2,0.000886525,94,0.041666667,242,0.107269504,1,0.000443262,136,0.060283688,75,0.033244681,0.276152482,11,0.004875887,3,0.001329787,2256,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0069_U2,WF0069,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.226670193,0.558823529,10,0.204081633,5.323408108,3.116654183,2.663359015,3.281179257,2.484269471,0.12636107,0.071625146,0.197986216,0.022900763,-0.016459924,0.039360687,0.82904,0.572243582,0.707228557,0.709539398,2.9420602,8.19142291,1.303277522,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,1,0,5,0,2,0,0,0,0,0,66.83180227,0,0,0,0,0,1,6,23,0,4,0,3.547699841,2.708050201,4.307994499,5.128598848,2,332,330,0.557432432,18,8,9,1.209587463,0,0,30,17,0.028716216,6,0.010135135,7,0.011824324,0.050675676,10,0.016891892,0,0,14,0.023648649,17,0.028716216,2,0.003378378,41,0.069256757,10,0.016891892,0.464527027,0,0,1,0.001689189,592,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0069_U3,WF0069,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.089615172,0.409090909,4,0.08,4.394449155,3.249011647,2.92973462,3.274490529,2.854809262,0.064771545,0.062975097,0.127746642,0.016319444,-0.028645833,0.044965278,0.8736,0.256919303,0.707359458,-0.143182822,2.967437811,3.572618898,1.741414678,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,12,0,1,0,2,0,3,0,0,0,1,0,62.22981268,0,0,0,0,0,1,4,12,0,3,2,4.110873864,1.945910149,3.538412663,4.522248244,10,59,49,0.102725367,17,0,4,0.972468715,0,0,14,14,0.029350105,0,0,0,0,0.029350105,5,0.01048218,3,0.006289308,21,0.044025157,49,0.102725367,0,0,26,0.054507338,23,0.048218029,0.433962264,2,0.004192872,1,0.002096436,477,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0070_U1,WF0070,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.788869082,0.85483871,16,0.096969697,4.584658216,3.128302225,0.810321439,3.193396103,0.634371633,0.104004685,0.087705734,0.19169581,0.013166545,-0.027410519,0.040577064,1,0.520668584,0.629980652,-1.743853257,2.938246395,8.258390503,2.02035012,0,0,1,0,0,0,0,1,6,1,0,0,1,0,0,0,0,11,0,2,0,0,0,8,1,0,2,0,0,116.0650339,0,0,8,0,3,1,3,55,1,2,0,4.809964599,2.397895273,3.754298808,4.813333333,2,1289,1287,0.882111035,56,4,18,1.125065226,2,0.001370802,66,42,0.02878684,7,0.004797807,17,0.011651816,0.045236463,25,0.017135024,1,0.000685401,21,0.01439342,89,0.061000685,1,0.000685401,65,0.044551062,49,0.033584647,0.307745031,1,0.000685401,2,0.001370802,1459,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0070_U2,WF0070,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.781480343,0.868852459,17,0.093406593,4.547610916,3.148153314,1.424425086,3.440660742,1.168902928,0.108115144,0.045340478,0.153455622,0.020238998,-0.007454476,0.027693475,0.81334,0.383266161,0.613810214,-2.126538077,2.93877723,6.371761954,3.480749282,0,1,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,2,0,0,0,0,0,7,0,0,0,1,0,138.1353132,0,0,0,0,0,0,3,55,0,3,0,5.096048172,2.079441542,3.908063103,4.534047437,29,1022,993,0.711318052,50,6,10,0.911867022,0,0,52,28,0.020057307,9,0.006446991,15,0.010744986,0.037249284,28,0.020057307,0,0,17,0.01217765,129,0.092406877,1,0.000716332,67,0.047994269,39,0.027936963,0.305873926,3,0.002148997,1,0.000716332,1396,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0072_U1,WF0072,English,A tutor,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.746336117,0.873684211,38,0.193877551,5.272371418,3.085604438,3.565781382,3.301880491,3.31914815,0.105348794,0.043587838,0.148936632,0.022753415,-0.013156003,0.035909418,0.99721,0.408042296,0.670580276,-1.984866046,3.132917668,7.542975703,2.488131966,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,106.6762827,0,0,12,0,2,1,5,87,0,1,1,4.659804048,2.564949357,4.077866575,4.594319009,94,1498,1404,0.908150065,100,12,15,1.02948353,0,0,55,31,0.020051746,9,0.005821475,15,0.009702458,0.035575679,24,0.015523933,0,0,3,0.001940492,150,0.09702458,0,0,107,0.069210867,37,0.02393273,0.357697283,0,0,2,0.001293661,1546,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0073_U1,WF0073,Criminology,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.495068505,0.673913043,11,0.088,4.48863637,2.856209144,0.769821734,2.873250036,0.8655938,0.079958379,0.133952972,0.21391135,0.01231267,-0.064935286,0.077247956,0.98774,0.615438396,0.68575635,-1.031345217,2.943879546,22.91856426,3.997503669,0,0,0,0,0,0,0,0,4,0,0,0,2,0,0,0,0,10,0,10,1,2,0,3,0,0,0,0,1,104.559314,0,0,29,0,4,0,4,76,0,5,7,5.077947742,2.197224577,4.397739519,5.095567867,6,1520,1514,0.875144509,102,11,15,0.985449838,6,0.003468208,8,8,0.004624277,0,0,0,0,0.004624277,6,0.003468208,0,0,12,0.006936416,6,0.003468208,7,0.004046243,104,0.060115607,13,0.007514451,0.345086705,5,0.002890173,0,0,1730,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0077_U1,WF0077,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.558197803,0.738095238,20,0.210526316,5.354349415,3.290670714,1.096940019,3.343677896,1.112688953,0.125300266,0.056001716,0.181301982,0.031660232,-0.026415701,0.058075933,0.79018,0.533936491,0.687900894,-0.195790496,3.025678807,4.454606654,1.559570059,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,3,0,1,0,0,0,4,0,0,0,0,1,67.44418651,0,0,0,0,1,4,4,32,0,1,1,4.339901708,2.302585093,4.184915825,5.028683181,108,750,642,0.733714286,38,0,6,0.895264649,0,0,27,18,0.020571429,9,0.010285714,0,0,0.030857143,11,0.012571429,0,0,16,0.018285714,55,0.062857143,0,0,47,0.053714286,20,0.022857143,0.429714286,0,0,1,0.001142857,875,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0077_U2,WF0077,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.335243588,0.5,5,0.135135135,4.913648033,2.371433751,0.852443991,2.989929541,0.923337709,0.093691881,0.064659793,0.158351674,0.021902655,-0.022787611,0.044690265,0.49959,0.349407393,0.616270945,-0.033025808,2.951814042,2.257134078,0.571695347,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,41.82601423,0,0,0,0,0,3,0,11,0,0,0,4.730333329,1.098612289,3.762695611,5.014705882,6,332,326,0.791262136,12,0,7,1.255038195,0,0,16,6,0.014563107,3,0.007281553,7,0.016990291,0.038834951,4,0.009708738,3,0.007281553,6,0.014563107,6,0.014563107,0,0,16,0.038834951,11,0.026699029,0.57038835,0,0,0,0,412,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0077_U3,WF0077,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.099072535,0.5,5,0.087719298,4.485477433,3.156025409,3.358484784,2.979953534,3.387365288,0.132468542,0.021926968,0.154369603,0.025971503,-0.004727979,0.030699482,0.79664,0.462413523,0.604689154,-0.066582679,2.923004621,4.620033748,0.43366641,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,2,0,0,0,0,0,32.27911777,0,0,0,0,0,5,2,17,0,0,0,3.745574798,2.197224577,4.217524451,4.881889764,91,403,312,0.737588652,17,0,9,1.347848824,0,0,15,12,0.028368794,2,0.004728132,1,0.002364066,0.035460993,5,0.011820331,3,0.007092199,10,0.023640662,34,0.080378251,2,0.004728132,30,0.070921986,11,0.026004728,0.527186761,0,0,2,0.004728132,423,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0078_U1,WF0078,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.702662774,0.779411765,16,0.108843537,4.699056966,3.228596788,1.000226021,3.144532531,0.872861857,0.108101302,0.073637806,0.181739108,0.014560895,-0.025434963,0.039995857,1,0.47895856,0.622294501,-1.08952471,2.926105902,11.59723303,5.186789902,0,1,0,0,2,0,0,0,2,1,0,0,0,0,0,0,0,5,0,1,0,5,0,3,0,0,0,0,2,144.1032528,0,0,15,0,0,2,6,57,0,3,0,4.243440471,2.833213344,4.29826264,5.048141892,154,1284,1130,0.842654735,55,0,16,1.11164536,3,0.002237136,47,40,0.029828486,1,0.000745712,6,0.004474273,0.035048471,23,0.01715138,18,0.013422819,11,0.008202834,52,0.038777032,1,0.000745712,81,0.060402685,35,0.026099925,0.380313199,2,0.001491424,2,0.001491424,1341,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0078_U3,WF0078,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.435169214,0.666666667,10,0.14084507,4.954735409,3.273458087,2.106566976,3.142262634,1.560154748,0.120709232,0.041840811,0.162533093,0.036949153,-0.008601695,0.045550847,1,0.429227739,0.490223661,0.150734088,2.686633354,11.27632974,1.456081517,0,0,0,0,0,0,3,1,2,1,0,0,0,0,0,0,0,0,0,2,0,6,0,2,0,0,0,0,2,83.44950181,0,0,12,1,0,0,6,30,0,3,0,3.528089134,2.833213344,3.930276451,5.352331606,60,463,403,0.601492537,19,0,9,1.159351671,2,0.002985075,24,13,0.019402985,2,0.002985075,9,0.013432836,0.035820896,8,0.011940299,6,0.008955224,6,0.008955224,28,0.041791045,1,0.001492537,52,0.07761194,17,0.025373134,0.43880597,1,0.001492537,1,0.001492537,670,,Yes,1,Persuade,Annotator3,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WF0088_U1,WF0088,Business,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.123780122,0.384615385,4,0.085106383,4.455583543,2.655549021,3.367104747,2.669992775,3.490166236,0.163733045,0.019196429,0.182929474,0.032217262,-0.004315476,0.036532738,0.7022,0.335087026,0.489438744,-0.296846875,3.091467304,1.282659659,0.442567166,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,26.93727215,0,0,0,0,0,5,0,8,0,0,0,4.712528704,1.098612289,4.072910461,4.646706587,89,148,59,0.169054441,2,0,5,1.185447171,0,0,19,13,0.037249284,2,0.005730659,4,0.011461318,0.054441261,5,0.014326648,0,0,1,0.00286533,26,0.074498567,0,0,14,0.040114613,8,0.022922636,0.489971347,3,0.008595989,5,0.014326648,349,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0088_U4,WF0088,Business,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.219938349,0.538461538,7,0.2,5.303304908,2.069498221,3.266611241,2.452713583,3.588300827,0.185103328,0.002640845,0.187744173,0.032658451,0,0.032658451,0.71074,0.48033659,0.471737589,-0.152173384,2.969039045,1.704192812,0.385968915,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,26.77157919,0,0,0,0,0,3,2,8,0,0,0,4.032469159,1.609437912,3.412365761,4.925531915,15,226,211,0.705685619,10,3,4,1.157696257,0,0,8,5,0.016722408,3,0.010033445,0,0,0.026755853,7,0.023411371,0,0,6,0.02006689,23,0.076923077,0,0,16,0.053511706,3,0.010033445,0.491638796,0,0,0,0,299,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0088_U6,WF0088,Business,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,5.469723558,0.285714286,9,0.142857143,4.968820744,3.300959136,3.581050609,2.76037473,3.469329883,0.195322089,0.023172938,0.218495028,0.0453125,-0.003676471,0.048988971,0.81237,0.504339169,0.574622786,0.239948816,2.85513935,9.617296827,2.055699978,0,0,2,0,4,0,4,1,2,0,0,0,2,0,0,0,0,4,0,0,0,13,0,3,0,0,0,0,0,65.98319657,0,0,12,0,3,0,10,19,0,0,6,3.3489803,2.944438979,3.46016891,5.147874307,27,319,292,0.496598639,26,0,8,1.16451471,0,0,35,25,0.042517007,2,0.003401361,8,0.013605442,0.05952381,10,0.017006803,2,0.003401361,14,0.023809524,35,0.05952381,12,0.020408163,35,0.05952381,13,0.022108844,0.445578231,0,0,6,0.010204082,588,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0090_U1,WF0090,English,Someone else,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.787390209,0.805309735,33,0.139240506,4.943358851,2.95141511,3.322243876,3.053792284,3.119412629,0.093595587,0.033727496,0.127318395,0.015588373,-0.007219878,0.022808251,1,0.514027283,0.596190114,-2.552113167,2.883850258,14.11016822,6.940625638,0,1,1,1,2,0,1,0,8,0,0,0,4,0,0,0,0,9,0,4,0,0,0,1,0,0,0,0,1,178.8475258,0,0,11,1,2,0,5,95,11,1,1,4.943069975,2.708050201,4.374693293,4.958630528,11,2153,2142,0.880394575,109,11,25,1.052131195,8,0.003288122,75,52,0.021372791,10,0.004110152,13,0.005343198,0.030826141,47,0.019317715,1,0.000411015,19,0.007809289,186,0.076448829,1,0.000411015,124,0.050965886,66,0.027127004,0.298397041,0,0,5,0.002055076,2433,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0092_U1,WF0092,English,,,#NULL!,#NULL!,,6.558868278,0.717948718,12,0.164383562,5.108267392,3.110537628,2.059871607,3.489123426,1.845728674,0.106134919,0.055264713,0.161399631,0.024144144,-0.022702703,0.046846847,0.79571,0.476607229,0.516611939,-0.365008694,3.008445938,4.177591902,1.347542888,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,8,0,0,1,0,0,0,0,0,0,0,1,34.15781381,0,0,0,0,2,0,3,31,0,5,0,4.114510232,2.197224577,4.36891997,4.869328494,43,597,554,0.884984026,37,0,9,1.186871524,0,0,23,15,0.023961661,4,0.006389776,4,0.006389776,0.036741214,10,0.015974441,3,0.004792332,13,0.020766773,47,0.075079872,0,0,44,0.07028754,12,0.019169329,0.45686901,0,0,0,0,626,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0095_U1,WF0095,English,A teacher,A little,0,0,I completed the assignment on a laptop or desktop computer.,6.814587782,0.898989899,27,0.127358491,4.854827057,2.843241354,1.097347804,3.12880137,1.051593191,0.118263902,0.064046811,0.182310712,0.016240409,-0.014654731,0.030895141,1,0.551489775,0.672554765,-1.373796848,3.006043966,17.02501497,7.411892741,0,0,2,0,0,0,2,0,8,3,0,0,2,0,0,1,0,0,1,1,0,1,0,3,0,0,0,0,4,264.0171409,0,6,13,1,0,0,4,92,0,3,0,5.171000391,2.397895273,4.350117828,4.763035622,111,1805,1694,0.769650159,93,0,14,0.866921779,5,0.002271695,85,55,0.024988642,19,0.00863244,11,0.004997728,0.03861881,34,0.015447524,2,0.000908678,20,0.009086779,51,0.023171286,1,0.000454339,108,0.049068605,65,0.029532031,0.281690141,1,0.000454339,3,0.001363017,2201,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0095_U2,WF0095,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.786646111,0.896103896,20,0.12195122,4.811787687,3.188094041,3.328214659,3.298645289,3.236508889,0.084073602,0.045162846,0.129236448,0.020095314,-0.021286736,0.041382049,0.99999,0.469123993,0.481294477,-1.923034297,2.964109817,11.47168205,3.570081971,0,0,0,0,0,0,2,0,3,0,1,0,1,0,0,0,0,27,0,1,0,5,0,6,0,0,0,0,2,125.0346878,0,0,17,0,3,1,2,72,0,2,0,5.048252158,2.079441542,4.104105095,4.614767255,322,1390,1068,0.743732591,62,0,21,1.193790991,1,0.000696379,53,39,0.027158774,3,0.002089136,11,0.007660167,0.036908078,13,0.009052925,3,0.002089136,40,0.027855153,183,0.127437326,1,0.000696379,83,0.057799443,40,0.027855153,0.332172702,1,0.000696379,9,0.006267409,1436,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0095_U3,WF0095,English,No one helped me,A little,0,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.324810309,0.545454545,1,0.028571429,3.386808644,2.889560766,1.993857449,2.925144077,1.990747191,0.068913049,0.072626147,0.141539196,0.006932773,-0.018487395,0.025420168,0.34837,0.255595776,0.561097046,0.076836389,2.521381194,1.372891706,1.161510499,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,0,0,0,0,1,0,0,0,0,0,34.42337309,0,0,0,0,0,0,2,8,0,1,0,3.676300672,1.791759469,3.42319646,4.679324895,126,238,112,0.427480916,4,0,3,1.095182665,0,0,11,9,0.034351145,0,0,2,0.007633588,0.041984733,7,0.026717557,0,0,19,0.072519084,25,0.095419847,0,0,14,0.053435115,9,0.034351145,0.538167939,0,0,2,0.007633588,262,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0099_U1,WF0099,English,A teacher,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.676684045,0.723404255,21,0.140939597,4.955401596,3.059055864,0.893453439,3.143208612,1.005588367,0.141433156,0.07053941,0.211949364,0.024651972,-0.019102862,0.043754834,0.95142,0.659467654,0.719136689,0.035713126,3.06195112,2.120722965,4.440718541,0,0,0,0,0,0,0,1,4,2,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,162.3720376,0,0,0,3,0,1,5,34,3,4,0,4.592007007,2.564949357,4.261800801,5.04832424,101,1305,1204,0.863701578,44,6,16,1.096136692,0,0,61,45,0.032281205,11,0.007890961,5,0.003586801,0.043758967,30,0.021520803,2,0.00143472,13,0.009325681,53,0.038020086,0,0,53,0.038020086,53,0.038020086,0.324964132,1,0.00071736,1,0.00071736,1394,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0099_U2,WF0099,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.658394448,0.72,18,0.110429448,4.713391636,3.030911194,2.484302867,3.378081908,1.963016441,0.079323646,0.039506843,0.118830489,0.021499632,-0.013761975,0.035261606,1,0.42395629,0.623894184,-0.895551533,2.722551167,3.004502683,4.242303106,0,0,8,0,0,0,0,0,3,0,0,0,1,0,0,0,0,33,1,0,0,0,0,4,0,0,0,0,0,155.0473873,0,0,0,0,1,1,4,40,0,4,1,4.801783073,2.397895273,3.786132605,4.705003734,61,1427,1366,0.91493637,50,0,10,0.886373599,0,0,43,26,0.017414601,8,0.005358339,9,0.006028131,0.028801072,29,0.019423979,2,0.001339585,57,0.038178165,137,0.091761554,0,0,56,0.037508372,74,0.049564635,0.298727395,1,0.000669792,1,0.000669792,1493,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0099_U3,WF0099,English,A teacher,Somewhat,0,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.45886558,0.625,20,0.168067227,5.130296428,3.236984965,3.581287786,3.531399991,3.520540622,0.068785238,0.075903962,0.1446892,0.010101652,-0.030495553,0.040597205,0.82907,0.279049391,0.734490649,-0.633343417,2.997770501,0.329278228,5.128772532,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,0,0,0,1,0,65.45454778,0,0,0,6,1,2,2,10,2,0,0,4.870095271,1.791759469,3.64105396,4.438618926,4,313,309,0.367419738,6,4,11,1.148592385,0,0,31,22,0.026159334,6,0.007134364,3,0.003567182,0.03686088,13,0.015457788,7,0.008323424,10,0.011890606,100,0.118906064,0,0,20,0.023781213,41,0.048751486,0.355529132,3,0.003567182,3,0.003567182,841,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0101_U1,WF0101,English,Someone else,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.661454913,0.755555556,4,0.072727273,4.300372781,3.266322237,0.969537995,3.057864228,0.981474324,0.094268347,0.038083171,0.132351518,0.011354776,-0.009502924,0.0208577,0.99999,0.573103499,0.553703636,0.085464397,2.752733867,11.60025941,1.078604117,0,0,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,5,0,3,0,2,0,0,0,0,0,0,0,57.83672855,0,0,16,0,0,1,5,36,0,3,0,3.810694753,2.397895273,4.272982967,5.810865191,137,205,68,0.11147541,5,0,9,1.197393553,0,0,22,9,0.014754098,3,0.004918033,10,0.016393443,0.036065574,9,0.014754098,0,0,6,0.009836066,14,0.02295082,1,0.001639344,51,0.083606557,16,0.026229508,0.473770492,0,0,0,0,610,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0101_U2,WF0101,English,Someone else,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.551816275,0.657142857,9,0.118421053,4.782655506,2.937714134,3.551705254,2.757381287,3.585786341,0.146947198,0.028878256,0.175825454,0.014254386,-0.004210526,0.018464912,0.84802,0.446324871,0.597005677,-0.022675888,2.942144447,6.391526866,1.127178807,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,1,0,0,0,6,0,1,0,0,0,0,0,78.39648035,0,0,6,0,0,2,7,25,0,1,0,3.773644721,2.564949357,4.016473588,4.989399293,157,551,394,0.636510501,21,0,5,0.957968383,0,0,31,18,0.02907916,6,0.009693053,7,0.011308562,0.050080775,11,0.017770598,0,0,7,0.011308562,32,0.051696284,5,0.008077544,36,0.05815832,9,0.01453958,0.42003231,0,0,0,0,619,,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0101_U3,WF0101,English,"A parent, brother, sister or other relative",A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.708711491,0.684782609,26,0.173333333,5.160969175,2.790383531,0.698710197,2.875213568,0.665302813,0.140339687,0.025030211,0.165369898,0.012108559,-0.002940153,0.015048713,1,0.653529349,0.618044692,-0.934657297,2.765195958,22.66655995,2.315490603,0,0,1,0,0,0,0,0,15,1,0,0,1,0,0,0,0,5,0,5,0,9,0,0,0,0,0,0,6,151.4450246,0,0,27,0,4,0,7,71,7,1,6,4.204692619,3.044522438,4.656199111,5.28358209,116,1212,1096,0.667478685,56,0,11,0.886442633,6,0.00365408,72,47,0.02862363,18,0.010962241,7,0.004263094,0.043848965,18,0.010962241,0,0,29,0.017661389,20,0.012180268,2,0.001218027,96,0.058465286,36,0.021924482,0.349573691,0,0,3,0.00182704,1642,,Yes,1,Persuade,Annotator2,Final,N/A,N/A
WF0101_U4,WF0101,English,"A parent, brother, sister or other relative",A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.368119005,0.551020408,71,0.110248447,4.711765963,2.939875388,3.62307493,3.183626416,3.595816297,0.12929513,0.035108976,0.164396246,0.01933091,-0.007506386,0.026837296,1,0.50470395,0.594445772,-6.97864439,3.088863712,79.61830454,12.03883043,0,3,2,0,1,0,1,0,23,3,0,0,5,0,0,0,0,6,0,5,1,7,0,5,0,0,2,0,4,454.9565758,0,26,93,0,6,2,28,270,89,1,2,3.538375086,4.983606622,4.607526366,4.675557325,73,5790,5717,0.971122813,426,0,22,0.675507761,0,0,253,195,0.033123832,26,0.004416511,32,0.005435706,0.042976049,101,0.017156446,22,0.003737048,99,0.016816715,312,0.052998131,11,0.001868524,438,0.074401223,162,0.027518261,0.197553932,4,0.000679463,28,0.004756243,5887,,Yes,1,Persuade,Annotator2,Draft,N/A,N/A
WF0101_U5,WF0101,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.167650297,0.541666667,2,0.055555556,4.035223439,2.360918818,2.763420335,2.859839217,2.889917621,0.1623096,0.042386102,0.204695703,0.016763006,-0.007225434,0.023988439,0.85414,0.383867438,0.621266855,0.071330515,2.837461045,4.876603632,0.661717595,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,51.14803279,0,0,0,0,0,2,5,15,1,1,0,3.439835174,2.397895273,4.019803111,5.037900875,22,262,240,0.638297872,23,2,8,1.347848824,0,0,18,14,0.037234043,2,0.005319149,2,0.005319149,0.04787234,7,0.018617021,0,0,8,0.021276596,19,0.050531915,2,0.005319149,24,0.063829787,9,0.02393617,0.518617021,0,0,2,0.005319149,376,,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0102_U1,WF0102,Biology,A teacher,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,#NULL!,#NULL!,11,0.255813953,5.548351906,1.777250922,0.842545519,2.258188839,0.514375773,0.071398952,0.050452267,0.121851219,0.006184211,-0.009342105,0.015526316,0,0,0.684826026,0.612969268,2.348394828,2.024896516,0.423048931,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,0,0,0,0,0,5,0,0,0,0,2,57.38404465,0,0,0,0,3,2,1,5,0,10,0,4.140485718,1.791759469,3.760597555,5.517241379,11,442,431,0.938997821,17,1,32,1.84952245,0,0,13,3,0.006535948,2,0.004357298,8,0.017429194,0.02832244,8,0.017429194,0,0,22,0.047930283,0,0,1,0.002178649,19,0.041394336,11,0.023965142,0.455337691,0,0,0,0,459,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0105_U1,WF0105,English,Someone else,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.804844875,0.905555556,42,0.128440367,4.863220288,2.720616604,2.672617039,3.080240286,2.883848535,0.088991737,0.041228911,0.13018478,0.012239957,-0.007487446,0.019727403,1,0.596237383,0.582584123,0.556157222,2.742316926,41.06840477,8.969951274,0,0,0,0,2,0,4,0,8,1,0,0,1,0,0,0,1,23,0,11,0,0,0,10,3,0,0,0,2,291.1160133,0,8,15,0,5,0,6,168,0,5,1,5.195915433,2.708050201,4.566121737,5.31351551,11,2870,2859,0.884865367,162,8,24,0.925726632,8,0.002476014,124,84,0.025998143,13,0.004023522,27,0.008356546,0.038378211,55,0.017022594,36,0.011142061,56,0.017332095,76,0.023522129,1,0.000309502,190,0.058805323,79,0.024450634,0.303930672,2,0.000619003,3,0.000928505,3231,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0105_U2,WF0105,English,Someone else,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.645388931,0.69924812,26,0.103174603,4.646068368,2.981888721,3.344489197,3.022508014,3.22743592,0.091653318,0.033886998,0.125540316,0.016152108,-0.007191265,0.023343373,1,0.491976232,0.591873389,-1.730556643,2.867938294,22.71936415,5.18872318,0,0,0,2,0,0,3,0,6,3,0,0,4,0,0,0,1,17,0,4,0,4,0,3,0,0,0,0,1,164.9222839,0,5,26,1,2,0,4,109,12,2,6,4.878246106,2.708050201,4.279387494,4.970065956,21,1725,1704,0.739904472,130,9,21,1.005117897,2,0.000868432,70,39,0.016934433,6,0.002605297,25,0.010855406,0.030395137,29,0.012592271,13,0.005644811,31,0.013460703,111,0.048198003,1,0.000434216,137,0.059487625,29,0.012592271,0.322622666,3,0.001302649,1,0.000434216,2303,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0105_U3,WF0105,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.773866867,0.873239437,42,0.142372881,4.965448798,2.691797691,2.989882818,3.08701796,2.944559803,0.113672541,0.040445572,0.154110636,0.011663551,-0.007654206,0.019317757,0.96415,0.614238057,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,#NULL!,0,0,0,0,0,0,0,0,0,0,0,#NULL!,#NULL!,#NULL!,#NULL!,85,2664,2579,0.841710183,117,0,21,0.895079058,0,0,116,85,0.027741514,11,0.003590078,20,0.006527415,0.037859008,56,0.018276762,25,0.008159269,40,0.01305483,106,0.0345953,1,0.000326371,153,0.049934726,58,0.018929504,0.311357702,2,0.000652742,6,0.001958225,3064,Yes,Yes,1,Persuade,Annotator1,Final,N/A,N/A
WF0107_U1,WF0107,English,,,#NULL!,#NULL!,,6.805366629,0.868421053,12,0.116504854,4.766479647,2.86257967,1.3675496,3.260829602,1.070298442,0.081819879,0.124530245,0.206350123,0.014222973,-0.076452703,0.090675676,0.93655,0.521464448,0.566143981,-0.524709053,2.882697401,3.494146631,0.983593292,0,0,0,0,2,0,0,0,2,2,0,0,2,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,76.6190622,0,0,0,0,0,1,0,36,0,1,0,5.216293531,1.386294361,3.833518248,5.090909091,3,802,799,0.958033573,37,0,13,1.219781721,0,0,47,20,0.023980815,7,0.008393285,20,0.023980815,0.056354916,12,0.014388489,2,0.002398082,12,0.014388489,23,0.027577938,0,0,38,0.045563549,25,0.029976019,0.405275779,0,0,3,0.003597122,834,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0111_U1,WF0111,English,No one helped me,Not at all,0,1,I completed the assignment on a laptop or desktop computer.,6.47112388,0.6875,10,0.142857143,4.968820744,3.253488799,3.323616801,3.229461871,3.440453205,0.091736593,0.060278101,0.151949442,0.02230832,-0.007911909,0.030220228,0.88403,0.06369817,0.61112189,-0.62744454,3.182985833,4.755125609,1.228729229,0,0,3,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,40.7210446,0,0,8,0,1,0,4,36,0,8,0,4.020469663,2.397895273,3.414734318,3.946166395,36,380,344,0.51497006,31,0,10,1.203306545,0,0,21,12,0.017964072,5,0.00748503,4,0.005988024,0.031437126,7,0.010479042,2,0.002994012,6,0.008982036,71,0.106287425,0,0,53,0.079341317,21,0.031437126,0.389221557,4,0.005988024,1,0.001497006,668,,No,3,Reflect,Annotator2,Final,N/A,N/A
WF0111_U2,WF0111,English,"A parent, brother, sister or other relative",A little,0,1,I completed the assignment on a laptop or desktop computer.,6.423042134,0.6,19,0.228915663,5.437712558,3.346691865,0.968295185,3.446315721,0.960461019,0.10130713,0.047734831,0.14904196,0.012964339,-0.015267459,0.028231798,0.9596,0.331839205,0.508193578,-0.253591355,2.867016206,3.646554765,1.332876435,1,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,49.55200789,0,0,5,0,1,0,4,27,0,9,0,4.10938244,2.397895273,4.283114002,4.798507463,3,626,623,0.827357238,44,5,20,1.44028591,0,0,24,18,0.023904382,1,0.001328021,5,0.006640106,0.03187251,12,0.015936255,1,0.001328021,11,0.014608234,3,0.003984064,0,0,45,0.059760956,27,0.035856574,0.447543161,0,0,1,0.001328021,753,,No,1,Persuade,Annotator2,Final,N/A,N/A
WF0112_U1,WF0112,English,A tutor,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",0,0,5,0.227272727,5.430541086,2.902030676,0.837421017,1.892713327,0.689955268,0.106173647,0.030366492,0.13654014,0.009685864,-0.005628272,0.015314136,0.17999,0.351488672,0.480657895,-0.11577293,2.651947953,1.240170585,0.611520704,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,21.2880311,0,0,0,0,0,5,0,2,0,1,0,3.455264603,1.791759469,3.105649657,5.394736842,14,172,158,0.752380952,5,0,7,1.53571597,0,0,4,1,0.004761905,0,0,3,0.014285714,0.019047619,1,0.004761905,0,0,5,0.023809524,1,0.004761905,0,0,9,0.042857143,7,0.033333333,0.59047619,1,0.004761905,1,0.004761905,210,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0112_U2,WF0112,English,A teacher,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.378825585,0.545454545,3,0.096774194,4.582660673,2.582723955,2.882043968,2.084265009,3.200283739,0.0988622,0.059365782,0.158227981,0.014712389,-0.007632743,0.022345133,0.54763,0.185326449,0.386314935,-0.052458072,2.8198234,0.476668783,0.374880964,0,2,2,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,18.32373684,0,0,0,0,0,1,1,8,0,1,0,3.802208139,1.609437912,3.659243684,4.727678571,20,195,175,0.735294118,9,1,5,1.342588537,0,0,12,8,0.033613445,1,0.004201681,3,0.012605042,0.050420168,5,0.021008403,0,0,7,0.029411765,16,0.067226891,0,0,12,0.050420168,8,0.033613445,0.600840336,1,0.004201681,3,0.012605042,238,,Yes,1,Persuade,Annotator3,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WF0113_U1,WF0113,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.409080273,0.625,2,0.083333333,4.4347772,2.592009036,2.791237903,2.303421489,3.210539108,0.078283938,0.021266511,0.09955045,0.036538462,-0.011666667,0.048205128,0.2505,0.049787117,0.58810376,-0.622570561,2.716873591,0.316991926,0.373726339,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,10.83819835,0,0,0,0,0,1,0,7,0,0,0,4.559126247,0.693147181,2.941454384,4.439790576,2,202,200,0.904977376,7,0,8,1.570532375,0,0,8,5,0.022624434,0,0,3,0.013574661,0.036199095,6,0.027149321,0,0,3,0.013574661,15,0.067873303,0,0,8,0.036199095,5,0.022624434,0.601809955,0,0,1,0.004524887,221,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0113_U2,WF0113,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.717203977,0.75,5,0.178571429,5.19057306,3.330703844,3.361968248,3.110854193,3.312473323,0.086039949,0.05820802,0.144247969,0.027537594,-0.017293233,0.044830827,0.55855,0.194868147,0.697223267,-0.079638621,2.934666181,0.581859642,1.197837126,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,35.72305284,0,0,0,0,2,1,0,11,0,0,0,4.871373227,0.693147181,3.583433758,4.256704981,8,194,186,0.624161074,11,0,8,1.444757166,0,0,13,9,0.030201342,1,0.003355705,3,0.010067114,0.043624161,8,0.026845638,0,0,5,0.016778523,24,0.080536913,0,0,12,0.040268456,12,0.040268456,0.516778523,0,0,1,0.003355705,298,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0114_U1,WF0114,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.38909109,0.6,6,0.125,4.836281907,3.185054965,3.332751496,2.993918678,3.516765665,0.138188613,0.059807528,0.19799614,0.031062874,-0.008832335,0.03989521,0.74289,-0.001944571,0.739317587,-0.388655042,3.187667443,1.248318153,0.642629402,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,24.5510531,0,0,0,0,0,1,1,14,0,4,0,4.201703081,1.609437912,3.927179438,4.158682635,177,314,137,0.354005168,6,0,5,1.143636011,0,0,19,17,0.043927649,1,0.002583979,1,0.002583979,0.049095607,6,0.015503876,1,0.002583979,4,0.010335917,41,0.105943152,0,0,21,0.054263566,8,0.020671835,0.506459948,0,0,0,0,387,,No,3,Reflect,Annotator2,Final,N/A,N/A
WF0115_U1,WF0115,English,Someone else,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.645584276,0.745454545,27,0.207692308,5.340860955,3.117886694,1.03470561,3.119912865,1.106313498,0.120604488,0.071920743,0.192525231,0.02620614,-0.026381579,0.052587719,0.81107,0.545303913,0.589585098,-0.114325785,2.858761004,8.672418616,3.263402768,0,3,1,0,0,0,0,0,2,1,0,0,1,0,0,0,0,4,1,5,0,5,0,5,0,0,0,0,0,105.7880352,0,0,5,1,2,3,4,45,1,1,1,4.388257184,2.63905733,4.458659769,5.015084295,42,1195,1153,0.91290578,55,5,10,0.950250734,0,0,44,28,0.022169438,7,0.005542359,9,0.007125891,0.034837688,25,0.019794141,5,0.003958828,25,0.019794141,25,0.019794141,1,0.000791766,60,0.047505938,28,0.022169438,0.409342835,0,0,3,0.002375297,1263,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0115_U2,WF0115,English,,,#NULL!,#NULL!,,6.686157797,0.771428571,32,0.189349112,5.24885982,3.03166649,1.035536542,3.10360479,1.166399152,0.119225893,0.077848787,0.197068118,0.025951444,-0.028182415,0.054133858,0.79743,0.557920349,0.595342625,-0.624949369,2.777262556,7.279612704,4.162471031,0,4,0,0,1,0,0,0,7,0,0,0,3,0,0,0,0,1,0,1,0,0,0,5,0,0,0,0,1,146.6370569,0,0,0,1,2,3,6,58,1,1,1,4.418840608,2.890371758,4.356518937,4.878179384,99,1666,1567,0.931629013,71,7,26,1.216371473,0,0,54,38,0.022592152,8,0.004756243,8,0.004756243,0.032104637,28,0.016646849,9,0.005350773,25,0.014863258,35,0.020808561,1,0.00059453,77,0.045778835,39,0.023186683,0.37039239,0,0,4,0.002378121,1682,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0115_U3,WF0115,English,No one helped me,Not at all,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.333250269,0.535714286,13,0.166666667,5.121977881,3.336775555,3.632080824,3.496267173,3.604865024,0.135734709,0.053075339,0.188810049,0.029494382,-0.022565543,0.052059925,0.90336,0.206935276,0.493339623,-1.015136077,2.840482905,1.547366017,4.229364502,0,2,1,0,0,0,1,0,1,3,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,36.61845006,1,0,0,0,0,5,3,16,3,1,0,3.970291914,2.302585093,3.819887176,4.301886792,25,126,101,0.166942149,31,4,4,0.88147426,0,0,22,13,0.021487603,5,0.008264463,4,0.00661157,0.036363636,7,0.011570248,3,0.004958678,15,0.024793388,44,0.072727273,0,0,32,0.052892562,17,0.028099174,0.469421488,1,0.001652893,0,0,605,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0115_U4,WF0115,English,No one helped me,Not at all,1,1,I completed the assignment on a laptop or desktop computer.,6.460009396,0.625,8,0.075471698,4.336920713,3.337219542,2.182971358,3.454705243,1.853268369,0.081566883,0.03126962,0.112836502,0.016759777,-0.015446927,0.032206704,0.71734,0.242514811,0.583131938,-0.912302753,2.70806198,5.62367837,7.15056972,0,2,3,0,0,0,0,0,5,1,0,0,1,0,0,0,0,26,0,5,0,0,0,4,0,0,1,0,2,87.87873417,0,0,0,0,0,0,3,37,0,6,2,4.709530201,2.079441542,4.304364805,4.472972973,9,913,904,0.891518738,46,0,11,1.073649673,0,0,43,37,0.036489152,2,0.001972387,4,0.003944773,0.042406312,15,0.014792899,9,0.00887574,53,0.052268245,72,0.071005917,1,0.000986193,53,0.052268245,25,0.024654832,0.388560158,0,0,4,0.003944773,1014,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0116_U1,WF0116,English,A tutor,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.668071938,0.75,25,0.362318841,5.895280797,2.969848315,0.76610743,3.176599394,0.641946704,0.105168525,0.027905405,0.133073931,0.022297297,-0.015540541,0.037837838,1,0.62166827,0.69079565,0.614394354,2.680054277,16.41902812,1.434584043,0,0,2,0,0,0,0,0,7,0,0,0,0,0,0,0,0,7,0,6,0,1,0,0,0,0,0,0,0,119.1999584,0,0,29,0,1,1,4,48,4,2,1,4.092954708,2.48490665,4.297011597,5.450625869,26,655,629,0.716400911,31,10,9,1.051174506,0,0,13,5,0.005694761,0,0,8,0.009111617,0.014806378,6,0.006833713,0,0,8,0.009111617,45,0.051252847,1,0.001138952,70,0.079726651,23,0.0261959,0.365603645,2,0.002277904,0,0,878,Yes,,1,Persuade,Annotator2,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0116_U2,WF0116,English,No one helped me,A little,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.464957571,0.583333333,12,0.169014085,5.135881284,2.838048458,2.81833579,2.527521102,3.022787982,0.138074791,0.051988269,0.19006306,0.012056367,-0.011221294,0.023277662,0.85968,0.28617551,0.445709534,0.062241574,3.014820055,2.633443505,1.387046541,0,0,0,0,0,0,1,0,2,1,0,0,1,0,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,82.60935507,0,0,0,0,0,3,4,16,0,1,0,3.713572067,2.397895273,3.968384364,5.093126386,60,225,165,0.340206186,10,0,5,1.053434893,0,0,28,23,0.04742268,0,0,5,0.010309278,0.057731959,7,0.01443299,0,0,10,0.020618557,25,0.051546392,0,0,29,0.059793814,21,0.043298969,0.369072165,0,0,9,0.018556701,485,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0116_U3,WF0116,English,,,#NULL!,#NULL!,,6.478004219,0.642857143,4,0.063492063,4.16654217,3.178684457,0.720849156,2.701604308,0.783826483,0.132189903,0.043146959,0.175336862,0.014606742,-0.008941948,0.023548689,0.8575,0.382383233,0.667380651,-0.011726035,2.95860813,2.840174577,2.051705613,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,57.31865208,0,0,0,0,0,0,4,18,5,1,0,3.975936331,2.302585093,4.295277476,4.909943715,3,321,318,0.523026316,31,4,8,1.150998679,0,0,34,26,0.042763158,5,0.008223684,3,0.004934211,0.055921053,10,0.016447368,0,0,5,0.008223684,20,0.032894737,0,0,32,0.052631579,12,0.019736842,0.417763158,0,0,1,0.001644737,608,,No,1,Persuade,Annotator2,Final,N/A,N/A
WF0116_U4,WF0116,English,,,#NULL!,#NULL!,,6.043215559,0.576923077,6,0.352941176,5.869130731,2.447491656,0.623473024,1.835099809,0.514375773,0.126185368,0.020079291,0.146264659,0.027798507,-0.004477612,0.032276119,0.99669,0.643627559,0.638484519,-0.044180799,2.667346283,10.71478921,0.437405181,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,0,11,0,1,0,1,0,0,0,0,0,0,0,22.26771211,0,0,7,0,0,5,3,17,0,1,0,3.49271249,2.079441542,3.914564548,6.650190114,9,132,123,0.378461538,16,2,12,1.578903567,0,0,4,0,0,2,0.006153846,2,0.006153846,0.012307692,2,0.006153846,0,0,4,0.012307692,0,0,1,0.003076923,25,0.076923077,4,0.012307692,0.556923077,0,0,0,0,325,,Yes,1,Persuade,Annotator2,Final,N/A,N/A
WF0116_U5,WF0116,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.38909109,0.6,6,0.125,4.836281907,3.185054965,3.332751496,2.993918678,3.516765665,0.138188613,0.059807528,0.19799614,0.031062874,-0.008832335,0.03989521,0.74289,-0.001944571,0.739317587,-0.388655042,3.187667443,1.248318153,0.642629402,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,24.5510531,0,0,0,0,0,1,1,14,0,4,0,4.201703081,1.609437912,3.927179438,4.158682635,177,314,137,0.354005168,6,0,5,1.143636011,0,0,19,17,0.043927649,1,0.002583979,1,0.002583979,0.049095607,6,0.015503876,1,0.002583979,4,0.010335917,41,0.105943152,0,0,21,0.054263566,8,0.020671835,0.506459948,0,0,0,0,387,,No,3,Reflect,Annotator2,Possible Duplicate,N/A,N/A
WF0118_U1,WF0118,English,"A parent, brother, sister or other relative",A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.634272452,0.75,11,0.117021277,4.770864918,3.250022524,2.864749479,3.403031195,2.560966828,0.117875745,0.040257828,0.158133573,0.034456806,-0.008213351,0.042670157,0.87214,0.389628062,0.62769697,-0.943624137,2.633975749,8.064366081,3.029685287,0,0,0,0,1,0,0,0,3,1,0,0,0,0,0,0,0,55,2,2,0,2,0,3,0,0,0,0,2,79.33777901,0,0,8,0,0,0,3,44,0,4,1,4.422848629,2.197224577,3.96657528,4.904,35,833,798,0.913043478,46,0,7,0.954683978,0,0,20,15,0.017162471,2,0.00228833,3,0.003432494,0.022883295,11,0.012585812,1,0.001144165,73,0.083524027,67,0.076659039,0,0,58,0.066361556,19,0.02173913,0.387871854,4,0.004576659,2,0.00228833,874,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0119_U1,WF0119,English,A tutor,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.738074419,0.676056338,23,0.095833333,4.572991288,3.180804932,3.37587287,3.178224823,3.247627777,0.086465425,0.022284882,0.108750306,0.017059252,-0.003739679,0.020798932,1,0.467711612,0.549377336,-0.491777749,2.657232416,38.10169498,5.832575544,1,9,5,0,1,0,4,1,14,2,0,0,2,0,0,0,0,22,0,13,0,18,0,7,0,0,1,0,5,247.7506453,0,0,52,0,1,0,3,112,24,2,1,4.059428297,3.526360525,4.009054067,5.124365482,1,2054,2053,0.852220839,139,20,29,1.11521731,23,0.00954753,73,51,0.02117061,5,0.00207555,17,0.00705687,0.03030303,33,0.01369863,11,0.00456621,46,0.01909506,160,0.066417601,1,0.00041511,143,0.059360731,33,0.01369863,0.312992943,3,0.00124533,23,0.00954753,2409,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0120_U1,WF0120,Sociology,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,0,0,1,0.047619048,3.88401538,2.831300026,0.487390268,1.726976624,0.514375773,0.087395266,0.129390401,0.216785667,0.014423077,-0.056730769,0.071153846,0.45427,0.550737575,0.501538868,0.1436419,2.57290613,3.240829338,0.203048965,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,28.6344955,0,0,0,0,0,0,4,4,0,1,1,3.357394759,1.945910149,3.066796833,5.472636816,1,221,220,0.973451327,13,4,5,1.364060966,0,0,7,2,0.008849558,0,0,5,0.022123894,0.030973451,6,0.026548673,0,0,10,0.044247788,2,0.008849558,0,0,14,0.061946903,6,0.026548673,0.451327434,0,0,0,0,226,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0120_U2,WF0120,Sociology,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.530801081,0.657142857,17,0.195402299,5.280165101,3.344362706,2.904835589,3.368739085,2.833405507,0.135358987,0.053435787,0.188794774,0.018373116,-0.013222362,0.031595477,0.84029,0.365191666,0.629172238,0.196155429,3.030946874,5.043199067,2.036941756,0,0,0,0,0,0,1,0,2,0,0,0,1,0,0,0,0,5,0,1,1,0,0,2,0,0,0,0,0,85.65281726,0,0,0,0,0,0,8,26,0,1,0,3.78292621,2.890371758,4.013223954,4.738305942,11,490,479,0.556329849,24,0,8,1.012479585,0,0,41,28,0.032520325,1,0.00116144,12,0.013937282,0.047619048,10,0.011614402,2,0.00232288,13,0.015098722,36,0.041811847,0,0,48,0.055749129,17,0.019744483,0.378629501,0,0,3,0.003484321,861,,Yes,2,Inform/Explore,Annotator2,Unsure,N/A,N/A
WF0120_U3,WF0120,Sociology,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,5.121977881,0.153846154,11,0.268292683,5.595798829,2.731543512,0.888786869,2.781056492,0.950860554,0.092112052,0.053552308,0.14566436,0.004958101,-0.01277933,0.01773743,0.58297,0.40763717,0.670420168,-0.168416558,2.696673927,0.972832409,0.535917441,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,40.773794,0,0,0,0,4,1,2,7,0,3,0,3.680511204,2.197224577,3.444392739,5.025210084,7,340,333,0.853846154,16,4,13,1.53571597,0,0,22,18,0.046153846,1,0.002564103,3,0.007692308,0.056410256,7,0.017948718,0,0,4,0.01025641,9,0.023076923,0,0,17,0.043589744,16,0.041025641,0.5,0,0,0,0,390,,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0123_U1,WF0123,English,No one helped me,A little,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.145160578,0.384615385,2,0.08,4.394449155,2.869391608,2.996233887,2.874555271,2.993193358,0.087240664,0.109893055,0.197133719,0.014522822,-0.037551867,0.052074689,0.35097,0.301165924,0.538145833,-0.150620075,2.964093085,1.537885063,0.355281608,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,25.8369493,0,0,0,0,0,2,1,8,0,2,0,3.534728774,1.945910149,3.58433736,4.875,169,210,41,0.149090909,1,0,5,1.28288977,0,0,22,17,0.061818182,0,0,5,0.018181818,0.08,7,0.025454545,0,0,4,0.014545455,16,0.058181818,0,0,15,0.054545455,6,0.021818182,0.545454545,0,0,0,0,275,,Yes,1,Persuade,Annotator3,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WF0123_U2,WF0123,English,No one helped me,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.586056521,0.65625,6,0.070588235,4.270930749,2.690892813,2.721321138,3.544395667,2.191037085,0.101752323,0.0526606,0.154412923,0.012682482,-0.016468978,0.02915146,0.8996,0.203662811,0.63428808,-0.668110954,3.219472254,3.199798988,2.203041386,0,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,0,0,0,0,1,35.68778794,0,0,0,0,0,0,2,23,2,3,2,4.503506532,1.791759469,3.77930706,4.44095941,35,481,446,0.715890851,24,3,9,1.188822439,0,0,27,18,0.028892456,1,0.001605136,8,0.012841091,0.043338684,12,0.019261637,0,0,11,0.017656501,72,0.115569823,0,0,35,0.056179775,24,0.038523274,0.447833066,1,0.001605136,2,0.003210273,623,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0123_U3,WF0123,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.64715729,0.666666667,9,0.12,4.795790546,3.237275457,1.98894159,3.50935134,1.997313336,0.073471779,0.042394484,0.115866263,0.012743191,-0.009954604,0.022697795,0.95344,0.393658963,0.606722008,-0.414708074,2.911784288,2.223664744,4.371199998,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,15,0,0,0,0,0,5,0,0,0,0,1,88.65615569,0,0,0,0,0,4,4,28,0,0,0,4.007333185,2.63905733,3.916124208,4.701298701,1,707,706,0.825730994,40,5,11,1.141935444,0,0,41,31,0.03625731,3,0.003508772,7,0.008187135,0.047953216,19,0.022222222,0,0,26,0.030409357,69,0.080701754,0,0,41,0.047953216,53,0.061988304,0.347368421,3,0.003508772,5,0.005847953,855,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0124_U1,WF0124,English,,,#NULL!,#NULL!,,4.75938356,0.137323944,50,0.143266476,4.971662115,2.687086168,2.664179897,3.052641802,2.635813225,0.117626326,0.059755517,0.177374958,0.014733219,-0.011480207,0.026213425,1,0.5176879,0.523477733,-4.395432504,2.748318555,85.63101717,10.52186266,0,2,1,2,3,1,2,1,31,3,0,0,3,0,0,0,0,14,0,160,1,176,0,8,0,0,0,1,21,255.136782,0,0,110,0,1,0,36,108,137,0,3,2.876737567,5.075173815,4.545973904,5.042590637,5,2569,2564,0.804013797,110,4,39,1.121544712,3,0.000940734,181,120,0.037629351,13,0.004076513,48,0.01505174,0.056757604,62,0.019441831,8,0.002508623,44,0.013797429,105,0.032925682,8,0.002508623,114,0.035747883,92,0.028849169,0.238319222,9,0.002822201,4,0.001254312,3189,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0124_U2,WF0124,English,,,#NULL!,#NULL!,,6.56746904,0.752,45,0.152542373,5.033976574,3.064731077,2.730115804,3.081074394,2.817684764,0.095308915,0.037235095,0.132539751,0.018153748,-0.009540034,0.027693782,1,0.525031616,0.573058223,-0.78498439,2.73794078,21.44487124,3.352829602,0,2,0,0,2,0,2,0,14,3,0,0,1,0,0,0,0,22,0,12,0,1,0,6,0,0,0,0,6,224.6558676,1,0,32,2,2,0,6,104,0,11,4,5.107675578,2.63905733,4.321844566,4.831892826,7,2380,2373,0.908847185,106,12,19,0.917867992,0,0,97,64,0.024511681,13,0.004978935,20,0.0076599,0.037150517,42,0.016085791,2,0.00076599,51,0.019532746,138,0.052853313,2,0.00076599,134,0.051321333,36,0.013787821,0.290310226,5,0.001914975,9,0.003446955,2611,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0124_U3,WF0124,English,,,#NULL!,#NULL!,,6.546286253,0.732142857,26,0.171052632,5.147800428,2.843742693,0.847034146,3.022998574,0.695713874,0.136045957,0.056294775,0.192340733,0.023610146,-0.011883252,0.035493398,0.94547,0.545135664,0.683714345,-1.33095376,2.701194735,11.99896377,3.29280308,0,2,1,0,0,0,2,3,7,0,0,0,2,0,0,0,1,18,0,1,0,3,0,5,0,0,0,0,6,167.9530982,0,0,11,5,0,3,5,46,0,1,1,4.546834609,2.708050201,4.470719692,5.296819788,21,1201,1180,0.733830846,57,0,19,1.107749801,3,0.001865672,88,60,0.037313433,13,0.008084577,15,0.009328358,0.054726368,22,0.013681592,2,0.001243781,30,0.018656716,31,0.019278607,1,0.000621891,61,0.037935323,57,0.035447761,0.311567164,0,0,2,0.001243781,1608,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0126_U1,WF0126,Business,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,5.968988569,0.428571429,11,0.282051282,5.64562809,2.889660787,3.331921729,2.882811664,3.335503232,0.149052195,0.017629179,0.166681374,0.022112462,-0.001975684,0.024088146,0.86536,0.447875519,0.562079787,-0.005801121,2.921968614,5.148397666,0.913317852,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,1,25.18846513,0,0,5,0,0,1,5,18,0,4,0,3.157000421,2.63905733,2.996650613,5.054711246,117,313,196,0.538461538,13,0,4,1.078783358,0,0,11,6,0.016483516,1,0.002747253,4,0.010989011,0.03021978,5,0.013736264,0,0,7,0.019230769,40,0.10989011,3,0.008241758,33,0.090659341,6,0.016483516,0.513736264,0,0,0,0,364,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0126_U3,WF0126,Business,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.450797003,0.607142857,8,0.145454545,4.98671511,3.326165945,3.48879275,2.962418821,3.361165946,0.155142455,0.028069898,0.18319018,0.028991131,-0.003325942,0.032317073,0.80516,0.420223746,0.620611308,-0.076627657,2.89241696,1.775292435,1.163329047,0,0,1,0,1,0,1,0,2,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,0,49.44395143,0,0,0,0,0,2,4,20,0,2,0,3.54207353,2.564949357,3.388735384,4.968819599,14,464,450,0.894632207,30,0,9,1.276292744,0,0,20,14,0.027833002,2,0.003976143,4,0.007952286,0.039761431,7,0.013916501,2,0.003976143,8,0.015904573,49,0.097415507,0,0,33,0.065606362,15,0.029821074,0.45526839,1,0.001988072,1,0.001988072,503,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0126_U4,WF0126,Business,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.411961265,0.606060606,4,0.061538462,4.135781752,3.239967909,3.59918718,3.172428416,3.498501472,0.114683157,0.036488812,0.151171969,0.020697074,-0.009509466,0.03020654,0.86496,0.29233744,0.47534531,0.389749583,2.816423833,2.886557872,1.398693904,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,10,0,0,0,1,2,2,0,0,0,0,0,71.95262095,0,0,0,0,1,0,4,20,8,0,1,4.16752618,2.197224577,3.975911663,4.915662651,9,467,458,0.712286159,32,5,17,1.438361461,0,0,23,16,0.024883359,5,0.00777605,2,0.00311042,0.035769829,9,0.01399689,4,0.00622084,11,0.017107309,49,0.076205288,4,0.00622084,38,0.059097978,18,0.027993779,0.441679627,1,0.00155521,2,0.00311042,643,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0126_U5,WF0126,Business,"A parent, brother, sister or other relative",Somewhat,0,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.599661163,0.666666667,6,0.084507042,4.448598738,3.290932365,3.587051325,3.374221575,3.544419514,0.095107607,0.035670416,0.130778023,0.012060302,-0.008500838,0.020561139,0.79571,0.333449854,0.652421956,0.135875512,3.055201863,3.65278266,1.100735048,0,0,0,0,0,0,2,0,3,0,0,0,1,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,53.19272695,0,0,5,0,0,2,5,27,0,2,0,3.617651945,2.772588722,4.030353112,4.812080537,21,391,370,0.569230769,24,0,7,1.070748079,0,0,19,6,0.009230769,3,0.004615385,10,0.015384615,0.029230769,11,0.016923077,2,0.003076923,8,0.012307692,58,0.089230769,1,0.001538462,43,0.066153846,17,0.026153846,0.456923077,1,0.001538462,0,0,650,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0126_U6,WF0126,Business,No one helped me,A little,1,0,I completed the assignment on a tablet (such as an iPad).,6.507807182,0.625,6,0.136363636,4.922631689,2.947881711,3.45137592,2.80427201,3.434795501,0.16552521,0.021631016,0.187156226,0.032426471,0,0.032426471,0.7835,0.237597633,0.643837255,-0.216301951,3.100241364,1.86060197,0.867612659,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,39.29403102,0,0,0,0,0,3,1,11,1,0,0,4.219507705,1.609437912,3.111418708,4.547058824,64,359,295,0.793010753,12,0,4,1.070137213,0,0,31,21,0.056451613,6,0.016129032,4,0.010752688,0.083333333,8,0.021505376,0,0,4,0.010752688,39,0.10483871,0,0,18,0.048387097,11,0.029569892,0.456989247,1,0.002688172,1,0.002688172,372,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0127_U1,WF0127,English,No one helped me,Not at all,1,1,I completed the assignment on a laptop or desktop computer.,6.614637722,0.733333333,13,0.160493827,5.08446692,3.237772192,3.138029071,3.388053707,2.34576052,0.070854906,0.056071789,0.126926695,0.021077763,-0.020907231,0.041984993,0.86358,0.521943224,0.576673985,-1.238425254,2.818530448,7.090894946,3.2579054,0,0,2,0,0,0,0,0,0,0,0,0,1,0,0,0,0,25,1,4,0,3,0,3,0,0,0,0,3,76.03984449,0,0,7,0,1,1,3,36,1,2,2,4.275276265,2.302585093,4.213455258,4.869262865,68,779,711,0.847437426,44,6,11,1.14955306,0,0,24,21,0.025029797,2,0.00238379,1,0.001191895,0.028605483,13,0.015494636,2,0.00238379,50,0.059594756,82,0.097735399,0,0,51,0.060786651,30,0.035756853,0.415971395,0,0,3,0.003575685,839,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0127_U3,WF0127,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.153979523,0.444444444,8,0.16,5.081404365,3.173042349,2.889594707,2.946252689,3.04631392,0.093507791,0.052490744,0.145998535,0.005965147,-0.008512064,0.014477212,0.63211,0.426014075,0.605230769,-0.616981499,3.027769364,1.746218141,1.165452814,0,1,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,0,0,0,0,1,43.66943368,0,0,0,0,3,0,3,11,0,4,0,3.729701449,2.197224577,3.557613222,4.792,1,362,361,0.878345499,18,4,14,1.544852296,0,0,17,14,0.03406326,2,0.00486618,1,0.00243309,0.04136253,8,0.01946472,0,0,11,0.02676399,22,0.053527981,0,0,22,0.053527981,10,0.0243309,0.479318735,2,0.00486618,2,0.00486618,411,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0130_U1,WF0130,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.580014312,0.725806452,15,0.107913669,4.690555541,3.260065754,1.950403328,3.32314351,1.844444321,0.081542317,0.035961045,0.117503362,0.015535918,-0.00986317,0.025399088,0.98049,0.371856845,0.609847715,-0.980502138,2.841445132,7.024216708,1.497217471,0,0,0,0,3,0,2,0,6,1,0,0,0,0,0,0,0,39,0,0,0,0,0,3,0,0,0,0,0,61.7227445,0,0,6,0,2,1,3,53,1,1,3,4.365989636,2.397895273,4.277391246,4.811778291,114,799,685,0.701125896,47,4,5,0.786588692,0,0,21,14,0.01432958,4,0.004094166,3,0.003070624,0.021494371,21,0.021494371,4,0.004094166,53,0.054247697,87,0.089048106,0,0,66,0.067553736,18,0.018423746,0.378710338,0,0,2,0.002047083,977,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0130_U2,WF0130,English,No one helped me,A lot,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.691091998,0.804878049,15,0.12295082,4.819884871,3.198264308,2.126082358,3.323462642,1.882223977,0.143418333,0.081181958,0.224600291,0.034615385,-0.028995726,0.063611111,0.99999,0.485602992,0.656967677,-0.891963117,2.994939274,13.69654918,2.893329801,0,0,0,1,1,0,1,0,9,1,0,0,0,0,0,0,0,4,0,2,0,1,0,11,0,0,0,0,1,128.8837355,0,0,15,1,0,0,6,71,0,4,1,4.350707951,2.708050201,4.515612277,4.892519347,44,1088,1044,0.782608696,69,9,10,0.929227379,0,0,58,35,0.026236882,15,0.011244378,8,0.005997001,0.043478261,21,0.015742129,7,0.005247376,32,0.023988006,42,0.031484258,1,0.000749625,93,0.069715142,21,0.015742129,0.34107946,1,0.000749625,4,0.002998501,1334,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0130_U3,WF0130,English,"A parent, brother, sister or other relative",Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.632169666,0.756756757,14,0.175,5.170483995,3.031511889,2.636733818,3.163179342,2.389122903,0.098614326,0.052005811,0.150620137,0.015723496,-0.006232092,0.021955587,1,0.496960006,0.688973333,0.396406834,2.992803316,4.915643196,1.088671242,0,0,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,78.33441732,0,0,0,0,2,3,3,29,1,1,0,4.234106505,2.302585093,3.778847468,4.824637681,29,571,542,0.704811443,39,4,17,1.363736648,0,0,34,20,0.026007802,3,0.00390117,11,0.014304291,0.044213264,15,0.019505852,2,0.00260078,6,0.007802341,17,0.022106632,0,0,41,0.053315995,13,0.016905072,0.421326398,2,0.00260078,1,0.00130039,769,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0132_U1,WF0132,Business,No one helped me,Not at all,0,1,I completed the assignment on a laptop or desktop computer.,6.576210704,0.6875,1,0.027027027,3.333169296,2.530683408,3.444192309,2.980809806,3.425270037,0.180605609,0.027827535,0.208433144,0.02038835,-0.001213592,0.021601942,0.71278,0.15021816,0.551125625,-0.21865268,3.081475653,1.742352205,0.450818965,0,0,0,0,0,0,0,1,3,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,29.75563939,0,0,0,0,0,0,3,11,1,1,0,3.653899735,2.079441542,3.030649006,4.385113269,90,193,103,0.303834808,5,0,3,0.993416721,0,0,26,9,0.026548673,12,0.03539823,5,0.014749263,0.076696165,5,0.014749263,1,0.002949853,7,0.020648968,26,0.076696165,0,0,20,0.05899705,8,0.02359882,0.486725664,3,0.008849558,0,0,339,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0135_U1,WF0135,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.78545793,0.906779661,37,0.126279863,4.846388311,3.02630603,3.334196776,3.239798308,3.187466486,0.089898189,0.044454043,0.134352232,0.010921986,-0.008321513,0.019243499,1,0.426838198,0.509679501,-3.976124696,2.926438761,14.00818209,4.784675277,0,1,0,0,2,0,0,0,3,1,0,0,3,0,0,0,0,4,0,0,0,1,0,12,0,0,0,0,0,259.4362192,0,0,13,0,0,0,6,110,0,2,0,4.916080385,2.708050201,3.926458045,4.75085491,1,1140,1139,0.503091873,122,9,15,0.882265005,7,0.003091873,109,72,0.03180212,20,0.008833922,17,0.007508834,0.048144876,45,0.019876325,4,0.001766784,22,0.009717314,191,0.084363958,1,0.000441696,125,0.055212014,48,0.021201413,0.21819788,6,0.002650177,12,0.005300353,2264,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0135_U2,WF0135,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.78128133,0.748427673,39,0.102362205,4.63823937,3.027716271,3.143568479,3.196619871,3.201199031,0.110765271,0.065128483,0.175893754,0.017294396,-0.012736536,0.030030932,1,0.522094472,0.62759968,-1.400615129,2.933706738,37.48472684,12.06848302,0,1,1,2,1,0,1,2,7,1,0,0,0,0,0,0,0,25,0,16,0,19,0,4,1,0,1,0,5,249.9069689,0,0,50,4,0,0,9,132,17,0,1,4.388622481,3.526360525,4.10844126,5.053323594,1,2872,2871,0.884745763,132,18,29,0.99724768,10,0.003081664,147,114,0.035130971,10,0.003081664,23,0.007087827,0.045300462,36,0.011093991,33,0.010169492,64,0.01972265,159,0.048998459,1,0.000308166,164,0.050539291,61,0.018798151,0.267180277,4,0.001232666,8,0.002465331,3245,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0135_U3,WF0135,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.733132987,0.819672131,13,0.091549296,4.52774143,3.008283755,1.099187612,3.04947685,1.033283545,0.135375767,0.031563679,0.166932194,0.018527919,-0.006254532,0.024782451,0.99999,0.480716301,0.575857659,-0.377162732,2.786135488,10.2367356,3.401685913,0,2,0,0,2,0,2,0,3,0,0,0,2,0,0,0,0,13,0,3,0,1,0,8,0,0,0,0,1,160.3910859,0,0,10,0,1,0,4,53,0,4,0,4.825400407,2.397895273,3.987176511,5.011670314,2,1194,1192,0.794137242,67,9,19,1.135394353,1,0.000666223,56,36,0.023984011,6,0.003997335,14,0.009327115,0.037308461,24,0.01598934,0,0,23,0.015323118,30,0.019986676,1,0.000666223,70,0.046635576,38,0.025316456,0.339773484,2,0.001332445,3,0.001998668,1501,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0136_U1,WF0136,English,No one helped me,A little,0,0,I completed the assignment on a laptop or desktop computer.,6.397434754,0.666666667,8,0.296296296,5.694729272,3.062047429,1.010248125,2.983928878,0.956644117,0.056445312,0.052213542,0.108658854,0.023730469,-0.024609375,0.048339844,0.64914,0.215833617,0.463706093,0.023680768,2.514881819,0.378941412,1.650187598,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,1,28.21044399,0,0,0,1,0,1,0,8,0,0,0,4.820281566,0.693147181,3.751713118,4.693548387,18,254,236,0.822299652,7,0,9,1.509993549,0,0,4,4,0.013937282,0,0,0,0,0.013937282,7,0.024390244,1,0.003484321,5,0.017421603,7,0.024390244,0,0,9,0.031358885,8,0.027874564,0.550522648,0,0,1,0.003484321,287,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0137_U1,WF0137,Sociology,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.325497146,0.526315789,23,0.219047619,5.393843973,3.002272937,0.747312692,3.310012864,0.520200513,0.131887375,0.038883155,0.170716939,0.015996785,-0.007073955,0.02307074,0.92336,0.405923188,0.678852157,0.24980315,2.672920936,4.164980974,2.422959334,0,0,1,0,1,0,0,0,8,0,0,0,1,0,0,0,0,19,0,0,0,2,0,0,0,0,0,0,0,113.2112415,0,0,0,1,1,0,4,23,0,11,0,4.629320646,2.197224577,3.967184063,4.959869848,112,930,818,0.80591133,32,3,12,1.10797813,0,0,39,23,0.022660099,7,0.006896552,9,0.008866995,0.038423645,16,0.015763547,0,0,32,0.031527094,17,0.016748768,2,0.001970443,39,0.038423645,30,0.02955665,0.349753695,1,0.000985222,1,0.000985222,1015,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0137_U2,WF0137,Sociology,No one helped me,Not at all,1,1,I completed the assignment on a laptop or desktop computer.,6.297162699,0.581395349,13,0.132653061,4.895247347,3.060934668,0.830003076,3.195291108,0.506763032,0.1097236,0.032280649,0.141993822,0.013138686,-0.004614181,0.017752868,0.96897,0.436897455,0.651678416,1.050562213,2.807670843,4.613543719,1.082454652,0,0,0,0,0,0,0,0,5,2,0,0,1,0,0,0,0,23,0,0,0,2,0,3,0,0,0,0,0,132.8947323,0,0,0,1,4,0,3,28,0,12,0,4.912654886,1.945910149,4.028635786,4.982142857,261,862,601,0.580676329,36,0,5,0.765736925,0,0,46,24,0.023188406,10,0.009661836,12,0.011594203,0.044444444,14,0.01352657,0,0,34,0.032850242,23,0.022222222,2,0.001932367,49,0.047342995,33,0.031884058,0.336231884,1,0.000966184,4,0.003864734,1035,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0141_U1,WF0141,Sociology,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.353924589,0.625,12,0.179104478,5.193537114,3.363021085,3.173362327,3.509123576,3.130271886,0.072830378,0.061959837,0.134790215,0.020329181,-0.023309609,0.04363879,0.87219,0.227288197,0.483033677,-0.242498002,2.649547652,5.375749647,1.94177758,0,0,1,0,1,0,0,0,3,0,0,0,2,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,1,46.03980881,0,0,0,1,0,2,2,26,0,2,0,4.018183201,2.302585093,3.561121622,4.45323741,10,560,550,0.891410049,29,3,10,1.235716653,0,0,14,8,0.012965964,1,0.001620746,5,0.008103728,0.022690438,9,0.01458671,1,0.001620746,15,0.024311183,35,0.056726094,1,0.001620746,35,0.056726094,20,0.032414911,0.457050243,1,0.001620746,2,0.003241491,617,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0142_U1,WF0142,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.713226179,0.803921569,17,0.147826087,5.002778423,3.183667167,1.064095797,3.391786465,0.85004553,0.13544591,0.066729607,0.202175516,0.022502575,-0.022090628,0.044593203,0.8698,0.504367674,0.643423358,0.137193689,3.015497194,10.28251024,1.754054228,0,0,0,0,0,0,0,0,9,1,0,0,0,0,0,0,0,2,0,1,0,0,0,4,2,0,0,0,1,149.9576458,0,0,10,0,1,2,5,44,0,0,0,4.300941717,2.564949357,4.451470567,4.847758081,104,806,702,0.615789474,35,0,5,0.73126352,0,0,41,28,0.024561404,6,0.005263158,7,0.006140351,0.035964912,14,0.012280702,3,0.002631579,21,0.018421053,33,0.028947368,0,0,58,0.050877193,16,0.014035088,0.354385965,1,0.000877193,0,0,1140,,Yes,1,Persuade,Annotator3,Draft,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0142_U2,WF0142,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.127995929,0.470588235,3,0.073170732,4.306369621,3.253989784,0.870944517,2.358976373,0.915766043,0.118089241,0.055725235,0.173814476,0.01108156,-0.004964539,0.016046099,0.91054,0.391909908,0.661174377,-0.313163796,2.960822281,1.687519323,1.486443477,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,36.21226905,0,0,0,0,0,2,4,11,0,0,0,3.15344802,2.48490665,4.222484225,4.932384342,1,164,163,0.532679739,21,5,6,1.31403254,0,0,14,8,0.026143791,1,0.003267974,5,0.016339869,0.045751634,7,0.022875817,0,0,6,0.019607843,11,0.035947712,0,0,22,0.071895425,7,0.022875817,0.535947712,0,0,0,0,306,,Yes,1,Persuade,Annotator3,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WF0142_U3,WF0142,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.6560053,0.684210526,13,0.132653061,4.895247347,3.219156923,3.265787534,3.479427716,3.184475175,0.098551441,0.034519587,0.133071028,0.014977307,-0.00994705,0.024924357,0.89637,0.396402191,0.66232054,-1.060802023,2.652625185,5.052076388,2.22835667,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,49,0,0,0,0,0,1,0,0,0,0,0,65.61484947,0,0,0,0,2,1,3,30,3,1,0,3.993602992,2.48490665,4.424646763,4.852534562,183,706,523,0.700133869,28,0,14,1.295383078,5,0.00669344,25,20,0.026773762,5,0.00669344,0,0,0.033467202,17,0.022757697,2,0.002677376,46,0.061579652,60,0.080321285,2,0.002677376,43,0.057563588,24,0.032128514,0.436412316,4,0.005354752,3,0.004016064,747,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0143_U1,WF0143,History,A tutor,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.572092744,0.673913043,19,0.211111111,5.357110246,3.283377389,1.095791534,3.309431093,0.949246987,0.104128988,0.060159274,0.164288261,0.015039954,-0.026141553,0.041181507,1,0.500595152,0.49412654,0.771531267,2.632612327,11.02301638,1.236809201,0,1,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,8,0,10,0,1,0,2,1,0,0,0,1,125.0677442,0,0,9,1,1,3,6,36,0,0,1,3.861898618,2.890371758,4.327999392,5.168224299,22,707,685,0.673549656,37,0,8,0.947741117,0,0,43,30,0.029498525,7,0.006882989,6,0.005899705,0.042281219,12,0.01179941,0,0,18,0.017699115,36,0.03539823,0,0,54,0.053097345,23,0.022615536,0.375614553,0,0,6,0.005899705,1017,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0144_U1,WF0144,English,,,#NULL!,#NULL!,,6.64933516,0.714285714,10,0.097087379,4.5858587,3.101711832,3.581826545,3.433730252,3.575459985,0.12200177,0.041951505,0.163941004,0.031349693,-0.007944785,0.039294479,0.92606,0.11777295,0.630780412,-0.621488728,2.933058012,2.638045918,2.980613666,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,82.73612991,0,0,0,0,0,2,3,25,4,1,0,4.502275763,2.197224577,3.80644339,4.204433498,5,842,837,0.924861878,37,4,5,0.814571323,0,0,48,28,0.030939227,7,0.007734807,13,0.014364641,0.053038674,19,0.020994475,12,0.013259669,9,0.009944751,74,0.081767956,0,0,39,0.043093923,34,0.037569061,0.302762431,4,0.00441989,3,0.003314917,905,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0144_U2,WF0144,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.484623626,0.526315789,9,0.130434783,4.878510779,2.523317919,2.585458593,3.208534317,2.580273486,0.106351039,0.041451107,0.147802146,0.01100823,-0.01095679,0.021965021,0.77464,0.244765371,0.800577822,-0.568704769,3.072293361,2.860228517,2.002158166,0,0,1,0,1,0,1,1,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,75.1553228,0,0,0,1,0,0,2,14,2,1,0,3.881563798,2.302585093,3.822462929,4.713402062,78,332,254,0.482889734,10,0,4,0.934728805,0,0,22,22,0.041825095,0,0,0,0,0.041825095,8,0.015209125,5,0.009505703,12,0.022813688,42,0.079847909,0,0,23,0.043726236,14,0.02661597,0.403041825,0,0,4,0.007604563,526,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0144_U3,WF0144,English,No one helped me,Not at all,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.458316812,0.5,1,0.071428571,4.282600855,1.87171126,1.013531641,1.882118632,1.069411221,0.075317606,0.018333333,0.09365094,0.001458333,-0.002708333,0.004166667,0.67081,0.273910899,0.458935043,-0.010423987,2.52646533,1.105988946,0.356231004,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,17.24765286,0,0,0,0,0,1,0,7,0,0,0,3.663561646,1.098612289,3.068086514,5.521367521,7,142,135,0.924657534,6,0,5,1.547116926,0,0,4,2,0.01369863,2,0.01369863,0,0,0.02739726,2,0.01369863,0,0,2,0.01369863,6,0.04109589,0,0,8,0.054794521,2,0.01369863,0.582191781,1,0.006849315,2,0.01369863,146,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0144_U4,WF0144,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",5.768213231,0.272727273,8,0.195121951,5.278736666,2.879887571,2.96263716,2.276363033,3.18064447,0.078450297,0.035320911,0.113740152,0.009006211,-0.010326087,0.019332298,0.59601,0.374236624,0.495277922,0.158141888,2.61217609,0.441270518,2.261195663,1,3,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,38.12451304,0,0,0,1,0,0,1,7,0,0,3,5.036952602,0.693147181,3.587945118,5.032467532,1,313,312,0.896551724,10,1,11,1.513340083,0,0,5,3,0.00862069,0,0,2,0.005747126,0.014367816,5,0.014367816,0,0,13,0.037356322,20,0.057471264,0,0,12,0.034482759,6,0.017241379,0.5,0,0,0,0,348,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0147_U1,WF0147,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.608164688,0.717948718,7,0.122807018,4.818724043,3.223675355,3.290603793,3.407169282,3.236032415,0.08596811,0.046960276,0.132928386,0.029447323,-0.022970639,0.052417962,0.8193,0.261168088,0.533540936,-0.478432296,2.890278661,3.835010939,2.661016135,0,1,0,0,0,0,1,0,1,1,0,0,2,0,0,0,0,12,0,0,0,0,0,2,0,0,0,0,2,63.32362257,0,0,6,0,1,1,4,30,0,4,0,3.871201011,2.48490665,3.669955236,4.579861111,4,599,595,0.904255319,43,5,6,1.005117897,0,0,17,14,0.021276596,2,0.003039514,1,0.001519757,0.025835866,5,0.007598784,5,0.007598784,22,0.03343465,62,0.094224924,0,0,44,0.066869301,24,0.036474164,0.41337386,6,0.009118541,3,0.004559271,658,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0151_U1,WF0151,Business,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,5.997437077,0.444444444,6,0.125,4.836281907,3.160201959,3.565272994,2.566389156,3.50817841,0.141409908,0.020118343,0.161508527,0.03377712,-0.000838,0.034615385,0.92022,0.592724172,0.486865563,-0.051893183,2.648401273,1.787536531,1.263375566,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,18,0,0,0,0,0,0,0,0,0,0,0,55.55994721,0,0,0,0,1,2,8,17,0,0,0,3.342076259,2.890371758,3.808684753,5.412573674,50,468,418,0.729493892,30,0,15,1.434217662,0,0,23,11,0.019197208,4,0.006980803,8,0.013961606,0.040139616,11,0.019197208,0,0,16,0.027923211,36,0.062827225,3,0.005235602,36,0.062827225,11,0.019197208,0.429319372,0,0,0,0,573,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0151_U2,WF0151,Business,,,#NULL!,#NULL!,,6.403662663,0.611111111,5,0.208333333,5.343927878,1.729233942,3.088908773,1.669186498,3.543595108,0.142275974,0.003875,0.146150974,0.033229167,0,0.033229167,0.79234,0.599468398,0.500292735,0.531574575,2.813821223,5.77923577,0.31054199,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,21.03530973,0,0,0,0,0,2,2,14,0,0,0,3.663561646,1.791759469,3.694452139,5.700854701,81,152,71,0.270992366,10,0,5,1.302849552,0,0,9,8,0.030534351,0,0,1,0.003816794,0.034351145,2,0.007633588,0,0,7,0.026717557,16,0.061068702,3,0.011450382,24,0.091603053,1,0.003816794,0.572519084,0,0,0,0,262,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0153_U1,WF0153,Biology,No one helped me,A lot,0,0,I completed the assignment on a laptop or desktop computer.,6.390725582,0.571428571,6,0.1875,5.239098007,2.760530335,0.88407235,1.952176049,1.061064548,0.092285955,0.028535354,0.120821308,0.010479798,-0.010669192,0.02114899,0.96408,0.334668018,0.674622278,0.399450193,2.423221295,1.928732445,2.779406677,0,0,2,0,0,0,0,2,7,0,0,0,0,0,0,0,0,16,0,0,0,0,0,2,0,0,0,0,2,56.07496004,0,0,0,0,4,0,1,14,1,5,0,4.194692536,1.791759469,3.182145587,5.253768844,30,326,296,0.633832976,15,2,6,1.14138598,0,0,16,9,0.019271949,0,0,7,0.014989293,0.034261242,5,0.010706638,0,0,32,0.068522484,12,0.025695931,1,0.002141328,23,0.049250535,12,0.025695931,0.355460385,0,0,0,0,467,,Yes,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0153_U2,WF0153,Biology,A tutor,A lot,0,0,I completed the assignment on a laptop or desktop computer.,6.682458504,0.779141104,24,0.153846154,5.042432068,3.030130881,1.163659058,2.602682419,0.957421567,0.037192272,0.018973789,0.056072814,0.006053055,-0.006125402,0.012178457,1,0.183908753,0.59364156,-7.301440386,2.303870057,45.97834457,12.44767803,1,2,0,0,1,0,0,2,16,1,0,0,0,0,0,0,0,128,0,12,0,22,0,21,0,0,0,0,6,455.5668336,0,0,58,4,12,0,6,139,12,6,0,4.458537472,3.583518938,3.904826955,4.235767128,12,3593,3581,0.95518805,172,29,38,1.046730637,0,0,44,25,0.006668445,1,0.000266738,18,0.00480128,0.011736463,20,0.005334756,0,0,262,0.069885303,35,0.009335823,10,0.002667378,192,0.051213657,44,0.011736463,0.203254201,0,0,0,0,3749,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0153_U3,WF0153,Biology,Someone else,A lot,1,0,I completed the assignment on a laptop or desktop computer.,4.719490443,0.090909091,4,0.222222222,5.408167787,2.734411058,0.624536516,1.788770832,0.514375773,0.068380231,0.022847523,0.091227754,0.006134259,-0.003240741,0.009375,0.60693,0.362793434,0.716986792,0.270361853,2.675249876,1.473999523,0.369581123,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,1,0,1,0,0,0,0,0,31.51227201,0,0,0,0,2,2,1,3,0,5,0,3.564826805,1.791759469,3.408605647,4.933962264,6,204,198,0.785714286,9,1,12,1.686806447,0,0,5,1,0.003968254,1,0.003968254,3,0.011904762,0.01984127,2,0.007936508,0,0,11,0.043650794,1,0.003968254,1,0.003968254,12,0.047619048,5,0.01984127,0.53968254,0,0,0,0,252,,Yes,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0153_U4,WF0153,Biology,Someone else,A lot,1,0,I completed the assignment on a laptop or desktop computer.,6.542890799,0.769230769,7,0.24137931,5.490503897,2.129392588,0.710512702,2.664195074,0.506763032,0.026848485,0.0232,0.049975758,0.007272727,-0.004545455,0.011818182,0.41916,0.30458632,0.567128959,0.848766726,2.526116651,0.77068917,0.945558725,0,2,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,38.80440986,0,0,0,0,5,0,1,12,0,0,0,4.510859507,1.098612289,3.201338263,4.860805861,16,311,295,0.942492013,13,1,14,1.660186334,0,0,0,0,0,0,0,0,0,0,2,0.006389776,0,0,11,0.03514377,5,0.015974441,0,0,14,0.044728435,3,0.009584665,0.485623003,0,0,0,0,313,,No,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0153_U5,WF0153,Biology,Someone else,A lot,1,0,I completed the assignment on a laptop or desktop computer.,#NULL!,#NULL!,6,0.082191781,4.421148555,1.777250922,0.857613002,2.258188839,0.482375984,0.022122475,0.017467905,0.039449682,0.004507556,-0.005693069,0.010200625,0,0,0.567039469,-5.813013188,2.144123005,34.10555873,8.592739161,0,0,0,0,0,0,0,2,6,1,0,0,0,0,0,0,0,73,0,10,0,20,0,21,0,0,0,0,0,324.6743048,0,0,52,5,0,0,4,86,2,8,2,5.086566999,2.48490665,3.720633574,3.602471679,3,1913,1910,0.827915041,112,15,7,0.605762119,0,0,18,12,0.00520156,0,0,6,0.00260078,0.007802341,12,0.00520156,0,0,171,0.074122237,16,0.006935414,1,0.000433463,117,0.050715215,17,0.007368877,0.171218032,0,0,0,0,2307,,No,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0153_U6,WF0153,Biology,No one helped me,A lot,0,0,I completed the assignment on a laptop or desktop computer.,6.318951195,0.555555556,3,0.1875,5.239098007,2.277310465,0.482178387,1.754284668,0.506763032,0.104407295,0.023657548,0.128064843,0.028457447,-0.000798,0.029255319,0.36983,0.52189696,0.569465819,-0.142071613,2.404129877,1.529701989,0.259402947,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,32.64005675,0,0,0,0,1,0,2,6,0,0,1,4.527208645,0.693147181,2.789461546,5.967567568,5,192,187,0.877934272,10,2,7,1.529736329,0,0,3,1,0.004694836,0,0,2,0.009389671,0.014084507,2,0.009389671,0,0,3,0.014084507,2,0.009389671,1,0.004694836,11,0.051643192,5,0.023474178,0.450704225,0,0,0,0,213,,No,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0154_U1,WF0154,English,"A parent, brother, sister or other relative",A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.645584276,0.745454545,27,0.207692308,5.340860955,3.117886694,1.03470561,3.119912865,1.106313498,0.120604488,0.071920743,0.192525231,0.02620614,-0.026381579,0.052587719,0.81107,0.545303913,0.589585098,-0.114325785,2.858761004,8.672418616,3.263402768,0,3,1,0,0,0,0,0,2,1,0,0,1,0,0,0,0,4,1,5,0,5,0,5,0,0,0,0,0,105.7880352,0,0,5,1,2,3,4,45,1,1,1,4.388257184,2.63905733,4.458659769,5.015084295,42,1195,1153,0.91290578,55,5,10,0.950250734,0,0,44,28,0.022169438,7,0.005542359,9,0.007125891,0.034837688,25,0.019794141,5,0.003958828,25,0.019794141,25,0.019794141,1,0.000791766,60,0.047505938,28,0.022169438,0.409342835,0,0,3,0.002375297,1263,Yes,Yes,1,Persuade,Annotator1,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0154_U2,WF0154,English,"A parent, brother, sister or other relative",A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.740745151,0.841269841,22,0.134146341,4.906358202,2.95227924,0.731712067,3.20156194,0.544264987,0.111854739,0.029943336,0.141798074,0.01184405,-0.004674797,0.016518847,0.98394,0.499088004,0.699175224,-1.417327627,2.79619595,7.258678549,2.611779619,0,1,1,0,0,0,0,0,6,2,0,0,2,0,0,0,0,11,0,3,0,0,0,1,0,0,0,0,1,108.3233741,0,0,9,0,2,1,4,56,0,2,0,4.717754547,2.48490665,4.146259838,5.037974684,1,1150,1149,0.757915567,64,8,37,1.404941977,3,0.001978892,86,60,0.039577836,17,0.01121372,9,0.005936675,0.056728232,36,0.023746702,0,0,17,0.01121372,38,0.025065963,1,0.000659631,68,0.044854881,49,0.0323219,0.300791557,1,0.000659631,4,0.002638522,1516,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0154_U3,WF0154,English,A teacher,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.77850842,0.828358209,43,0.144781145,4.982106489,2.776233146,2.34032653,3.038420111,1.892548554,0.09462177,0.033279553,0.127901323,0.01806678,-0.009783071,0.027849851,0.81075,0.511996549,0.660204638,-2.698642012,2.699594547,16.5026411,4.176012084,0,2,1,0,1,0,0,0,12,0,2,0,5,0,0,0,0,16,0,2,0,0,0,6,1,0,0,0,3,197.1901406,0,0,10,0,3,0,5,116,10,1,2,5.101607072,2.63905733,4.519261681,5.106956522,1,2488,2487,0.930067315,144,15,21,0.94711024,30,0.011219147,75,39,0.014584892,8,0.002991773,28,0.010471204,0.028047868,59,0.022064323,13,0.004861631,32,0.011967091,121,0.045250561,2,0.000747943,148,0.055347794,51,0.01907255,0.287210172,1,0.000373972,6,0.002243829,2674,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0156_U1,WF0156,English,No one helped me,Somewhat,0,0,I completed the assignment on a laptop or desktop computer.,6.40961507,0.543859649,25,0.2,5.303304908,3.309083386,3.424357017,3.361496854,3.297456172,0.06463968,0.058534162,0.123173843,0.015729665,-0.026854067,0.042583732,1,0.409773436,0.503404792,-0.81280305,2.683061127,10.94058052,3.109638958,0,2,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,31,1,8,0,5,0,4,0,0,0,0,2,110.2372922,0,0,15,0,1,0,6,41,0,6,4,4.067805007,2.63905733,4.458094928,4.995110024,22,916,894,0.93125,57,0,12,1.130333768,7,0.007291667,33,22,0.022916667,3,0.003125,8,0.008333333,0.034375,13,0.013541667,3,0.003125,41,0.042708333,63,0.065625,1,0.001041667,67,0.069791667,20,0.020833333,0.410416667,0,0,1,0.001041667,960,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0159_U1,WF0159,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.681265861,0.672413793,19,0.066666667,4.21459369,2.795031766,1.139264161,3.058781585,1.638084352,0.152422359,0.033324059,0.18568012,0.022449355,-0.003637201,0.026086556,0.98816,0.578103319,0.588818753,-1.730226567,2.762770445,19.96367053,4.609397195,0,1,1,0,2,0,2,1,12,3,0,0,2,0,0,0,0,14,0,4,0,0,0,12,2,0,0,0,5,264.5966733,0,0,14,3,0,0,8,81,23,4,0,4.843061594,3.044522438,4.243524883,5.046921922,2,2360,2358,0.801768106,96,11,31,1.062229609,6,0.002040122,143,85,0.028901734,19,0.006460388,39,0.013260796,0.048622917,61,0.020741244,3,0.001020061,38,0.012920775,94,0.031961918,1,0.00034002,126,0.042842571,59,0.020061204,0.249914995,11,0.003740224,4,0.001360082,2941,Unsure,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0159_U2,WF0159,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.589600344,0.694915254,10,0.068965517,4.24800251,3.043645569,1.0702941,3.247702626,0.956375457,0.118633844,0.043285951,0.161919795,0.021476261,-0.008976261,0.030452522,1,0.514748035,0.461684899,-0.607755225,2.595334975,12.83075847,4.353774403,0,1,0,0,0,0,2,1,8,2,0,0,2,0,0,0,0,15,0,4,0,1,0,8,0,0,0,0,0,152.3277353,0,0,15,2,0,2,6,45,3,2,1,4.289698116,2.890371758,4.219688113,5.183549124,5,1326,1321,0.874834437,54,10,39,1.428585296,6,0.00397351,58,35,0.023178808,14,0.009271523,9,0.005960265,0.038410596,21,0.013907285,4,0.002649007,26,0.017218543,28,0.018543046,1,0.000662252,66,0.043708609,31,0.020529801,0.299337748,3,0.001986755,2,0.001324503,1510,Unsure,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0159_U3,WF0159,English,Someone else,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.799196333,0.85046729,31,0.102649007,4.641010255,3.159180403,3.211247348,3.323611136,2.876206472,0.104380359,0.029118565,0.133498924,0.020332695,-0.004631403,0.024964098,0.99999,0.436446453,0.56750793,-2.809598355,2.85538217,11.85134705,8.72501986,0,4,0,0,0,0,1,2,8,1,0,0,3,0,0,0,0,24,0,0,0,0,0,4,0,0,0,0,2,250.5709218,0,0,9,0,1,0,3,94,7,3,0,5.236441963,2.397895273,3.839944105,4.601547389,92,2132,2040,0.868454662,93,6,18,0.937660055,0,0,81,55,0.023414219,9,0.003831418,17,0.007237122,0.034482759,34,0.014474244,4,0.001702852,24,0.010217114,236,0.100468284,1,0.000425713,113,0.048105577,53,0.022562793,0.262664964,1,0.000425713,17,0.007237122,2349,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0160_U1,WF0160,English,No one helped me,Somewhat,1,1,I completed the assignment on a tablet (such as an iPad).,6.670734234,0.727272727,7,0.21875,5.392490537,3.115244403,1.036299604,3.071727564,0.898495742,0.089766314,0.081256039,0.171022353,0.020652174,-0.024637681,0.045289855,0.6974,0.158438018,0.449062003,-0.093079698,2.798202372,0.637463754,1.421029998,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,1,0,1,0,0,0,0,0,19.12147995,0,0,0,0,0,1,0,10,0,0,0,4.912654886,0.693147181,4.253923384,4.555147059,5,276,271,0.857594937,9,0,5,1.22589789,0,0,11,6,0.018987342,3,0.009493671,2,0.006329114,0.034810127,3,0.009493671,0,0,6,0.018987342,30,0.094936709,0,0,11,0.034810127,6,0.018987342,0.515822785,0,0,0,0,316,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0160_U2,WF0160,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,5.33787796,0.25,0,0,0,2.878916136,0.723777045,2.922024047,0.516252698,0.070746579,0.032619746,0.103366325,0.021969697,-0.004848485,0.026818182,0,0.203510943,0.379755331,-0.502976583,2.061749379,0.212838957,0.544794749,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,0,0,0,0,0,0,0,0,16.70548912,0,0,0,1,0,1,0,3,0,0,0,4.394449155,0.693147181,3.416069496,4.555555556,95,145,50,0.252525253,1,0,3,1.208213269,0,0,14,5,0.025252525,4,0.02020202,5,0.025252525,0.070707071,4,0.02020202,0,0,11,0.055555556,6,0.03030303,0,0,4,0.02020202,5,0.025252525,0.48989899,2,0.01010101,0,0,198,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0163_U1,WF0163,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.529515088,0.633333333,12,0.166666667,5.121977881,2.840409826,3.248199805,3.530696777,3.044635001,0.116887554,0.032703412,0.149590966,0.046220472,-0.008149606,0.054370079,1,0.352202921,0.623787874,-0.266212525,2.917888587,3.662277064,1.229626802,0,0,0,0,2,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,0,2,1,0,0,0,0,70.56855047,0,0,0,0,1,2,4,23,0,1,0,3.885521065,2.564949357,3.74376256,4.59399684,83,663,580,0.796703297,24,0,9,1.125892183,5,0.006868132,19,12,0.016483516,3,0.004120879,4,0.005494505,0.026098901,7,0.009615385,2,0.002747253,6,0.008241758,30,0.041208791,1,0.001373626,35,0.048076923,14,0.019230769,0.40521978,0,0,1,0.001373626,728,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0165_U1,WF0165,Sociology,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.690152328,0.720930233,22,0.222222222,5.408167787,2.828586266,1.095265704,3.064121141,0.959513508,0.109173565,0.037384863,0.146524795,0.017124439,-0.010426009,0.027550448,0.78413,0.591132834,0.642873049,-0.311257324,2.70553745,3.990581038,0.933801953,0,0,1,0,0,0,1,0,7,0,0,0,1,0,0,0,0,11,0,0,0,2,0,0,2,0,0,0,1,118.332312,0,0,0,0,1,1,4,34,0,4,0,4.692494014,2.079441542,4.366797666,5.279495991,20,852,832,0.84295846,43,0,13,1.151407422,0,0,31,18,0.018237082,4,0.004052685,9,0.009118541,0.031408308,15,0.015197568,0,0,24,0.024316109,18,0.018237082,1,0.001013171,48,0.048632219,16,0.01621074,0.411347518,0,0,3,0.003039514,987,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0165_U2,WF0165,Sociology,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.60191407,0.682926829,9,0.086538462,4.472078257,3.132263701,0.578582837,3.244620863,0.517541332,0.124641348,0.034114052,0.158755399,0.021177455,-0.003571429,0.024748884,0.88994,0.575901289,0.69384845,1.040632431,2.764111593,3.988089656,1.235861272,0,1,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,15,0,0,0,2,0,1,0,0,0,0,0,134.171846,0,0,0,0,0,1,4,31,0,5,0,4.702750514,2.079441542,3.952513196,5.397959184,379,915,536,0.541961577,24,0,7,0.90729613,0,0,37,22,0.022244692,9,0.009100101,6,0.006066734,0.037411527,14,0.014155713,0,0,21,0.021233569,38,0.038422649,2,0.002022245,46,0.046511628,19,0.019211325,0.39635996,0,0,2,0.002022245,989,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0166_U1,WF0166,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.573687199,0.733333333,10,0.079365079,4.386579746,3.328414437,2.695513086,3.436689243,2.308005355,0.125254892,0.057153968,0.18240886,0.02525,-0.027722222,0.052972222,0.82622,0.393237746,0.687017426,-1.065673935,2.922296823,5.289090044,2.863783498,0,0,2,0,4,0,1,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,3,75.8984577,0,4,0,0,0,2,4,36,0,2,1,4.397810502,2.397895273,4.31318474,4.678970917,17,936,919,0.925478348,41,0,20,1.325125257,0,0,61,45,0.045317221,5,0.005035247,11,0.011077543,0.06143001,18,0.018126888,0,0,12,0.012084592,68,0.068479355,1,0.001007049,51,0.051359517,41,0.041289023,0.373615307,3,0.003021148,6,0.006042296,993,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0166_U2,WF0166,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.696291935,0.784313725,10,0.08,4.394449155,2.852293842,2.98879427,3.40097499,2.749846636,0.100929542,0.040353535,0.141283078,0.02127451,-0.009338235,0.030612745,1,0.339245375,0.650277894,-1.829699939,2.79320056,7.612479174,2.56201207,0,0,1,0,1,0,0,0,5,1,0,0,1,0,0,0,0,2,0,0,0,0,0,4,0,0,0,0,10,94.7871566,0,0,0,0,1,0,5,43,0,2,1,4.43279896,2.48490665,4.33832509,4.557425743,63,460,397,0.347331584,18,0,7,0.852738204,0,0,53,40,0.034995626,3,0.002624672,10,0.008748906,0.046369204,19,0.016622922,1,0.000874891,20,0.017497813,86,0.075240595,2,0.001749781,60,0.052493438,43,0.037620297,0.337707787,3,0.002624672,3,0.002624672,1143,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0167_U1,WF0167,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.671316758,0.8,10,0.131578947,4.887178297,3.356889762,3.307183902,3.23872697,3.172144916,0.084856292,0.022460057,0.107316349,0.0105573,-0.003963893,0.014521193,0.97405,0.269613142,0.511262702,-0.03250369,2.695618866,4.695705066,3.204835084,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,86.40315096,0,0,0,1,1,0,1,25,0,2,2,5.746203191,0.693147181,3.922596682,5.207667732,4,297,293,0.413841808,23,4,5,0.906450707,0,0,23,17,0.024011299,2,0.002824859,4,0.005649718,0.032485876,10,0.014124294,6,0.008474576,9,0.012711864,23,0.032485876,1,0.001412429,34,0.048022599,23,0.032485876,0.379943503,1,0.001412429,8,0.011299435,708,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0167_U2,WF0167,English,Someone else,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.760861082,0.831932773,55,0.173501577,5.16193378,2.770361566,1.065147823,3.088401068,0.998971489,0.098664145,0.071424488,0.170085082,0.014621804,-0.021475497,0.036097301,0.93437,0.538715918,0.631432635,-1.403678711,2.753343383,23.91400099,8.083607471,0,1,0,1,1,0,1,1,11,0,0,0,2,0,0,0,1,50,0,6,0,7,0,15,1,0,1,0,8,285.7349823,0,0,27,4,5,0,5,107,1,4,2,5.226463263,2.708050201,4.449470769,4.876432665,44,2353,2309,0.730465043,77,0,21,0.88329041,1,0.000316356,131,92,0.029104714,19,0.006010756,20,0.006327112,0.041442581,44,0.013919646,3,0.000949067,63,0.019930402,67,0.021195824,3,0.000949067,135,0.042708004,81,0.025624802,0.284720025,3,0.000949067,3,0.000949067,3161,Unsure,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0167_U3,WF0167,English,"A parent, brother, sister or other relative",A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.783064856,0.882352941,32,0.098461538,4.599771021,2.863454226,1.067973642,3.122845825,0.955396102,0.131574111,0.035091812,0.166658556,0.01893186,-0.007292818,0.026224678,1,0.656650655,0.643253017,-0.700638395,2.743620467,21.02485209,7.278510499,0,0,0,0,0,0,1,3,5,0,0,0,1,0,0,0,0,25,0,0,0,0,0,0,2,0,0,0,0,247.2981672,0,0,16,3,3,0,5,94,0,3,0,5.188502501,2.708050201,4.494168028,5.138020833,23,2394,2371,0.783025099,70,13,30,1.037726405,8,0.002642008,155,112,0.036988111,19,0.006274769,24,0.007926024,0.051188904,54,0.017833554,12,0.003963012,22,0.007265522,126,0.041611625,1,0.000330251,115,0.037978864,45,0.014861295,0.285006605,0,0,5,0.001651255,3028,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0167_U4,WF0167,English,A teacher,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.767333974,0.884210526,37,0.1197411,4.793648586,2.975374114,3.31010839,3.195430293,3.10392576,0.10020691,0.031981771,0.132188682,0.015205843,-0.012350598,0.027556441,1,0.526691887,0.575387238,-3.952671001,2.766081819,10.64582323,6.637668283,0,0,0,0,0,0,0,0,3,1,0,0,2,0,0,0,0,15,0,2,0,1,0,4,0,0,0,1,4,236.6784339,0,0,12,2,1,0,4,87,0,4,0,5.29376155,2.397895273,4.324450504,4.936986301,140,2420,2280,0.906200318,92,0,28,1.083816969,8,0.00317965,71,56,0.022257552,8,0.00317965,7,0.002782194,0.028219396,35,0.01391097,12,0.004769475,20,0.007949126,225,0.089427663,1,0.000397456,109,0.043322734,51,0.02027027,0.304848967,3,0.001192369,11,0.004372019,2516,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0167_U5,WF0167,English,A tutor,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.701256691,0.789473684,27,0.158823529,5.074070265,3.055495785,1.096413094,2.896280244,1.002911021,0.11992179,0.036897055,0.156812364,0.018632534,-0.007064161,0.025696695,1,0.643500117,0.591228875,-0.386393984,2.76041034,9.704729352,5.832595286,0,1,0,0,0,0,0,0,2,1,2,0,1,0,0,0,0,11,0,0,0,0,0,0,1,0,0,0,1,183.9279453,0,0,0,3,6,0,4,49,0,4,0,4.849422701,2.48490665,4.144858227,5.235639687,1,1381,1380,0.801393728,61,7,22,1.139118154,2,0.00116144,74,57,0.033101045,12,0.006968641,5,0.0029036,0.042973287,25,0.014518002,6,0.003484321,13,0.007549361,73,0.042392567,1,0.00058072,64,0.037166086,26,0.015098722,0.318815331,1,0.00058072,3,0.00174216,1722,Yes,Yes,1,Persuade,Annotator1,Final,N/A,N/A
WF0168_U1,WF0168,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,0,0,1,0.03125,3.473518043,2.519369568,2.939583379,2.004355982,3.258158479,0.097780177,0.024695796,0.122475973,0.010840708,-0.001659292,0.0125,0.34863,0.220060506,0.782980676,-0.24887234,2.869940821,0.991014536,0.789112245,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.51210895,0,0,0,0,0,2,0,4,0,2,1,4.029806041,1.386294361,3.321677083,4.64,49,205,156,0.619047619,5,0,6,1.394618429,0,0,10,8,0.031746032,1,0.003968254,1,0.003968254,0.03968254,3,0.011904762,3,0.011904762,0,0,5,0.01984127,0,0,10,0.03968254,13,0.051587302,0.527777778,1,0.003968254,4,0.015873016,252,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0168_U2,WF0168,English,"A parent, brother, sister or other relative",A little,0,1,I completed the assignment on a laptop or desktop computer.,6.038875314,0.411764706,9,0.195652174,5.281436554,2.654134217,2.243264963,2.89969398,2.553187258,0.085520201,0.034546351,0.120066552,0.00954142,-0.005547337,0.015088757,0.59909,0.325918521,0.723571429,0.073744349,2.983175956,1.762897272,1.358020611,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,40.74730515,0,0,0,0,0,0,2,12,0,2,1,3.871201011,1.945910149,3.498706208,4.836309524,1,305,304,0.8,19,3,12,1.512937048,0,0,10,7,0.018421053,1,0.002631579,2,0.005263158,0.026315789,3,0.007894737,3,0.007894737,7,0.018421053,18,0.047368421,0,0,20,0.052631579,10,0.026315789,0.494736842,2,0.005263158,1,0.002631579,380,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0168_U3,WF0168,English,No one helped me,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.502256428,0.75,3,0.075,4.33073334,1.682866577,0.927347899,2.756589465,0.888334934,0.073021028,0.031246606,0.104267634,0.033691756,-0.001164875,0.034856631,0.71802,0.238295709,0.675415072,-0.213196283,2.759156784,0.681819324,0.725373447,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,12,0,0,0,0,0,0,0,0,0,0,0,38.15079832,0,0,0,0,0,1,0,11,0,0,0,4.927253685,0.693147181,3.312602951,5.025362319,15,322,307,0.941717791,11,0,4,1.122868915,0,0,10,8,0.024539877,2,0.006134969,0,0,0.030674847,3,0.009202454,4,0.012269939,13,0.039877301,15,0.04601227,0,0,12,0.036809816,4,0.012269939,0.509202454,0,0,0,0,326,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0170_U1,WF0170,English,Someone else,Not at all,0,1,I completed the assignment on a laptop or desktop computer.,0,0,5,0.138888889,4.940848457,2.913487469,2.768559959,3.154018279,2.58575288,0.089246214,0.06460209,0.15371343,0.015510597,-0.023073218,0.038583815,0,0.369391018,0.632622093,0.39707126,2.494902752,1.813635529,2.16642314,0,0,0,0,1,0,1,1,5,2,0,0,0,0,0,0,0,2,0,1,0,5,0,4,0,0,0,0,0,34.79417481,0,0,0,5,0,0,2,2,0,0,3,5.552959585,0.693147181,3.954974828,4.46124031,47,431,384,0.735632184,6,4,14,1.444355929,0,0,21,10,0.019157088,5,0.009578544,6,0.011494253,0.040229885,5,0.009578544,0,0,22,0.042145594,19,0.036398467,1,0.001915709,11,0.021072797,19,0.036398467,0.4348659,0,0,1,0.001915709,522,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0173_U1,WF0173,Biology,Someone else,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.753674772,0.8,12,0.144578313,4.980714177,3.042123766,2.588638033,3.233151559,2.451813855,0.104486206,0.034178561,0.138601542,0.014884089,-0.004478398,0.019362487,0.83989,0.48095003,0.568933413,-0.480960274,2.661232371,5.530387382,1.966751744,0,0,0,0,3,0,0,0,11,0,0,0,1,0,0,0,1,43,0,0,0,0,0,1,0,0,0,0,0,151.2884682,0,0,0,0,0,0,4,42,0,4,0,4.550714,2.302585093,4.561031071,5.046462513,8,1060,1052,0.988721805,50,5,18,1.253272401,0,0,53,38,0.035714286,3,0.002819549,12,0.011278195,0.04981203,23,0.021616541,0,0,61,0.057330827,19,0.017857143,0,0,55,0.051691729,31,0.029135338,0.312969925,0,0,2,0.001879699,1064,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0173_U2,WF0173,Biology,Someone else,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.029977997,0.416666667,6,0.1875,5.239098007,2.743004362,0.436674627,1.628901823,0.514375773,0.064812319,0.035741439,0.100553758,0.002598566,-0.003763441,0.006362007,0.67456,0.597426411,0.674706522,0.296943791,2.537385437,1.37037557,0.308434976,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,16,0,0,0,0,0,2,0,0,0,0,0,37.45480337,0,0,0,0,1,3,1,8,0,0,0,4.010962953,1.609437912,3.661299338,5.460144928,3,318,315,0.926470588,11,1,23,1.836621935,0,0,6,2,0.005882353,0,0,4,0.011764706,0.017647059,6,0.017647059,0,0,16,0.047058824,0,0,1,0.002941176,13,0.038235294,4,0.011764706,0.464705882,0,0,0,0,340,,Yes,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0173_U3,WF0173,Biology,Someone else,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.041099209,0.3125,4,0.125,4.836281907,1.774294024,0.560110769,2.028766848,0.476995281,0.02284802,0.028185575,0.05095095,0.00392562,-0.001652893,0.005578512,0.2273,0.338518679,0.395191599,-0.176498785,2.384684528,2.235051573,0.423840812,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,36.5905947,0,0,0,0,1,0,1,8,0,6,1,4.077537444,1.386294361,3.040616302,5.199152542,10,239,229,0.82078853,13,1,10,1.566346663,0,0,1,0,0,0,0,1,0.003584229,0.003584229,3,0.010752688,0,0,8,0.028673835,2,0.007168459,0,0,17,0.0609319,5,0.017921147,0.512544803,1,0.003584229,0,0,279,,No,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0173_U4,WF0173,Biology,Someone else,A lot,0,1,I completed the assignment on a laptop or desktop computer.,#NULL!,#NULL!,4,0.055555556,4.035223439,1.777250922,0.857987033,2.258188839,0.479357392,0.022294607,0.012996743,0.035150199,0.004234528,-0.004465255,0.008699783,0,0,0.580686577,-5.757951932,2.125984421,23.76926045,7.38709883,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,69,0,10,0,18,0,35,0,0,0,0,0,292.7260685,0,0,38,2,0,0,5,66,2,7,2,4.896773133,2.63905733,3.593298492,3.478655283,5,1907,1902,0.866909754,81,10,8,0.667108006,0,0,15,9,0.004102097,0,0,6,0.002734731,0.006836828,9,0.004102097,0,0,164,0.074749316,16,0.007292616,1,0.000455789,92,0.041932543,15,0.006836828,0.18094804,0,0,0,0,2194,,No,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0173_U5,WF0173,Biology,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.689462497,0.790055249,26,0.106995885,4.682093122,2.778353852,1.248050895,2.586009699,1.073897316,0.051843581,0.022974577,0.074722337,0.007918552,-0.005090498,0.01300905,1,0.287295922,0.535481696,-7.109793428,2.341389418,40.77189607,10.59779489,0,1,0,0,3,0,0,1,21,1,0,0,2,0,0,0,1,154,0,6,0,19,0,36,0,0,0,0,1,507.0742179,0,0,44,2,4,0,8,157,12,4,0,4.46697678,3.761200116,4.16061368,4.353538051,3,4320,4317,0.974712125,205,30,39,0.991474149,0,0,79,50,0.01128923,6,0.001354708,23,0.005193046,0.017836984,45,0.010160307,0,0,248,0.055994581,38,0.008579815,104,0.023481599,211,0.047640551,59,0.013321291,0.212237525,1,0.000225785,0,0,4429,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0173_U6,WF0173,Biology,Someone else,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.431927314,0.666666667,4,0.235294118,5.46507729,2.031905109,0.434942955,1.92949076,0.514375773,0.108728667,0.013500644,0.12222931,0.021891892,-0.002972973,0.024864865,0.3408,0.477333033,0.545845161,0.002687189,2.444724329,1.052560645,0.219262213,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.66137439,0,0,0,0,2,0,1,7,0,1,0,4.127134385,1.098612289,4.244090115,5.623655914,14,207,193,0.893518519,9,1,9,1.630088715,0,0,1,1,0.00462963,0,0,0,0,0.00462963,3,0.013888889,0,0,4,0.018518519,0,0,1,0.00462963,10,0.046296296,5,0.023148148,0.550925926,0,0,0,0,216,,No,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0175_U1,WF0175,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.347650566,0.636363636,13,0.166666667,5.121977881,3.358989441,2.136519149,3.395153081,1.650720881,0.058218279,0.054093128,0.112311406,0.011389803,-0.022574013,0.033963816,0.97864,0.229763205,0.48262,-0.653681327,2.83892131,2.428365308,2.434038646,0,2,1,0,1,0,1,0,3,1,0,0,1,1,0,0,0,16,0,2,0,1,0,6,1,0,0,0,0,64.72291627,0,0,5,0,0,0,3,21,3,5,1,4.451019506,1.945910149,3.751675609,4.458333333,21,513,492,0.734328358,34,5,11,1.240996053,0,0,21,16,0.023880597,2,0.002985075,3,0.004477612,0.031343284,11,0.01641791,8,0.011940299,37,0.055223881,74,0.110447761,0,0,38,0.056716418,22,0.032835821,0.385074627,3,0.004477612,2,0.002985075,670,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0180_U1,WF0180,English,A tutor,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.639122772,0.734693878,37,0.258741259,5.559685977,2.963766949,1.268508416,3.123846329,1.071785622,0.091241609,0.068100468,0.159342077,0.01552901,-0.007913823,0.023442833,0.97671,0.604405079,0.643114239,-0.32575535,2.918602967,4.310546666,2.171098676,0,4,1,0,0,0,0,0,8,0,1,0,1,0,0,0,0,5,0,2,0,0,0,2,0,0,0,1,0,149.9252368,0,0,0,0,3,0,3,38,1,3,4,4.974144186,2.079441542,4.200599086,5.150388937,4,485,481,0.374319066,44,4,16,1.128766256,0,0,52,24,0.018677043,3,0.00233463,25,0.019455253,0.040466926,25,0.019455253,6,0.004669261,26,0.020233463,27,0.021011673,0,0,53,0.041245136,41,0.031906615,0.322178988,1,0.00077821,2,0.00155642,1285,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0180_U2,WF0180,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.745056942,0.782945736,24,0.107142857,4.683453104,2.95274361,3.03722501,3.27688123,2.193280064,0.080722367,0.053340393,0.13406276,0.018715084,-0.026091925,0.044807009,0.99999,0.374016513,0.563703414,-2.937487157,2.837855822,19.26170077,9.829381029,0,4,2,0,1,0,0,0,0,0,0,0,2,0,1,0,0,51,0,13,0,2,0,6,0,0,0,0,8,183.9058387,0,0,32,2,6,0,2,118,0,3,6,5.370121099,2.197224577,4.236838116,4.63081696,501,2180,1679,0.744237589,103,0,12,0.800658591,1,0.000443262,69,48,0.021276596,12,0.005319149,9,0.003989362,0.030585106,50,0.022163121,2,0.000886525,94,0.041666667,242,0.107269504,1,0.000443262,136,0.060283688,75,0.033244681,0.276152482,11,0.004875887,3,0.001329787,2256,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0181_U1,WF0181,English,No one helped me,Not at all,1,1,I completed the assignment on a laptop or desktop computer.,6.795146335,0.899371069,49,0.173758865,5.163407111,2.796328543,0.793165837,2.870817329,0.672233087,0.105437835,0.075888181,0.181252538,0.015141707,-0.029636109,0.044777817,0.99999,0.574371723,0.592045996,2.00431837,2.67297692,28.15989582,4.554620302,1,9,2,0,0,2,2,2,19,3,0,0,2,0,0,0,1,44,0,7,1,4,0,13,0,0,0,0,4,286.2012806,0,0,26,1,6,0,5,150,0,3,1,5.228609954,2.708050201,4.348608061,5.086847748,9,1757,1748,0.54607935,168,14,42,1.149862369,9,0.002811621,105,67,0.020930959,10,0.003124024,28,0.008747266,0.032802249,66,0.020618557,2,0.000624805,77,0.024054983,34,0.010621681,1,0.000312402,171,0.053420806,69,0.021555764,0.292408622,1,0.000312402,1,0.000312402,3201,Unsure,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0181_U2,WF0181,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.497733857,0.6,39,0.1625,5.09681299,2.704240174,3.362372369,3.168506183,3.195233188,0.101174083,0.039180627,0.14035471,0.018011364,-0.011056818,0.029068182,0.99999,0.474090302,0.604243561,-1.388493088,2.706773968,17.1389904,4.6730941,0,8,3,1,0,0,0,0,16,1,0,0,1,0,0,0,0,6,0,3,0,7,0,10,0,0,0,0,2,265.2961472,0,0,18,0,2,1,4,77,0,35,3,5.201255654,2.48490665,4.479537818,4.817722681,2,2327,2325,0.937122128,126,8,36,1.190619585,0,0,91,61,0.02458686,15,0.006045949,15,0.006045949,0.036678759,35,0.014107215,5,0.002015316,58,0.02337767,134,0.05401048,3,0.00120919,127,0.051189037,67,0.02700524,0.293833132,1,0.000403063,9,0.00362757,2481,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0184_U1,WF0184,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.637224721,0.663043478,39,0.201030928,5.308420794,2.734697469,1.1632478,2.772259092,1.003839996,0.099357158,0.064787915,0.16413942,0.018428491,-0.011998304,0.030426795,1,0.752751061,0.659738824,0.566547626,2.539717266,18.92392365,2.71184288,0,0,0,0,0,0,2,0,8,3,3,0,4,0,0,0,0,30,1,5,0,1,0,2,0,0,0,0,1,166.0640363,0,0,24,0,1,0,5,65,18,4,0,4.687326044,2.772588722,4.761076038,5.751871042,2,1511,1509,0.737536657,96,9,34,1.245951449,8,0.003910068,73,42,0.020527859,15,0.007331378,16,0.007820137,0.035679374,27,0.013196481,1,0.000488759,30,0.014662757,43,0.021016618,2,0.000977517,100,0.048875855,36,0.017595308,0.366080156,0,0,5,0.002443793,2046,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0184_U2,WF0184,English,A teacher,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.714207305,0.853658537,29,0.243697479,5.500022668,2.761398088,1.131829343,2.765069438,0.950255205,0.078930223,0.06594201,0.144872233,0.011849508,-0.015488748,0.027338256,1,0.731069072,0.668383132,0.932220339,2.4637674,18.97948465,2.118112242,0,1,0,0,0,0,0,0,6,2,0,0,2,0,0,0,0,34,0,3,0,1,0,1,0,0,0,0,1,133.2496523,0,0,27,1,0,0,5,74,0,3,0,4.52756894,2.708050201,4.344788361,5.886887608,5,1294,1289,0.780738946,82,10,48,1.478180927,15,0.009085403,45,30,0.018170806,6,0.003634161,9,0.005451242,0.027256208,18,0.010902483,0,0,20,0.01211387,25,0.015142338,1,0.000605694,91,0.05511811,40,0.024227741,0.373712901,0,0,2,0.001211387,1651,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0184_U3,WF0184,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.597497706,0.69047619,16,0.114285714,4.747413519,2.806301742,0.902854061,2.938544727,0.815810381,0.088201556,0.032238313,0.120439868,0.015117329,-0.008619134,0.023736462,0.87218,0.668495459,0.620684624,-0.138335866,2.511294932,4.0435186,1.604492919,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,0,0,1,0,1,0,3,1,0,0,0,2,138.9587865,0,0,0,0,0,0,4,33,3,2,0,4.353039098,2.63905733,4.15361565,5.449448529,7,1158,1151,0.928225806,41,6,30,1.40128934,0,0,37,27,0.021774194,5,0.004032258,5,0.004032258,0.02983871,19,0.015322581,1,0.000806452,11,0.008870968,46,0.037096774,2,0.001612903,48,0.038709677,24,0.019354839,0.386290323,0,0,2,0.001612903,1240,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0186_U1,WF0186,Business,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.383663915,0.571428571,5,0.208333333,5.343927878,1.729295754,3.164428628,1.805155135,3.48166004,0.142766732,0.003893805,0.146660537,0.032743363,0,0.032743363,0.69917,0.620191972,0.504782828,0.617890034,2.813821223,3.1679027,0.241281014,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,18.75148358,0,0,0,0,0,2,2,10,0,0,0,3.601868077,1.791759469,3.630956955,5.736363636,66,137,71,0.287449393,10,0,5,1.327214111,0,0,9,8,0.032388664,0,0,1,0.004048583,0.036437247,2,0.008097166,0,0,7,0.028340081,16,0.064777328,1,0.004048583,19,0.076923077,1,0.004048583,0.578947368,0,0,0,0,247,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0186_U3,WF0186,Business,No one helped me,Not at all,1,1,I completed the assignment on a laptop or desktop computer.,5.759097894,0.4375,3,0.176470588,5.178804895,1.949349118,3.14285153,1.849014187,3.358861374,0.143941799,0.001944444,0.145886243,0.038472222,0,0.038472222,0.99999,0.386496764,0.470025843,0.284671169,2.977570445,5.461271197,0.471237993,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,13.98604006,0,0,0,0,0,1,2,11,0,2,0,3.235873401,1.945910149,3.50059408,5.308988764,107,162,55,0.284974093,4,0,4,1.336967553,0,0,5,5,0.025906736,0,0,0,0,0.025906736,4,0.020725389,0,0,7,0.03626943,16,0.082901554,2,0.010362694,22,0.113989637,1,0.005181347,0.611398964,0,0,1,0.005181347,193,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0187_U1,WF0187,History,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.529903097,0.6875,11,0.114583333,4.749991771,3.259873316,1.042334648,3.474931116,0.915785738,0.098652298,0.06819286,0.166845158,0.015589354,-0.012864385,0.028453739,0.92358,0.136607843,0.583841036,-0.765579606,2.774200909,2.754011434,2.954891982,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,0,108.5769115,0,0,0,0,0,1,3,23,1,4,0,4.357990057,2.302585093,3.738301733,4.421254802,6,716,710,0.81797235,29,4,13,1.203494108,0,0,34,21,0.024193548,7,0.008064516,6,0.006912442,0.039170507,20,0.023041475,6,0.006912442,11,0.012672811,48,0.055299539,0,0,36,0.041474654,18,0.020737327,0.334101382,1,0.001152074,0,0,868,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0190_U1,WF0190,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.652406044,0.775,28,0.225806452,5.424097018,3.07527719,2.497897473,3.32519053,1.906035548,0.096546287,0.083476418,0.180022705,0.034914611,-0.03323055,0.068145161,1,0.443119571,0.619631021,-0.723243684,2.572547809,5.400814426,5.893317185,0,0,0,1,4,0,0,0,2,0,0,0,1,0,0,1,0,6,0,0,0,0,0,1,0,0,0,0,0,119.3334719,0,0,5,2,0,3,3,32,1,1,0,4.64053733,2.302585093,4.413900418,4.903474903,266,1062,796,0.64349232,31,0,20,1.234723467,0,0,49,41,0.033144705,4,0.00323363,4,0.00323363,0.039611964,12,0.009700889,0,0,22,0.017784964,75,0.060630558,0,0,46,0.037186742,44,0.035569927,0.344381568,0,0,4,0.00323363,1237,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0190_U2,WF0190,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.595236062,0.729166667,19,0.182692308,5.213262117,3.004969415,2.632591781,3.305042773,2.098012032,0.100659575,0.051132118,0.151791693,0.023075049,-0.018347953,0.041423002,0.99183,0.500366873,0.619265741,-1.220208868,2.853227841,3.866296321,4.46542081,0,0,1,0,2,0,3,1,3,1,0,0,2,0,0,1,0,13,0,0,0,0,0,2,0,0,0,0,0,88.29270785,0,4,0,0,0,1,3,37,1,6,0,4.520799946,2.397895273,4.276244963,4.777448071,42,1053,1011,0.881429817,46,4,18,1.222537319,0,0,46,26,0.022667829,9,0.007846556,11,0.009590235,0.040104621,15,0.013077594,1,0.00087184,27,0.023539669,71,0.06190061,0,0,52,0.045335658,38,0.033129904,0.361813426,1,0.00087184,2,0.001743679,1147,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0196_U3,WF0196,English,No one helped me,Somewhat,1,1,I completed the assignment on a tablet (such as an iPad).,6.19697299,0.533333333,18,0.409090909,6.016378865,2.99241075,2.886973194,2.527486575,3.139918007,0.098654197,0.063990268,0.162644465,0.00939781,-0.011313869,0.020711679,0.85353,0.316046886,0.728804029,-0.191244518,3.005491094,0.85852017,0.806645923,0,0,0,0,0,0,2,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,39.52262025,0,0,0,0,0,1,1,10,0,1,2,4.223177434,1.386294361,3.564036245,4.772893773,5,249,244,0.792207792,14,1,5,1.236380198,0,0,19,16,0.051948052,0,0,3,0.00974026,0.061688312,4,0.012987013,1,0.003246753,6,0.019480519,14,0.045454545,0,0,16,0.051948052,8,0.025974026,0.483766234,0,0,3,0.00974026,308,,Yes,1,Persuade,Annotator3,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WF0204_U1,WF0204,Business,No one helped me,Not at all,1,1,I completed the assignment on a laptop or desktop computer.,6.230966324,0.636363636,4,0.153846154,5.042432068,1.571421154,3.11484358,2.18422113,3.37294488,0.160377072,0.01290712,0.173243542,0.036686992,-0.002134146,0.038821138,0.99999,0.532404713,0.498396259,0.305386302,2.777297809,8.93314102,0.438823945,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,24.29272817,0,0,0,0,0,2,2,17,0,1,0,3.555348061,1.945910149,3.293507438,5.297959184,111,190,79,0.286231884,5,0,5,1.281395705,0,0,8,5,0.018115942,1,0.003623188,2,0.007246377,0.028985507,3,0.010869565,1,0.003623188,9,0.032608696,24,0.086956522,7,0.025362319,30,0.108695652,2,0.007246377,0.601449275,0,0,1,0.003623188,276,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0204_U2,WF0204,Business,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.538563407,0.636363636,6,0.088235294,4.491276635,2.923056944,3.348646959,2.835451243,3.508330572,0.142846897,0.027552471,0.170399368,0.032081911,-0.004607509,0.03668942,0.86442,0.550651252,0.590084084,0.575884358,2.961493201,5.274146156,1.313783582,0,1,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,40.62758201,0,0,0,0,0,1,6,25,0,1,0,3.593881725,2.772588722,4.088321048,5.218213058,8,574,566,0.87211094,41,0,10,1.21506413,0,0,19,16,0.024653313,2,0.003081664,1,0.001540832,0.029275809,12,0.018489985,2,0.003081664,4,0.006163328,32,0.049306626,4,0.006163328,45,0.069337442,12,0.018489985,0.479198767,1,0.001540832,0,0,649,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0204_U3,WF0204,Business,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.288029527,0.446808511,11,0.174603175,5.16822676,2.436356792,3.54409052,3.069095881,3.363511661,0.128555642,0.028785698,0.157324811,0.029090909,-0.006652893,0.035743802,0.84678,0.73634327,0.595629032,-0.098064942,2.496938946,10.42995933,1.499719748,0,0,0,0,0,0,0,1,6,0,0,0,1,0,0,0,0,18,0,5,0,5,0,1,0,0,0,0,0,47.55712235,0,0,11,0,1,0,6,33,1,2,5,3.675456434,2.708050201,4.090966138,5.760135135,6,596,590,0.87537092,55,14,15,1.366519946,0,0,16,9,0.013353116,5,0.007418398,2,0.002967359,0.023738872,13,0.019287834,3,0.004451039,38,0.056379822,46,0.068249258,4,0.005934718,61,0.090504451,11,0.016320475,0.465875371,0,0,1,0.00148368,674,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0204_U5,WF0204,Business,No one helped me,Not at all,0,1,I completed the assignment on a laptop or desktop computer.,6.018846253,0.318181818,9,0.142857143,4.968820744,2.865814341,3.551848655,3.074186062,3.55694072,0.145831714,0.01584243,0.161657421,0.023035117,-0.001630435,0.024665552,0.76824,0.676990434,0.639064705,0.135061293,2.903576665,12.24702088,1.142441036,0,1,0,0,1,0,0,0,3,1,0,0,0,0,0,0,0,9,0,8,0,8,0,0,0,0,0,0,0,51.85529536,0,0,9,0,0,0,6,29,0,1,8,3.821929962,2.564949357,3.906205453,5.451178451,83,617,534,0.79346211,45,0,16,1.393998686,0,0,21,14,0.020802377,3,0.004457652,4,0.005943536,0.031203566,9,0.013372957,0,0,35,0.052005944,27,0.040118871,4,0.005943536,55,0.081723626,9,0.013372957,0.494799406,1,0.001485884,2,0.002971768,673,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0204_U6,WF0204,Business,No one helped me,Not at all,0,1,I completed the assignment on a laptop or desktop computer.,5.979812417,0.411764706,8,0.166666667,5.121977881,2.438184449,3.535475518,2.480794074,3.558368625,0.161822359,0.032523444,0.194345803,0.02870844,-0.007800512,0.036508951,0.833,0.655929151,0.647642268,0.37544245,2.911051417,1.104352298,0.598454373,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,1,30.43567824,0,0,0,0,1,2,3,8,4,0,0,3.881563798,2.079441542,3.974683104,5.288659794,70,404,334,0.784037559,16,0,11,1.428484621,0,0,20,10,0.023474178,6,0.014084507,4,0.009389671,0.046948357,10,0.023474178,1,0.002347418,4,0.009389671,16,0.037558685,0,0,21,0.049295775,12,0.028169014,0.507042254,2,0.004694836,1,0.002347418,426,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0205_U1,WF0205,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.615689181,0.695652174,22,0.156028369,5.056426482,3.052556342,1.162222476,3.261463957,1.205995234,0.104339021,0.02847483,0.13281385,0.014428571,-0.008333333,0.022761905,0.903,0.460528861,0.639486614,-0.632143879,2.702546352,4.648818958,2.741518739,1,0,0,0,1,0,1,2,4,1,0,0,2,0,0,0,0,37,0,1,0,1,0,8,0,0,0,0,2,114.5595843,0,0,0,0,1,1,4,38,0,3,0,4.215578427,2.708050201,4.10362436,5.132874016,3,1008,1005,0.860445205,46,6,14,1.113485477,0,0,40,34,0.029109589,3,0.002568493,3,0.002568493,0.034246575,21,0.017979452,5,0.004280822,60,0.051369863,56,0.047945205,1,0.000856164,52,0.044520548,21,0.017979452,0.356164384,3,0.002568493,6,0.005136986,1168,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0205_U2,WF0205,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.432723252,0.432835821,28,0.191780822,5.261553906,3.019690956,0.542548525,2.906187299,0.520200513,0.088642995,0.033036657,0.121679652,0.013267857,-0.013839286,0.027107143,1,0.616015198,0.631425502,0.45236651,2.594971142,12.4939323,2.194393096,0,1,0,0,2,0,0,0,10,0,0,0,2,0,0,0,0,16,0,0,0,0,0,3,0,0,0,0,0,166.6173177,0,0,15,2,1,1,7,33,22,4,0,4.17658266,3.044522438,4.265737532,5.557748538,3,1044,1041,0.66221374,61,8,23,1.193987965,8,0.005089059,59,42,0.026717557,5,0.003180662,12,0.007633588,0.037531807,26,0.01653944,0,0,22,0.013994911,13,0.00826972,1,0.000636132,73,0.046437659,30,0.019083969,0.368956743,1,0.000636132,5,0.003180662,1572,,Yes,1,Persuade,Annotator3,Draft,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0205_U3,WF0205,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.773525764,0.855421687,38,0.2375,5.47436931,2.856411255,2.618650729,2.904824669,2.079542655,0.098328982,0.064234285,0.162556816,0.020483871,-0.023129032,0.043612903,1,0.538156874,0.642449518,-0.89577557,2.7936852,14.87005302,4.289642037,0,2,1,0,0,0,0,0,10,0,0,0,0,0,0,0,0,5,0,0,0,0,0,4,0,0,0,0,0,171.2859799,0,0,20,1,2,5,4,73,0,1,0,4.933819697,2.397895273,4.424764497,5.165575916,136,1579,1443,0.808856502,62,0,22,1.124890046,6,0.003363229,53,38,0.021300448,10,0.005605381,5,0.002802691,0.02970852,22,0.012331839,3,0.001681614,22,0.012331839,27,0.015134529,1,0.000560538,90,0.05044843,42,0.023542601,0.352578475,0,0,1,0.000560538,1784,,Yes,1,Persuade,Annotator3,Draft,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0206_U1,WF0206,English,,,#NULL!,#NULL!,,6.730691125,0.828282828,20,0.078125,4.37102888,2.938465294,1.172329503,3.14129166,1.082245164,0.107982007,0.037692502,0.145674509,0.026354216,-0.015944418,0.042298634,0.82763,0.56719141,0.587403019,-1.091473798,2.742764,11.6860243,5.329218946,0,2,1,0,1,0,2,0,10,0,0,0,2,0,0,0,0,8,0,0,0,0,0,7,1,0,0,1,1,228.8338256,0,0,0,1,2,0,4,82,3,9,1,5.349485653,2.302585093,4.132458439,4.937292162,18,2029,2011,0.852841391,96,9,21,0.995891853,0,0,79,54,0.022900763,13,0.005513147,12,0.005089059,0.033502969,39,0.01653944,2,0.000848176,25,0.010602205,169,0.071670908,2,0.000848176,108,0.045801527,50,0.021204411,0.312553011,1,0.000424088,6,0.002544529,2358,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0206_U2,WF0206,English,A tutor,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.636128447,0.727272727,17,0.099415205,4.609313637,2.8782202,0.701489686,2.988882367,0.614955242,0.15540176,0.027768212,0.183116992,0.019039735,-0.003807947,0.022847682,1,0.610742731,0.553909152,-0.459566125,2.594804623,9.849045537,3.070892986,0,2,0,0,2,0,0,1,9,0,0,0,1,0,0,0,0,26,0,1,0,0,0,2,3,0,0,0,0,152.8486566,0,0,11,5,1,3,5,44,3,0,0,4.574710979,2.708050201,4.125177012,5.432989691,3,1204,1201,0.743193069,47,9,29,1.277507093,1,0.000618812,81,45,0.027846535,26,0.016089109,10,0.006188119,0.050123762,31,0.019183168,0,0,27,0.016707921,70,0.043316832,1,0.000618812,62,0.038366337,28,0.017326733,0.275371287,1,0.000618812,6,0.003712871,1616,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0206_U3,WF0206,English,A tutor,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.82359939,0.88961039,36,0.117263844,4.772918092,2.88933785,0.664148582,2.992688138,0.613711543,0.125812312,0.048927189,0.174721714,0.018970117,-0.010654571,0.029624689,1,0.710348036,0.642896636,-0.261231082,2.803729682,23.60216413,3.918614146,0,1,1,0,2,0,1,0,7,1,0,0,6,0,0,0,1,41,0,7,0,0,0,3,0,0,0,0,10,276.3223089,0,0,27,1,2,0,6,141,3,4,0,5.077377268,2.833213344,4.441965386,5.499266324,1,2231,2230,0.721682848,124,17,35,1.090852493,0,0,137,77,0.024919094,29,0.009385113,31,0.010032362,0.04433657,49,0.015857605,3,0.000970874,30,0.009708738,51,0.016504854,2,0.000647249,170,0.055016181,73,0.023624595,0.293527508,1,0.000323625,1,0.000323625,3090,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0207_U1,WF0207,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.794216438,0.865079365,41,0.110512129,4.714133369,2.713264594,1.200742401,3.156383219,1.155158716,0.09914646,0.035957851,0.13509668,0.012342617,-0.004893171,0.017235788,0.95275,0.489527241,0.581165932,-2.039722268,2.817966839,20.97322646,9.796649766,0,0,1,0,0,0,4,0,16,2,0,0,0,0,0,0,0,12,0,2,0,3,1,11,27,0,0,0,5,197.8002962,0,0,17,3,2,0,5,113,3,3,2,5.227281593,2.63905733,4.328078043,5.037576687,14,2741,2727,0.934864587,114,8,16,0.811915835,0,0,133,104,0.035653068,9,0.003085362,20,0.006856359,0.045594789,45,0.015426808,43,0.014741172,95,0.032567707,96,0.032910525,1,0.000342818,135,0.046280425,67,0.022968804,0.240315393,1,0.000342818,10,0.00342818,2917,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0207_U2,WF0207,English,Someone else,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.769855578,0.8359375,24,0.084507042,4.448598738,2.999662886,3.099981528,3.253637106,2.302308251,0.098399646,0.030548028,0.128947675,0.021798631,-0.005095308,0.026893939,0.99999,0.460720617,0.567479514,-2.750905111,2.905781339,16.80059787,6.546307277,0,0,1,0,0,0,4,0,14,3,0,0,2,0,0,0,1,3,0,2,0,1,0,12,0,0,1,0,1,203.2516506,0,0,19,0,1,0,4,113,6,4,1,5.05379302,2.564949357,4.010004809,4.87524558,3,1915,1912,0.827347469,112,10,17,0.922004818,0,0,85,63,0.027260926,10,0.004327131,12,0.005192557,0.036780614,25,0.010817828,27,0.011683254,50,0.021635656,218,0.094331458,0,0,139,0.060147122,54,0.023366508,0.276070965,2,0.000865426,19,0.008221549,2311,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0207_U3,WF0207,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.657725739,0.765625,13,0.087248322,4.480154683,3.388627205,1.179776175,3.226933099,1.104247033,0.108622294,0.070328163,0.178950456,0.017940199,-0.029505814,0.047446013,0.97597,0.500692933,0.640471917,-0.576486944,2.919945649,7.844813303,3.598125775,0,10,1,0,1,0,0,0,9,3,0,0,1,0,0,0,0,2,0,1,0,4,0,1,0,0,0,0,1,145.6691543,0,0,10,1,1,0,4,54,0,5,1,4.688006192,2.397895273,4.053620827,5.09874477,1,1199,1198,0.887407407,63,5,33,1.405592973,0,0,64,44,0.032592593,6,0.004444444,14,0.01037037,0.047407407,14,0.01037037,12,0.008888889,32,0.023703704,92,0.068148148,0,0,69,0.051111111,26,0.019259259,0.32,2,0.001481481,8,0.005925926,1350,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0210_U1,WF0210,History,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.566294783,0.785714286,23,0.205357143,5.329608371,2.838053929,1.038278084,3.177821128,1.020304942,0.103421115,0.038547908,0.141969024,0.022222222,-0.013088512,0.035310734,1,0.71088785,0.656860904,-0.444654869,2.77628477,18.57965988,3.903663834,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,9,0,6,0,2,0,2,0,0,0,0,0,147.597631,0,0,10,0,0,1,5,48,0,1,1,4.340803919,2.564949357,3.963201903,5.781563126,31,821,790,0.663308144,34,0,13,1.076101239,3,0.002518892,24,20,0.016792611,3,0.002518892,1,0.000839631,0.020151134,12,0.010075567,0,0,11,0.009235936,35,0.02938707,1,0.000839631,64,0.053736356,25,0.020990764,0.356003359,0,0,1,0.000839631,1191,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0210_U2,WF0210,History,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.418301405,0.608695652,14,0.186666667,5.234667339,2.038006757,0.525499521,3.05553286,0.479299524,0.088665782,0.076931528,0.165597309,0.013265306,-0.030612245,0.043877551,0.78311,0.604757176,0.675569052,-0.380281461,2.797405291,1.415333371,2.467848184,0,0,1,0,0,0,0,0,3,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,91.19055899,0,0,0,1,2,0,4,16,0,3,0,4.147885329,2.302585093,4.256215865,5.170616114,3,663,660,0.917941586,27,5,18,1.415553754,0,0,26,25,0.034770515,0,0,1,0.001390821,0.036161335,14,0.019471488,0,0,8,0.011126565,6,0.008344924,0,0,28,0.038942976,28,0.038942976,0.422809458,1,0.001390821,7,0.009735744,719,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0211_U1,WF0211,English,"A parent, brother, sister or other relative",Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.231105413,0.48,8,0.173913043,5.164288956,3.010121052,2.101307082,2.689046566,1.952575622,0.123751107,0.049766573,0.17351768,0.018977591,-0.014565826,0.033543417,0.74547,0.399684214,0.557222944,0.228760876,3.055838297,4.456725141,0.500138731,0,0,0,0,2,0,0,0,3,1,0,0,0,0,0,0,0,1,0,2,0,3,0,2,0,0,0,0,0,30.03551931,0,0,5,0,0,0,2,17,0,5,1,4.071871706,1.791759469,4.103963495,5.176136364,17,301,284,0.692682927,15,0,7,1.257034351,0,0,16,10,0.024390244,1,0.002439024,5,0.012195122,0.03902439,8,0.019512195,2,0.004878049,15,0.036585366,22,0.053658537,1,0.002439024,28,0.068292683,11,0.026829268,0.548780488,0,0,0,0,410,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0211_U2,WF0211,English,"A parent, brother, sister or other relative",Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.635813059,0.704545455,9,0.098901099,4.604180686,3.217096857,0.958777621,3.434369138,0.666663928,0.103326813,0.055499275,0.158811229,0.029049034,-0.024702823,0.053751857,1,0.381079158,0.55230642,-0.288722759,2.792385197,8.92109614,1.388165827,0,0,0,0,1,0,0,1,2,0,0,0,0,0,0,0,0,14,1,2,0,4,0,3,0,0,1,0,0,65.07820662,0,0,8,0,0,0,4,35,0,5,0,4.100386877,2.397895273,3.31018794,4.915662651,3,364,361,0.476882431,47,0,9,1.110220425,0,0,23,14,0.018494055,3,0.003963012,6,0.007926024,0.030383091,15,0.019815059,0,0,24,0.031704095,75,0.099075297,2,0.002642008,50,0.066050198,20,0.026420079,0.449141347,0,0,0,0,757,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0211_U3,WF0211,English,"A parent, brother, sister or other relative",Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.560918994,0.743902439,16,0.129032258,4.867782559,3.043518655,0.964588717,3.153148006,0.944085804,0.134789589,0.074960469,0.209704152,0.022915073,-0.025095639,0.048010712,1,0.49734106,0.701651159,0.093158403,3.038663122,21.47912152,3.098384929,0,0,2,0,0,0,1,1,5,1,0,0,1,0,0,0,0,5,0,2,0,13,0,9,0,0,0,0,3,180.7058464,0,0,20,0,1,0,6,66,4,5,1,4.218733412,2.944438979,4.441353963,4.951975213,30,1310,1280,0.842105263,84,7,20,1.150998679,0,0,62,46,0.030263158,8,0.005263158,8,0.005263158,0.040789474,14,0.009210526,3,0.001973684,51,0.033552632,29,0.019078947,2,0.001315789,89,0.058552632,33,0.021710526,0.351315789,1,0.000657895,4,0.002631579,1520,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0213_U1,WF0213,English,A tutor,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.654453053,0.773584906,11,0.092436975,4.537287143,2.99999076,1.193163261,3.386609238,1.107850591,0.129967962,0.057645601,0.187613563,0.025952602,-0.01438197,0.040334572,0.90384,0.464895034,0.721413833,-1.085200105,3.1551438,3.898442244,3.422583717,0,1,0,1,1,0,2,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,117.3295532,0,0,0,0,1,2,5,44,0,2,0,4.340087945,2.63905733,4.374218439,4.462756052,85,1108,1023,0.867684478,52,0,8,0.891281565,0,0,64,52,0.044105174,9,0.007633588,3,0.002544529,0.054283291,22,0.018659881,4,0.003392706,15,0.012722646,50,0.042408821,0,0,59,0.050042409,27,0.022900763,0.33163698,1,0.000848176,1,0.000848176,1179,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0213_U2,WF0213,English,A tutor,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.666799198,0.76,13,0.13,4.875197323,3.371329103,1.276134869,3.518692032,1.310946578,0.074875116,0.055402984,0.1302781,0.025256223,-0.024707174,0.049963397,1,0.297246773,0.551374737,-0.996846908,2.920894635,6.093658606,1.86951478,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,20,0,1,0,2,0,3,0,0,0,0,0,76.18509612,0,0,5,0,0,3,4,40,0,3,0,4.128599587,2.397895273,4.057793779,4.623718887,26,582,556,0.724902216,38,0,7,1.005457941,0,0,32,24,0.031290743,5,0.006518905,3,0.003911343,0.041720991,11,0.014341591,3,0.003911343,29,0.037809648,82,0.106910039,0,0,55,0.071707953,22,0.028683181,0.391134289,3,0.003911343,9,0.011734029,767,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0213_U3,WF0213,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,0,0,3,0.12,4.795790546,1.839228209,1.035039832,2.672276566,0.91546542,0.07319869,0.036178378,0.109377068,0.011681223,-0.014737991,0.026419214,0.47082,0.137335128,0.568331718,-0.254124864,2.988149341,1.375646357,0.370479176,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,20.09355863,0,0,0,0,0,2,0,3,0,9,0,3.633190548,1.791759469,3.26628557,4.374449339,87,116,29,0.118367347,1,0,4,1.23871161,0,0,6,5,0.020408163,1,0.004081633,0,0,0.024489796,4,0.016326531,0,0,8,0.032653061,29,0.118367347,0,0,15,0.06122449,4,0.016326531,0.567346939,2,0.008163265,2,0.008163265,245,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0214_U1,WF0214,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.333250269,0.535714286,13,0.166666667,5.121977881,3.336775555,3.632080824,3.496267173,3.604865024,0.135734709,0.053075339,0.188810049,0.029494382,-0.022565543,0.052059925,0.90336,0.206935276,0.493339623,-1.015136077,2.840482905,1.547366017,4.229364502,0,2,1,0,0,0,1,0,1,3,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,36.61845006,1,0,0,0,0,5,3,16,3,1,0,3.970291914,2.302585093,3.819887176,4.301886792,25,126,101,0.166942149,31,4,4,0.88147426,0,0,22,13,0.021487603,5,0.008264463,4,0.00661157,0.036363636,7,0.011570248,3,0.004958678,15,0.024793388,44,0.072727273,0,0,32,0.052892562,17,0.028099174,0.469421488,1,0.001652893,0,0,605,,No,3,Reflect,Annotator2,Final,N/A,N/A
WF0218_U1,WF0218,History,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.585484942,0.684210526,20,0.166666667,5.121977881,2.18070784,0.923649888,3.271796772,0.913052158,0.128225692,0.088166412,0.216382023,0.027217742,-0.020640121,0.047857863,0.83495,0.573809018,0.661925813,-0.753549226,2.779078159,2.373155939,2.661440691,0,0,0,0,1,0,1,0,1,0,0,0,2,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,109.5667394,0,0,0,0,0,0,4,29,0,5,0,4.49980967,2.397895273,3.644626402,4.982828283,4,1045,1041,0.959447005,43,6,25,1.380961103,0,0,25,22,0.020276498,2,0.001843318,1,0.000921659,0.023041475,21,0.019354839,3,0.002764977,10,0.00921659,51,0.047004608,0,0,44,0.040552995,36,0.033179724,0.34562212,3,0.002764977,2,0.001843318,1085,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0225_U1,WF0225,English,No one helped me,A lot,0,0,I completed the assignment on a laptop or desktop computer.,6.426696306,0.526315789,10,0.192307692,5.26428318,2.695516794,2.989123071,2.893560638,3.123869186,0.109173031,0.040244367,0.149417398,0.013849432,-0.006605114,0.020454545,0.69635,0.329881558,0.644487736,-0.061289812,3.030082722,2.154885976,1.538279465,0,1,1,0,1,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,43.48782632,0,0,0,0,0,1,2,11,1,4,0,3.766997233,2.079441542,4.118637034,5.040462428,2,316,314,0.79093199,18,3,5,1.133361911,0,0,20,15,0.037783375,1,0.002518892,4,0.010075567,0.050377834,6,0.01511335,3,0.007556675,5,0.012594458,15,0.037783375,0,0,21,0.052896725,10,0.025188917,0.476070529,0,0,1,0.002518892,397,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0225_U2,WF0225,English,,,#NULL!,#NULL!,,0,0,2,0.090909091,4.520799946,1.565459196,0.775045729,2.178827226,0.858739303,0.051636905,0.032604167,0.084241071,0.02890625,-0.01109375,0.04,0.02017,0.260524144,0.613154278,0.04936357,2.888522209,1.050718525,0.185221422,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,12.6480217,0,0,0,0,0,2,0,3,0,3,0,3.097514968,1.945910149,3.061878014,5.148387097,30,99,69,0.375,3,0,4,1.356773853,0,0,10,8,0.043478261,2,0.010869565,0,0,0.054347826,3,0.016304348,2,0.010869565,4,0.02173913,2,0.010869565,0,0,9,0.048913043,3,0.016304348,0.554347826,0,0,0,0,184,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0225_U3,WF0225,English,,,#NULL!,#NULL!,,0,0,0,0,0,1.570808195,3.148240282,2.210492901,3.392966191,0.096253823,0.035856269,0.132110092,0.018233945,-0.003440367,0.021674312,0.80368,0.194101874,0.627394495,-0.385053234,2.903076404,1.69259061,0.678201701,0,1,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.98300334,0,0,0,0,0,3,0,2,0,7,0,3.998200702,1.386294361,2.639591831,4.798165138,12,229,217,0.885714286,10,0,7,1.470872305,0,0,8,4,0.016326531,1,0.004081633,3,0.012244898,0.032653061,3,0.012244898,3,0.012244898,4,0.016326531,20,0.081632653,0,0,13,0.053061224,7,0.028571429,0.497959184,1,0.004081633,0,0,245,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0227_U1,WF0227,Business,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.285587985,0.476190476,8,0.137931034,4.933977655,3.24796815,3.449610735,3.140261546,3.576793241,0.092051732,0.026117978,0.118169711,0.009136546,-0.004016064,0.01315261,0.80895,0.313875372,0.493902562,-0.594150167,2.924685438,1.605733522,1.281936973,0,0,0,0,0,0,0,0,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,41.84395138,0,0,0,0,0,0,6,14,0,1,0,3.492458973,2.708050201,4.061118636,4.584178499,4,273,269,0.493577982,25,7,14,1.426317223,0,0,17,12,0.022018349,2,0.003669725,3,0.005504587,0.031192661,10,0.018348624,5,0.009174312,6,0.011009174,41,0.075229358,0,0,28,0.051376147,16,0.029357798,0.458715596,0,0,1,0.001834862,545,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0227_U2,WF0227,Business,A teacher,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.35633252,0.461538462,3,0.125,4.836281907,2.581075795,3.21798193,2.136307197,3.600826361,0.164219324,0.005084746,0.169304069,0.035028249,0,0.035028249,0.69097,0.268141003,0.574462278,-0.359927081,3.062286194,3.223866055,0.38779725,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,18.46275235,0,0,0,0,0,0,2,9,0,2,0,3.338139246,1.791759469,3.556632255,4.840236686,20,137,117,0.606217617,6,0,6,1.506343771,0,0,4,3,0.015544041,0,0,1,0.005181347,0.020725389,4,0.020725389,3,0.015544041,3,0.015544041,18,0.093264249,1,0.005181347,19,0.098445596,4,0.020725389,0.564766839,0,0,1,0.005181347,193,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0227_U4,WF0227,Business,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.379165086,0.551724138,8,0.133333333,4.900324273,2.69154433,3.54651699,2.838074749,3.367261292,0.174807693,0.025716784,0.200524477,0.040702087,-0.004933586,0.045635674,0.88783,0.725231773,0.54117986,0.285837966,2.595945544,5.202044958,0.68452335,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,11,0,0,0,3,0,1,0,0,0,0,1,45.85989229,0,0,0,0,1,0,5,20,0,0,4,4.180139922,2.079441542,3.869300025,5.692160612,31,587,556,0.945578231,33,0,13,1.363778212,0,0,16,7,0.011904762,4,0.006802721,5,0.008503401,0.027210884,8,0.013605442,0,0,18,0.030612245,56,0.095238095,13,0.022108844,37,0.06292517,10,0.017006803,0.465986395,0,0,0,0,588,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0227_U5,WF0227,Business,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.649767842,0.733333333,2,0.04,3.713572067,2.603442675,3.417587037,2.393302268,3.459313094,0.207726117,0.011525974,0.219252091,0.043831169,-0.001298701,0.04512987,0.82607,0.334249985,0.589195238,-0.374771576,3.091983536,0.767288737,0.394082323,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,35.50098158,0,0,0,0,0,1,0,13,0,1,0,4.631487494,1.098612289,3.05465208,4.525974026,17,91,74,0.228395062,4,0,3,1.011116005,0,0,21,15,0.046296296,5,0.015432099,1,0.00308642,0.064814815,6,0.018518519,0,0,4,0.012345679,37,0.114197531,0,0,15,0.046296296,6,0.018518519,0.438271605,2,0.00617284,2,0.00617284,324,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0232_U1,WF0232,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.7874947,0.901234568,19,0.166666667,5.121977881,3.246332146,1.095462882,3.109470922,1.012440008,0.077060463,0.030744781,0.107805244,0.016298768,-0.012731006,0.029029774,1,0.491040751,0.500391201,-0.059523547,2.669078084,24.40808818,3.192613108,0,1,0,0,0,0,0,0,6,0,0,0,2,0,0,0,0,11,0,11,0,7,0,3,0,0,0,0,1,150.7410109,0,0,33,1,2,0,4,75,0,2,0,4.576770711,2.302585093,3.817980827,5.41255144,117,301,184,0.16069869,24,0,10,0.988274586,0,0,16,14,0.012227074,0,0,2,0.001746725,0.013973799,9,0.007860262,0,0,31,0.027074236,55,0.048034934,1,0.000873362,94,0.08209607,15,0.013100437,0.398253275,2,0.001746725,0,0,1145,Yes,,1,Persuade,Annotator2,Final,N/A,N/A
WF0232_U2,WF0232,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.464957571,0.583333333,12,0.169014085,5.135881284,2.838048458,2.81833579,2.527521102,3.022787982,0.138074791,0.051988269,0.19006306,0.012056367,-0.011221294,0.023277662,0.85968,0.28617551,0.445709534,0.062241574,3.014820055,2.633443505,1.387046541,0,0,0,0,0,0,1,0,2,1,0,0,1,0,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,82.60935507,0,0,0,0,0,3,4,16,0,1,0,3.713572067,2.397895273,3.968384364,5.093126386,60,225,165,0.340206186,10,0,5,1.053434893,0,0,28,23,0.04742268,0,0,5,0.010309278,0.057731959,7,0.01443299,0,0,10,0.020618557,25,0.051546392,0,0,29,0.059793814,21,0.043298969,0.367010309,0,0,9,0.018556701,485,No,,1,Persuade,Annotator2,Final,N/A,N/A
WF0232_U3,WF0232,English,Someone else,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.469817903,0.533333333,13,0.134020619,4.905427497,3.20755017,2.837064473,3.539576567,2.668160843,0.115935491,0.030873418,0.146808908,0.026065163,-0.002474937,0.0285401,0.82798,0.199080999,0.562268402,-0.887699467,2.717168047,1.802941673,2.415373026,0,2,0,0,1,0,0,1,11,1,0,0,1,0,0,0,0,1,0,0,0,0,0,7,0,0,0,0,1,97.27516806,0,0,0,1,0,1,3,16,5,5,0,4.479858884,2.197224577,3.595944762,4.619647355,12,829,817,0.958920188,32,4,10,1.10507019,0,0,38,14,0.016431925,8,0.009389671,16,0.018779343,0.044600939,17,0.019953052,0,0,26,0.030516432,16,0.018779343,0,0,34,0.039906103,22,0.025821596,0.313380282,1,0.001173709,1,0.001173709,852,,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0232_U4,WF0232,English,No one helped me,Not at all,0,1,I completed the assignment on a laptop or desktop computer.,6.400260218,0.477272727,10,0.12345679,4.823958588,3.173991461,3.52516848,3.456205538,3.365512274,0.102502759,0.058535778,0.161020711,0.022593583,-0.019518717,0.042112299,0.86182,0.119802111,0.592739631,-0.285645878,3.095782293,8.358575111,2.543562354,0,0,1,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,15,0,15,0,2,0,0,0,0,0,45.14760414,0,0,13,0,0,0,11,27,4,1,1,3.188864746,3.135494216,3.908133864,4.313620072,27,300,273,0.455759599,13,0,7,1.103329622,0,0,29,20,0.033388982,2,0.003338898,7,0.011686144,0.048414023,8,0.013355593,0,0,7,0.011686144,79,0.131886477,0,0,31,0.051752922,21,0.035058431,0.439065109,0,0,3,0.005008347,599,,No,3,Reflect,Annotator2,Final,N/A,N/A
WF0232_U5,WF0232,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,5.823664941,0.3,0,0,0,3.033468698,2.422320914,2.169706326,2.663064642,0.082583245,0.035896703,0.118479948,0.006603774,-0.053301887,0.05990566,0.51969,0.084208733,0.526116561,-0.011378958,2.845273086,1.244079132,0.359573206,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,16.46673523,0,0,0,0,0,3,0,6,0,1,0,3.669951444,1.386294361,3.400923617,4.74522293,4,76,72,0.418604651,10,1,4,1.384815853,0,0,6,5,0.029069767,0,0,1,0.005813953,0.034883721,3,0.01744186,0,0,3,0.01744186,3,0.01744186,0,0,11,0.063953488,7,0.040697674,0.598837209,0,0,2,0.011627907,172,,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0237_U1,WF0237,English,No one helped me,Not at all,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.48959705,0.68,8,0.121212121,4.805758233,3.187202168,3.011742371,3.102703519,3.074841144,0.11080792,0.048175232,0.158983152,0.017024887,-0.013687783,0.03071267,0.65399,0.379628572,0.658318439,-0.050369536,3.111271535,2.148091964,0.660911354,0,0,0,0,2,0,2,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,38.86505538,0,0,0,0,0,1,2,18,1,2,1,4.009603334,2.079441542,3.941684212,4.734693878,113,495,382,0.77016129,22,0,8,1.233732827,0,0,28,22,0.044354839,3,0.006048387,3,0.006048387,0.056451613,9,0.018145161,0,0,7,0.014112903,26,0.052419355,0,0,29,0.058467742,15,0.030241935,0.477822581,1,0.002016129,3,0.006048387,496,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0237_U2,WF0237,English,No one helped me,Not at all,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.333250269,0.535714286,13,0.166666667,5.121977881,3.336775555,3.632080824,3.496267173,3.604865024,0.135734709,0.053075339,0.188810049,0.029494382,-0.022565543,0.052059925,0.90336,0.206935276,0.493339623,-1.015136077,2.840482905,1.547366017,4.229364502,0,2,1,0,0,0,1,0,1,3,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,36.61845006,1,0,0,0,0,5,3,16,3,1,0,3.970291914,2.302585093,3.819887176,4.301886792,25,126,101,0.166942149,31,4,4,0.88147426,0,0,22,13,0.021487603,5,0.008264463,4,0.00661157,0.036363636,7,0.011570248,3,0.004958678,15,0.024793388,44,0.072727273,0,0,32,0.052892562,17,0.028099174,0.469421488,1,0.001652893,0,0,605,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0237_U3,WF0237,English,No one helped me,Not at all,1,1,I completed the assignment on a laptop or desktop computer.,6.673970996,0.755555556,17,0.175257732,5.17194731,3.378731405,1.951415585,3.344391798,2.191249357,0.077232055,0.037631146,0.114863201,0.010803324,-0.01817867,0.028981994,0.90295,0.460297052,0.55767014,-0.369204326,2.622674334,7.491491116,2.13373756,0,1,0,0,2,0,0,0,4,1,0,0,1,0,0,0,0,37,0,1,0,0,0,1,0,0,0,0,2,93.72980432,0,0,0,0,1,0,3,40,0,1,1,4.373658385,2.197224577,3.828459152,5.021008403,50,695,645,0.760613208,36,6,22,1.430452338,7,0.008254717,27,19,0.02240566,4,0.004716981,4,0.004716981,0.031839623,11,0.012971698,0,0,44,0.051886792,52,0.061320755,1,0.001179245,53,0.0625,14,0.016509434,0.398584906,1,0.001179245,3,0.003537736,848,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0238_U1,WF0238,English,No one helped me,A lot,0,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.713676322,0.793103448,20,0.137931034,4.933977655,3.234014712,2.412620165,3.157911237,1.90425295,0.080455432,0.030238826,0.110694258,0.012695652,-0.007826087,0.020521739,0.80749,0.49206722,0.504514019,-0.843689317,2.565377271,6.652893979,3.026322539,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,0,2,0,0,0,0,0,0,0,1,1,117.7303449,0,0,6,0,1,0,4,49,0,5,0,4.627643042,2.397895273,3.975371744,5.167111111,8,1179,1171,0.888467375,57,7,23,1.266012444,8,0.006069803,33,22,0.016691958,4,0.003034901,7,0.005311077,0.025037936,21,0.015933232,1,0.000758725,36,0.027314112,53,0.040212443,1,0.000758725,65,0.049317147,22,0.016691958,0.407435508,0,0,1,0.000758725,1318,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0238_U2,WF0238,English,No one helped me,A little,1,0,I completed the assignment on a laptop or desktop computer.,6.075259278,0.461538462,4,0.090909091,4.520799946,3.010537411,1.118320887,2.605552941,1.68067763,0.107839811,0.038636283,0.146476094,0.01358209,-0.003955224,0.017537313,0.30709,0.436852875,0.553999454,-0.588453596,2.728614619,0.550738777,0.526521104,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.51885456,0,0,0,0,1,3,1,8,0,1,0,4.198704578,1.609437912,4.148081188,4.96996997,5,119,114,0.307277628,4,0,5,1.160681243,0,0,21,8,0.021563342,4,0.010781671,9,0.02425876,0.056603774,9,0.02425876,0,0,1,0.002695418,14,0.037735849,0,0,14,0.037735849,9,0.02425876,0.541778976,0,0,0,0,371,,Yes,1,Persuade,Annotator3,Draft,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0238_U3,WF0238,English,Someone else,Somewhat,0,0,I completed the assignment on a laptop or desktop computer.,6.564620697,0.705882353,21,0.1640625,5.10632419,3.221842937,1.405117797,3.003657638,1.297586217,0.09449896,0.050074423,0.144573383,0.014462209,-0.012281977,0.026744186,0.85699,0.610242506,0.577516694,0.066263607,2.933459382,7.498644054,2.052804143,0,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,0,6,0,2,0,0,0,3,0,0,0,0,3,107.7561311,0,0,5,0,0,0,4,40,2,4,1,4.345801431,2.564949357,4.381021151,5.171485543,5,1093,1088,0.911222781,45,5,29,1.402916324,0,0,48,25,0.020938023,8,0.006700168,15,0.012562814,0.040201005,21,0.01758794,2,0.001675042,14,0.011725293,33,0.027638191,1,0.000837521,55,0.046063652,18,0.015075377,0.389447236,1,0.000837521,4,0.003350084,1194,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0241_U2,WF0241,Business,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.187926682,0.5,11,0.126436782,4.847620411,3.266431549,3.610615197,3.016073721,3.418529326,0.128999501,0.025487981,0.154471784,0.030376766,-0.007810047,0.038186813,0.83889,0.419840234,0.621692367,-0.049733596,2.797784336,5.9933319,2.161067155,0,0,0,1,0,0,0,0,3,1,0,0,1,0,0,0,0,3,0,3,0,3,0,0,0,0,0,0,1,73.52124856,0,0,5,0,1,1,11,26,0,1,1,3.278715825,3.17805383,3.84668155,4.971742543,26,688,662,0.937677054,46,9,19,1.445793777,0,0,27,19,0.026912181,4,0.005665722,4,0.005665722,0.038243626,12,0.016997167,0,0,18,0.025495751,55,0.077903683,1,0.001416431,48,0.067988669,19,0.026912181,0.410764873,0,0,4,0.005665722,706,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0241_U3,WF0241,Business,Someone else,Not at all,0,1,I completed the assignment on a laptop or desktop computer.,6.333873089,0.6,14,0.29787234,5.700016527,2.638477611,3.292474851,2.991185822,3.609055273,0.173293737,0.003003876,0.176297613,0.038735465,0,0.038735465,0.69074,0.483499917,0.516006033,-0.039629626,2.863628649,6.882377139,1.2381304,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,33.60751637,0,0,0,0,1,1,3,18,0,3,0,3.63172104,2.197224577,3.713982112,4.976470588,167,258,91,0.24137931,4,0,5,1.154198686,0,0,7,5,0.013262599,0,0,2,0.00530504,0.018567639,3,0.00795756,0,0,7,0.018567639,26,0.068965517,5,0.013262599,33,0.087533156,5,0.013262599,0.533156499,0,0,0,0,377,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0241_U4,WF0241,Business,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.261430991,0.548387097,9,0.147540984,5.000860904,3.286624311,3.555079029,3.27523838,3.329487536,0.117277359,0.033342091,0.150561647,0.016184971,-0.007225434,0.023410405,0.81312,0.423780985,0.557459906,0.033603404,2.91726503,5.068363873,0.603268427,0,0,0,0,0,0,0,0,5,1,0,0,1,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,0,49.28033928,0,0,0,0,0,0,7,22,0,0,2,3.753417975,2.48490665,3.88698322,5.0625,54,560,506,0.893992933,31,0,4,0.906719476,0,0,20,6,0.010600707,6,0.010600707,8,0.014134276,0.035335689,10,0.017667845,0,0,8,0.014134276,32,0.056537102,3,0.005300353,37,0.065371025,21,0.037102473,0.487632509,1,0.001766784,1,0.001766784,566,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0241_U6,WF0241,Business,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.595342108,0.708333333,6,0.117647059,4.776153194,3.32595933,3.443973031,3.202207877,3.499977144,0.103220637,0.021825397,0.125020393,0.018525641,-0.001282051,0.019807692,0.78127,0.064287865,0.479303718,-0.389533576,2.976013692,3.41446178,1.244715904,0,0,0,0,0,0,0,0,0,1,1,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,33.73399679,0,0,0,0,0,3,0,20,0,1,0,4.569543008,1.386294361,3.417025482,4.126943005,77,282,205,0.480093677,14,0,7,1.240385549,0,0,15,10,0.023419204,4,0.009367681,1,0.00234192,0.035128806,5,0.011709602,0,0,5,0.011709602,45,0.105386417,0,0,24,0.056206089,13,0.030444965,0.487119438,2,0.004683841,0,0,427,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0242_U1,WF0242,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",5.928379515,0.333333333,3,0.078947368,4.381368523,3.108577509,2.971960398,3.02633879,3.223973735,0.104463119,0.084977124,0.189401027,0.019607843,-0.028431373,0.048039216,0.70121,0.431060462,0.548868347,-0.208409785,2.974705606,1.756730729,0.276545031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.61497689,0,0,0,0,1,2,0,8,0,2,0,3.931825633,1.609437912,4.690203525,4.698039216,13,70,57,0.207272727,2,0,3,1.07587861,0,0,18,14,0.050909091,0,0,4,0.014545455,0.065454545,9,0.032727273,1,0.003636364,0,0,19,0.069090909,0,0,14,0.050909091,7,0.025454545,0.567272727,0,0,3,0.010909091,275,,Yes,1,Persuade,Annotator3,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WF0246_U1,WF0246,English,Someone else,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.461843897,0.576923077,8,0.133333333,4.900324273,3.059713915,0.963140709,2.433253251,1.018221077,0.091768628,0.01109288,0.102861508,0.006324582,-0.000716,0.007040573,0.62131,0.619277507,0.620418771,-0.494559374,2.786609398,5.263091696,0.547279797,0,0,0,0,0,0,0,0,3,1,0,0,1,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,41.40264845,0,0,0,0,0,0,4,19,0,3,0,3.840646343,2.197224577,3.368043216,5.520286396,19,430,411,0.867088608,23,0,8,1.252310118,0,0,11,8,0.016877637,1,0.002109705,2,0.004219409,0.023206751,9,0.018987342,0,0,8,0.016877637,27,0.056962025,6,0.012658228,32,0.067510549,10,0.021097046,0.474683544,0,0,1,0.002109705,474,,Yes,2,Inform/Explore,Annotator2,Possible Duplicate,N/A,N/A
WF0249_U1,WF0249,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,0,0,1,0.05,3.931825633,1.980892284,0.898829628,2.706610151,0.641946704,0.057608225,0.025151515,0.08275974,0.002272727,0,0.002272727,0.80595,-0.218159177,0.579278455,-0.352626077,3.022655255,1.084989882,0.527560751,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,12.61929413,0,0,0,0,0,0,0,2,0,9,0,4.001254139,1.098612289,2.287905487,4.115853659,69,151,82,0.438502674,5,0,7,1.584706038,0,0,10,9,0.048128342,1,0.005347594,0,0,0.053475936,4,0.021390374,8,0.042780749,3,0.016042781,27,0.144385027,0,0,12,0.064171123,12,0.064171123,0.470588235,0,0,0,0,187,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0250_U1,WF0250,English,Someone else,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.593272819,0.756097561,9,0.195652174,5.281436554,2.658855736,2.335095931,2.973311882,1.847515574,0.102854792,0.012383603,0.115238395,0.019927536,-0.006099034,0.02602657,0.86101,0.254840012,0.518417707,0.048522607,2.836717604,9.620696613,0.999835029,0,0,0,0,0,0,0,0,3,1,0,0,2,0,0,0,0,3,0,6,0,3,0,3,0,0,0,1,0,47.74491386,0,0,10,0,1,0,3,34,0,4,0,3.823798772,2.197224577,3.930547264,4.995145631,248,300,52,0.108333333,4,0,3,0.860338007,0,0,19,17,0.035416667,0,0,2,0.004166667,0.039583333,5,0.010416667,0,0,30,0.0625,43,0.089583333,1,0.002083333,48,0.1,8,0.016666667,0.441666667,2,0.004166667,1,0.002083333,480,Yes,,2,Inform/Explore,Annotator2,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0250_U2,WF0250,English,Someone else,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.101337593,0.434782609,8,0.140350877,4.95124529,3.246588801,3.386264353,3.028515773,3.284166799,0.127242113,0.025806452,0.153048564,0.016873449,-0.005459057,0.022332506,0.89156,0.122057346,0.355288889,-0.236974033,2.993514005,1.591174872,1.228398815,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,7,0,0,0,0,0,1,0,0,0,0,0,55.02391156,0,0,0,0,2,0,3,10,5,5,0,3.912023005,2.079441542,3.047492814,4.3575,1,433,432,0.981818182,26,4,6,1.165433191,0,0,22,17,0.038636364,5,0.011363636,0,0,0.05,7,0.015909091,0,0,11,0.025,40,0.090909091,0,0,27,0.061363636,19,0.043181818,0.370454545,1,0.002272727,2,0.004545455,440,No,,1,Persuade,Annotator2,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WF0252_U1,WF0252,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.58202683,0.726190476,15,0.114503817,4.749303575,2.877646134,0.768439598,3.007212448,0.661148028,0.086995396,0.074443871,0.161432418,0.012945205,-0.021575342,0.034520548,1,0.498221644,0.60264448,0.750712308,2.671165529,14.77557791,3.219292905,0,1,2,0,0,0,0,1,10,0,0,0,0,0,0,0,0,43,0,8,0,1,0,7,1,0,0,0,1,181.9005904,0,0,21,0,2,1,4,71,1,3,4,4.657616661,2.564949357,4.477413337,5.340145985,2,1336,1334,0.814407814,78,7,70,1.640829555,9,0.005494505,52,30,0.018315018,11,0.006715507,11,0.006715507,0.031746032,29,0.017704518,2,0.001221001,34,0.020757021,12,0.007326007,1,0.000610501,83,0.050671551,42,0.025641026,0.370573871,0,0,1,0.000610501,1638,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0252_U2,WF0252,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.707220467,0.805555556,59,0.171014493,5.147578733,2.717061046,0.81508826,3.118454671,0.516092549,0.137050533,0.046586645,0.18361701,0.021689076,-0.010159664,0.031848739,0.99999,0.577708551,0.631751119,-1.537370397,2.740645448,23.93805014,7.264943952,1,2,3,0,2,0,3,3,10,2,1,0,4,0,0,0,0,16,1,4,0,0,0,10,0,0,0,1,2,305.4983894,0,0,24,0,0,1,7,126,1,4,5,4.978456396,2.995732274,4.269477358,5.092254733,154,2914,2760,0.842490842,119,13,27,0.965754603,11,0.003357753,159,102,0.031135531,30,0.009157509,27,0.008241758,0.048534799,45,0.013736264,10,0.003052503,41,0.012515263,56,0.017094017,1,0.00030525,156,0.047619048,55,0.016788767,0.272588523,4,0.001221001,3,0.000915751,3276,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0252_U3,WF0252,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.620600599,0.6,39,0.183098592,5.215471438,3.016113351,2.592960901,3.158887344,2.392901348,0.087121652,0.027322547,0.114439678,0.013268535,-0.005944846,0.019213382,1,0.52913314,0.597962419,-1.588049654,2.65295837,27.40141039,4.882825594,0,0,0,0,2,0,1,0,11,1,0,0,5,0,0,0,3,19,0,12,0,0,0,6,0,0,0,1,1,223.9969466,0,0,29,0,3,0,4,91,27,3,5,5.035095592,2.63905733,4.343178378,5.174256506,173,2208,2035,0.819573097,93,6,28,1.089080987,10,0.004027386,56,35,0.014095852,6,0.002416432,15,0.006041079,0.022553363,22,0.00886025,3,0.001208216,38,0.015304068,118,0.047523157,1,0.000402739,134,0.053966975,52,0.020942408,0.302456706,3,0.001208216,5,0.002013693,2483,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0253_U1,WF0253,English,No one helped me,Somewhat,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.285465897,0.583333333,2,0.037735849,3.656765503,2.594487672,1.146712039,3.190840004,0.92631342,0.087103053,0.045857553,0.132960606,0.01342711,-0.019181586,0.032608696,0.91059,0.305344044,0.565418552,-0.399795594,3.070084212,2.051771007,0.417369773,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,43.85478181,0,0,0,0,0,1,3,17,0,1,2,3.886705197,2.079441542,3.463423114,4.582051282,117,260,143,0.319196429,8,0,5,1.084959085,0,0,23,18,0.040178571,3,0.006696429,2,0.004464286,0.051339286,7,0.015625,6,0.013392857,7,0.015625,43,0.095982143,1,0.002232143,28,0.0625,6,0.013392857,0.410714286,0,0,3,0.006696429,448,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0253_U2,WF0253,English,No one helped me,A lot,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.38335306,0.648648649,10,0.12195122,4.811787687,3.195318568,2.521250981,3.111687407,2.143984691,0.076675927,0.041768607,0.118444534,0.009237288,-0.009957627,0.019194915,0.91354,0.366082087,0.585373949,0.332957331,2.945743204,2.541350281,2.86579642,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6,0,0,0,0,1,1,0,0,0,0,0,72.87770646,0,0,0,0,0,1,3,24,6,2,1,4.295583278,2.079441542,3.989934781,4.625212947,3,626,623,0.943939394,40,4,11,1.247154615,0,0,21,13,0.01969697,3,0.004545455,5,0.007575758,0.031818182,14,0.021212121,1,0.001515152,11,0.016666667,34,0.051515152,0,0,41,0.062121212,8,0.012121212,0.383333333,0,0,1,0.001515152,660,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0253_U3,WF0253,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.754392168,0.87012987,16,0.126984127,4.851906248,3.183725245,1.072924729,3.388182635,0.847729337,0.07059023,0.046810049,0.117400278,0.015691264,-0.021988974,0.037680237,0.9569,0.338936305,0.588615392,-0.623609827,2.822313441,7.53194377,2.475025959,0,0,0,0,0,0,0,1,3,1,0,0,1,0,0,0,1,37,0,2,0,0,0,2,0,0,0,1,1,145.4065249,0,0,6,0,2,0,3,69,0,5,0,4.980176087,2.079441542,3.991042152,4.56185567,1,1188,1187,0.899242424,75,4,18,1.165433191,0,0,34,18,0.013636364,7,0.00530303,9,0.006818182,0.025757576,21,0.015909091,3,0.002272727,51,0.038636364,59,0.04469697,0,0,81,0.061363636,45,0.034090909,0.345454545,3,0.002272727,2,0.001515152,1320,,Yes,2,Inform/Explore,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0254_U1,WF0254,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.734863021,0.813333333,8,0.064516129,4.182296357,3.356908953,2.204989572,3.009314457,1.83411306,0.137263006,0.072908688,0.210171694,0.019647303,-0.025975104,0.045622407,0.97884,0.623653701,0.678165153,-0.778535039,3.014227873,14.06342209,2.301143845,0,2,0,0,0,0,0,0,9,0,0,0,3,0,0,0,0,10,0,0,0,1,0,0,0,0,0,0,2,151.5581875,0,0,12,0,0,0,4,65,0,6,0,4.520952107,2.564949357,4.064307281,5.333891213,2,904,902,0.642908054,78,9,17,1.117830955,1,0.000712758,60,43,0.03064861,13,0.009265859,4,0.002851033,0.042765502,20,0.014255167,8,0.005702067,19,0.013542409,22,0.015680684,1,0.000712758,80,0.05702067,25,0.017818959,0.347826087,1,0.000712758,2,0.001425517,1403,Unsure,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0254_U2,WF0254,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.730743313,0.712121212,8,0.054054054,4.008315504,3.34514033,3.167379461,3.257161958,3.111598686,0.09762891,0.05437779,0.151996905,0.01363859,-0.015621939,0.029260529,0.84057,0.437387999,0.629865509,-0.981338657,3.122582438,7.391429114,3.415529001,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,23,0,1,0,1,0,0,2,0,0,0,3,94.977278,0,0,11,0,1,1,5,51,0,8,1,4.26969745,2.63905733,4.647088704,4.973026973,1,1088,1087,0.927474403,77,13,11,1.016434332,0,0,49,37,0.031569966,5,0.004266212,7,0.005972696,0.041808874,20,0.017064846,30,0.02559727,31,0.026450512,65,0.055460751,1,0.000853242,79,0.067406143,30,0.02559727,0.394197952,2,0.001706485,5,0.004266212,1172,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0254_U3,WF0254,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.757203165,0.842519685,14,0.048442907,3.900818601,3.037405508,3.628112896,3.302675484,3.556502809,0.111459073,0.032989583,0.144448656,0.024206349,-0.007738095,0.031944444,0.9391,0.39425062,0.682088955,-1.612788412,3.241609531,15.29447664,10.87557322,0,0,0,0,1,0,0,0,4,0,0,0,2,0,0,0,0,3,0,3,0,0,0,7,0,0,0,2,8,200.8541772,0,0,22,0,1,0,7,113,2,4,1,4.564821564,3.091042453,4.172840686,4.620444865,67,2157,2090,0.825760569,113,0,22,0.986423107,2,0.000790202,110,81,0.032003161,9,0.003555907,20,0.007902015,0.043461083,41,0.016199131,89,0.035163967,27,0.01066772,227,0.08968787,2,0.000790202,146,0.05768471,72,0.028447254,0.284867641,7,0.002765705,10,0.003951008,2531,Yes,Yes,3,Reflect,Annotator1,Final,N/A,N/A
WF0254_U4,WF0254,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.578679716,0.75,15,0.089820359,4.508883482,3.351616975,3.601100717,3.463146049,3.558132479,0.132192898,0.029605043,0.161797941,0.028757515,-0.005210421,0.033967936,0.99595,0.239703702,0.635647219,-0.720035661,3.140368526,13.75034709,3.517865496,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,7,0,2,0,5,0,0,0,0,0,0,2,70.95625506,0,0,13,0,0,4,7,54,0,3,0,3.935945103,2.944438979,3.904818482,4.580678314,40,1036,996,0.855670103,56,0,9,0.941111676,7,0.006013746,65,53,0.045532646,5,0.004295533,7,0.006013746,0.055841924,19,0.016323024,40,0.034364261,12,0.010309278,116,0.099656357,2,0.001718213,83,0.071305842,33,0.028350515,0.333333333,1,0.000859107,5,0.004295533,1164,Yes,Yes,3,Reflect,Annotator1,Final,N/A,N/A
WF0254_U5,WF0254,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.671382628,0.677419355,22,0.181818182,5.208492117,3.056861578,0.922106218,2.949044301,0.730080658,0.089015735,0.029580455,0.11859619,0.018157076,-0.012130638,0.030287714,1,0.639491511,0.659808753,1.400581457,2.578449295,19.69508039,3.65403718,0,1,0,0,0,0,3,0,7,1,0,0,0,0,0,0,0,42,0,3,0,0,0,3,0,0,0,0,3,143.8000861,0,0,18,0,0,0,5,66,20,1,1,4.508501942,2.63905733,3.826617728,5.884343037,7,1276,1269,0.821891192,79,16,22,1.183232953,0,0,30,13,0.008419689,2,0.001295337,15,0.009715026,0.019430052,10,0.006476684,5,0.003238342,47,0.030440415,27,0.017487047,1,0.000647668,110,0.071243523,24,0.015544041,0.367875648,4,0.002590674,1,0.000647668,1544,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0259_U1,WF0259,English,,,#NULL!,#NULL!,,6.426412062,0.630434783,16,0.153846154,5.042432068,3.322299174,1.221675441,3.488097326,0.940430752,0.120350726,0.027792652,0.148143378,0.03625,-0.00502907,0.04127907,1,0.192829005,0.617398984,-0.652659869,2.875651328,4.373361871,1.499517961,0,17,0,0,0,0,0,2,6,0,0,0,2,0,0,0,0,18,1,0,0,0,0,2,0,0,1,1,1,72.69144483,0,0,0,0,0,2,3,32,6,2,1,4.446174454,2.302585093,3.495425826,4.393903869,22,609,587,0.629828326,29,4,10,1.069283711,0,0,33,25,0.026824034,8,0.008583691,0,0,0.035407725,9,0.009656652,1,0.001072961,52,0.055793991,92,0.098712446,0,0,50,0.053648069,38,0.040772532,0.362660944,1,0.001072961,4,0.004291845,932,,Yes,2,Inform/Explore,Annotator3,Draft,N/A,N/A
WF0260_U1,WF0260,History,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.588389547,0.648648649,17,0.180851064,5.203188021,2.911583065,0.846046189,3.306707664,0.850007308,0.105379776,0.078430565,0.183810342,0.013920781,-0.020350172,0.034270953,0.91844,0.49626027,0.597057237,-0.746903119,2.751375385,3.069085479,4.534384731,0,0,0,0,0,0,0,0,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,2,124.1933839,0,0,0,0,0,0,6,26,0,5,0,4.127134385,2.63905733,4.090526213,5.101382488,3,973,970,0.985772358,43,7,15,1.210690372,0,0,35,31,0.031504065,0,0,4,0.004065041,0.035569106,18,0.018292683,3,0.00304878,16,0.016260163,38,0.038617886,0,0,44,0.044715447,29,0.029471545,0.358739837,0,0,0,0,984,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0260_U2,WF0260,History,A teacher,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.565495009,0.653061224,28,0.19047619,5.254763469,2.926760941,1.117716149,3.201259521,1.110567783,0.124334939,0.048892543,0.173227481,0.027517825,-0.011229947,0.038747772,0.88699,0.50124157,0.650784078,-0.478584932,2.885430471,3.850003272,4.541408793,0,0,1,0,1,0,2,0,11,0,0,0,1,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,1,166.3524599,0,0,0,1,0,0,9,35,0,5,0,3.968493352,3.044522438,4.085192737,5.091809181,8,893,885,0.705179283,56,0,9,0.912291939,0,0,54,50,0.039840637,1,0.000796813,3,0.002390438,0.043027888,29,0.02310757,3,0.002390438,19,0.015139442,28,0.022310757,0,0,59,0.047011952,52,0.041434263,0.324302789,0,0,7,0.005577689,1255,Yes,Yes,1,Persuade,Annotator1,Final,N/A,N/A
WF0261_U1,WF0261,English,No one helped me,Not at all,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.547219774,0.7,12,0.08,4.394449155,3.100078796,3.423185585,3.310101859,3.316062441,0.087644314,0.045698539,0.133342853,0.017113246,-0.013725986,0.030839232,0.89631,0.187581244,0.660312036,-1.88180386,3.156178172,3.703635009,4.373468718,0,0,2,1,0,0,0,0,2,1,0,0,0,0,0,0,1,2,0,0,0,0,0,3,0,0,0,0,1,90.57450934,0,5,5,0,0,0,5,38,0,4,3,4.585987367,2.302585093,3.938057756,4.290519878,54,1135,1081,0.951584507,51,0,9,0.950488271,0,0,40,23,0.020246479,9,0.007922535,8,0.007042254,0.035211268,20,0.017605634,15,0.013204225,14,0.012323944,111,0.097711268,0,0,56,0.049295775,42,0.036971831,0.370598592,2,0.001760563,3,0.002640845,1136,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0261_U2,WF0261,English,No one helped me,A lot,1,0,I completed the assignment on a laptop or desktop computer.,6.725363641,0.827067669,42,0.16091954,5.087099547,2.826676178,2.905203743,2.797468266,2.971616348,0.107546921,0.059288962,0.166827325,0.015008558,-0.019929397,0.034937955,0.91595,0.724767865,0.689856756,1.541005143,2.852542871,26.04573333,5.631601043,0,0,0,0,2,0,1,0,15,1,0,0,4,0,0,0,0,10,0,14,0,9,0,7,0,0,0,0,5,257.9075667,0,0,32,3,1,0,6,119,0,4,4,5.094188317,2.63905733,4.457284455,5.337713535,5,1556,1551,0.578731343,129,0,18,0.88741574,1,0.000373134,52,32,0.011940299,8,0.002985075,12,0.004477612,0.019402985,14,0.005223881,7,0.00261194,30,0.01119403,40,0.014925373,1,0.000373134,140,0.052238806,33,0.012313433,0.309328358,2,0.000746269,4,0.001492537,2680,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0261_U3,WF0261,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.586713328,0.744186047,17,0.180851064,5.203188021,3.109883241,2.112883466,3.426673613,1.738913424,0.083304529,0.045833194,0.129137723,0.017917676,-0.023153753,0.041071429,0.7575,0.378004556,0.714887604,0.021790337,2.815860432,5.582191003,1.910210941,0,0,0,0,1,0,1,0,3,1,0,0,1,0,0,0,0,33,0,1,0,1,0,0,0,0,0,0,1,95.77887301,0,0,6,0,1,0,4,36,0,3,0,4.221955687,2.48490665,4.086517614,4.759168704,1,801,800,0.843881857,38,8,14,1.197774752,3,0.003164557,29,21,0.022151899,2,0.002109705,6,0.006329114,0.030590717,18,0.018987342,0,0,35,0.036919831,45,0.047468354,1,0.001054852,52,0.054852321,22,0.023206751,0.357594937,6,0.006329114,1,0.001054852,948,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0263_U1,WF0263,History,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.701876684,0.78125,22,0.102325581,4.637884987,2.864500267,2.944068796,3.24852788,2.958522536,0.102808838,0.079834914,0.182643752,0.020694742,-0.034388412,0.055083155,0.94995,0.516869272,0.585185338,-0.971570505,2.955270553,4.688527815,7.46526964,0,3,1,0,1,0,0,0,10,2,0,0,6,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,187.0786425,0,0,0,3,4,0,2,53,0,9,0,5.572697068,1.945910149,4.554022898,4.700325733,339,1627,1288,0.635421806,55,0,13,0.870018538,0,0,111,84,0.041440553,16,0.007893439,11,0.005426739,0.05476073,43,0.021213616,11,0.005426739,32,0.015786877,115,0.05673409,0,0,72,0.035520474,63,0.031080414,0.308337444,0,0,12,0.005920079,2027,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0263_U2,WF0263,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.653851386,0.691729323,33,0.097058824,4.585567539,2.811848373,0.659715752,2.899815625,0.513371297,0.150021721,0.040215819,0.190220573,0.018289786,-0.008661351,0.026951137,1,0.586202791,0.554988955,-0.765951715,2.645017948,24.20690012,8.413003899,0,0,0,0,1,0,2,0,11,0,0,0,2,0,0,0,0,39,0,4,0,0,0,9,0,0,0,2,1,297.6012031,0,0,25,2,1,0,7,97,23,6,0,4.913704755,3.044522438,4.455887435,5.358167191,7,2847,2840,0.884735202,131,13,39,1.11891032,4,0.001246106,130,78,0.024299065,28,0.008722741,24,0.007476636,0.040498442,54,0.01682243,13,0.004049844,37,0.01152648,94,0.029283489,1,0.000311526,145,0.04517134,74,0.02305296,0.247352025,6,0.001869159,6,0.001869159,3210,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0263_U3,WF0263,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.636128447,0.727272727,17,0.099415205,4.609313637,2.8782202,0.701489686,2.988882367,0.614955242,0.15540176,0.027768212,0.183116992,0.019039735,-0.003807947,0.022847682,1,0.610742731,0.553909152,-0.459566125,2.594804623,9.849045537,3.070892986,0,2,0,0,2,0,0,1,9,0,0,0,1,0,0,0,0,26,0,1,0,0,0,2,3,0,0,0,0,152.8486566,0,0,11,5,1,3,5,44,3,0,0,4.574710979,2.708050201,4.125177012,5.432989691,3,1204,1201,0.743193069,47,9,29,1.277507093,1,0.000618812,81,45,0.027846535,26,0.016089109,10,0.006188119,0.050123762,31,0.019183168,0,0,27,0.016707921,70,0.043316832,1,0.000618812,62,0.038366337,28,0.017326733,0.275371287,1,0.000618812,6,0.003712871,1616,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0263_U4,WF0263,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.756421554,0.834645669,21,0.081081081,4.407707552,2.792132293,3.367665458,3.258884978,3.179723341,0.111506814,0.034732918,0.146239731,0.015286323,-0.009133933,0.024420256,1,0.442967192,0.526798553,-2.911693965,2.834269045,23.6106635,5.983106443,0,1,0,0,0,0,0,0,13,0,0,0,2,0,0,0,0,9,1,10,0,1,0,5,6,0,0,0,2,229.6537274,0,0,36,1,2,0,5,115,0,4,3,5.083313673,2.564949357,3.845506554,4.753934192,23,2178,2155,0.890495868,108,0,16,0.88147426,6,0.002479339,106,67,0.02768595,22,0.009090909,17,0.007024793,0.043801653,49,0.020247934,12,0.004958678,36,0.014876033,220,0.090909091,1,0.000413223,139,0.057438017,54,0.02231405,0.253719008,2,0.000826446,12,0.004958678,2420,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0264_U1,WF0264,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.66950574,0.779411765,19,0.119496855,4.791623656,2.941721403,2.080083545,3.314147513,1.723740607,0.097440799,0.047225097,0.144665896,0.027164416,-0.010127085,0.037291501,0.96584,0.250418197,0.514544586,-2.026462805,2.649460063,7.194917475,7.830493896,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,5,0,6,0,0,0,2,1,0,0,0,1,127.8651453,0,4,5,1,2,2,5,57,0,4,0,4.334836752,2.772588722,4.299536697,4.514332514,58,1320,1262,0.845277964,63,0,22,1.196878671,0,0,77,49,0.032819826,16,0.010716678,12,0.008037508,0.051574012,18,0.012056263,1,0.000669792,25,0.016744809,64,0.042866711,0,0,76,0.05090422,47,0.031480241,0.341594106,0,0,1,0.000669792,1493,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0264_U2,WF0264,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.679105916,0.79245283,8,0.085106383,4.455583543,2.953669018,3.273102069,3.393804393,3.002394223,0.075324593,0.034370136,0.109694729,0.019967682,-0.00900277,0.028970452,0.93348,0.239651089,0.44198195,-1.63484019,2.491721657,3.831225724,4.67112474,0,0,1,0,2,0,1,2,3,1,0,0,1,0,0,0,0,49,1,1,0,0,0,2,1,0,0,0,2,118.4955941,0,0,5,0,2,3,5,45,0,0,0,4.390643251,2.564949357,4.233877731,4.563393708,48,1229,1181,0.936558287,57,7,18,1.183963745,0,0,38,24,0.019032514,8,0.006344171,6,0.004758128,0.030134814,22,0.017446471,0,0,70,0.055511499,113,0.08961142,0,0,60,0.047581285,34,0.026962728,0.377478192,1,0.000793021,4,0.003172086,1261,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0265_U1,WF0265,Biology,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,5.848588719,0.333333333,6,0.136363636,4.922631689,2.850282616,0.792833538,2.802471208,0.629722144,0.063174633,0.025130526,0.08824685,0.007142857,-0.005102041,0.012244898,0.54331,0.183367427,0.481805147,-0.170823707,2.651284931,2.543782966,0.419810065,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,1,0,0,38.49659353,0,0,0,0,4,2,1,9,0,6,0,3.883035469,1.945910149,3.680723784,4.626470588,3,285,282,0.75,15,2,17,1.664761963,0,0,7,4,0.010638298,1,0.002659574,2,0.005319149,0.018617021,10,0.026595745,0,0,7,0.018617021,1,0.002659574,0,0,20,0.053191489,7,0.018617021,0.507978723,1,0.002659574,2,0.005319149,376,,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0266_U1,WF0266,History,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.572092744,0.673913043,19,0.211111111,5.357110246,3.283377389,1.095791534,3.309431093,0.949246987,0.104128988,0.060159274,0.164288261,0.015039954,-0.026141553,0.041181507,1,0.500595152,0.49412654,0.771531267,2.632612327,11.02301638,1.236809201,0,1,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,8,0,10,0,1,0,2,1,0,0,0,1,125.0677442,0,0,9,1,1,3,6,36,0,0,1,3.861898618,2.890371758,4.327999392,5.168224299,22,707,685,0.673549656,37,0,8,0.947741117,0,0,43,30,0.029498525,7,0.006882989,6,0.005899705,0.042281219,12,0.01179941,0,0,18,0.017699115,36,0.03539823,0,0,54,0.053097345,23,0.022615536,0.375614553,0,0,6,0.005899705,1017,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0266_U2,WF0266,History,Someone else,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.625165638,0.692307692,25,0.1953125,5.279707777,3.126831884,1.546715996,3.128241393,0.959611459,0.070407706,0.042187259,0.112587552,0.012509266,-0.011452928,0.023962194,0.97789,0.532922648,0.65670654,0.639204236,2.71321347,25.59270034,4.125007235,0,2,1,0,0,0,1,0,3,0,0,0,2,0,0,0,0,38,0,14,0,6,0,1,0,0,0,0,1,155.8496154,0,0,26,1,3,1,4,64,19,3,0,4.698205052,2.48490665,4.361391786,5.116173121,3,1440,1437,0.854848305,72,7,23,1.166795039,4,0.002379536,33,23,0.013682332,4,0.002379536,6,0.003569304,0.019631172,15,0.00892326,5,0.00297442,25,0.0148721,69,0.041046996,1,0.000594884,98,0.058298632,28,0.016656752,0.342058299,1,0.000594884,3,0.001784652,1681,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0269_U1,WF0269,History,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.451435105,0.607142857,13,0.132653061,4.895247347,3.146706218,1.053614108,3.348679423,1.03411972,0.11859942,0.05230548,0.170904901,0.028125,-0.015094866,0.043219866,0.61601,0.289890849,0.490913899,-0.642661656,2.443985799,3.886809508,2.526014518,0,2,0,0,0,0,0,0,6,3,0,0,0,0,0,1,1,13,2,0,0,0,0,3,0,0,0,0,0,73.61661621,1,0,0,3,3,1,4,19,0,4,0,4.403387762,2.397895273,3.720010984,4.631813126,39,689,650,0.670794634,29,0,18,1.291720659,0,0,23,15,0.015479876,1,0.001031992,7,0.007223942,0.02373581,16,0.016511868,2,0.002063983,29,0.029927761,18,0.018575851,0,0,33,0.034055728,8,0.008255934,0.416924665,0,0,4,0.004127967,969,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0271_U1,WF0271,English,Someone else,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.465264497,0.64,9,0.163636364,5.103739185,3.213900027,2.048305014,3.241159522,2.004575544,0.067664942,0.029638253,0.097303195,0.01325167,-0.004342984,0.017594655,0.96938,-0.036797771,0.59299174,-0.352821478,2.959411097,3.52001293,0.666328696,0,0,1,0,0,0,0,0,5,1,1,0,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,52.21106672,0,0,0,0,2,0,2,17,1,5,0,4.156648446,1.945910149,2.591574861,4.147651007,1,499,498,0.992031873,27,3,43,1.937805507,0,0,18,10,0.019920319,1,0.001992032,7,0.013944223,0.035856574,10,0.019920319,1,0.001992032,12,0.023904382,3,0.005976096,0,0,28,0.055776892,17,0.033864542,0.396414343,1,0.001992032,1,0.001992032,502,,No,2,Inform/Explore,Annotator2,Possible Duplicate,N/A,N/A
WF0273_U1,WF0273,Computer Science,"A parent, brother, sister or other relative",A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.599957223,0.772727273,15,0.142857143,4.968820744,3.205344669,3.653563113,3.207930274,3.572721236,0.120144333,0.022690509,0.142823064,0.024234393,-0.003121319,0.027355713,0.98366,0.468311999,0.638535493,0.293425297,2.972203793,9.007522344,4.584786094,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,88.24021044,0,0,0,1,1,1,5,36,0,2,0,4.169642303,2.564949357,3.8995631,5.216409037,23,864,841,0.838484546,34,6,22,1.360483546,0,0,38,26,0.025922233,5,0.004985045,7,0.006979063,0.037886341,15,0.014955135,22,0.021934197,16,0.015952144,50,0.049850449,0,0,49,0.04885344,20,0.019940179,0.391824526,2,0.001994018,0,0,1003,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0275_U1,WF0275,History,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.532552517,0.711111111,10,0.133333333,4.900324273,3.232971882,0.920914111,3.438474882,0.862621417,0.12317744,0.083746438,0.206923878,0.033512931,-0.021336207,0.054849138,1,0.265119638,0.577535258,-0.383233289,2.87465985,8.237000684,2.584357817,0,0,1,0,1,0,0,0,1,1,0,0,1,0,0,0,0,4,0,0,0,1,0,4,0,0,0,0,0,69.01887538,0,0,0,1,0,1,4,35,0,5,0,4.057565311,2.48490665,4.133556252,4.677233429,1,624,623,0.791613723,46,6,16,1.328998358,2,0.002541296,31,24,0.030495553,4,0.005082592,3,0.003811944,0.039390089,13,0.016518424,8,0.010165184,13,0.016518424,39,0.049555273,3,0.003811944,51,0.06480305,25,0.031766201,0.385006353,1,0.001270648,2,0.002541296,787,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0287_U1,WF0287,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",5.687220626,0.308510638,54,0.173076923,5.159497288,3.114434946,3.574046682,3.33086697,3.313970803,0.081157587,0.038401716,0.119559303,0.019234694,-0.008561224,0.027795918,1,0.38953952,0.483404111,-0.793487605,2.661358885,12.65359121,6.048228134,0,6,4,0,3,0,2,4,8,4,0,2,2,0,0,0,3,37,40,13,0,13,0,9,0,0,0,2,0,293.5647855,0,0,13,6,16,0,11,58,15,1,9,4.040541856,3.737669618,3.778597846,4.546901173,57,2593,2536,0.976135489,129,0,13,0.778429769,0,0,78,54,0.020785219,2,0.000769823,22,0.008468052,0.030023095,31,0.011932256,9,0.003464203,157,0.060431101,187,0.071978445,3,0.001154734,134,0.051578137,59,0.022709777,0.189761355,5,0.001924557,11,0.004234026,2598,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0287_U3,WF0287,English,No one helped me,A lot,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.614160177,0.75,18,0.197802198,5.29231035,3.205122136,2.943283662,3.343040409,2.051630428,0.075292478,0.053400706,0.128679448,0.022664835,-0.031662088,0.054326923,0.82927,0.514242538,0.417572164,-0.340733478,2.799219256,4.057301286,1.791903717,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,0,19,0,0,0,0,0,3,0,0,0,0,2,69.57161912,0,0,0,0,3,3,3,34,2,1,1,4.279440046,2.302585093,4.099058696,5.006925208,158,663,505,0.607701564,30,0,12,1.188659481,0,0,15,12,0.014440433,1,0.001203369,2,0.002406739,0.018050542,9,0.010830325,2,0.002406739,26,0.031287605,72,0.086642599,2,0.002406739,50,0.060168472,20,0.024067389,0.416365824,0,0,3,0.003610108,831,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0289_U1,WF0289,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.668503428,0.774193548,10,0.131578947,4.887178297,3.356889762,3.307183902,3.233443292,3.174165444,0.084590701,0.022389759,0.10698046,0.010524257,-0.003951487,0.014475743,0.97405,0.273371422,0.511104993,-0.05179616,2.695618866,5.346915446,3.218745148,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,3,0,0,0,0,0,0,1,0,0,0,2,88.07535123,0,0,0,1,1,0,1,25,0,2,3,5.749392986,0.693147181,3.920746196,5.214968153,2,299,297,0.418309859,25,5,5,0.90537776,0,0,23,17,0.023943662,2,0.002816901,4,0.005633803,0.032394366,10,0.014084507,6,0.008450704,9,0.012676056,23,0.032394366,1,0.001408451,36,0.050704225,23,0.032394366,0.381690141,1,0.001408451,8,0.011267606,710,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0289_U2,WF0289,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.75994549,0.888888889,41,0.131410256,4.885905106,2.807678837,1.085114673,3.081255669,1.005594143,0.134699314,0.050966147,0.185646825,0.026863586,-0.01083675,0.037700335,1,0.582878962,0.616906516,-3.226548314,2.775899738,21.64618018,9.206665865,0,1,2,0,3,0,0,1,13,1,0,0,2,0,0,0,0,34,0,5,0,0,0,15,0,0,0,0,1,278.6182569,0,0,26,3,5,0,6,108,0,3,0,5.05023301,2.833213344,4.42413115,4.878627968,40,2596,2556,0.856568365,130,0,29,1.030133958,15,0.00502681,148,112,0.037533512,12,0.004021448,24,0.008042895,0.049597855,47,0.01575067,1,0.000335121,62,0.02077748,69,0.023123324,1,0.000335121,136,0.045576408,79,0.026474531,0.279155496,2,0.000670241,6,0.002010724,2984,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0289_U3,WF0289,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.733132987,0.819672131,13,0.091549296,4.52774143,3.008283755,1.099187612,3.049481018,1.033283545,0.135375767,0.031563679,0.166932194,0.018527919,-0.006254532,0.024782451,0.99999,0.482024415,0.575857659,-0.350266716,2.786135488,10.2367356,3.401685913,0,2,0,0,2,0,2,0,3,0,0,0,2,0,0,0,0,13,0,3,0,1,0,8,0,0,0,0,1,158.5400226,0,0,10,0,1,0,4,53,0,4,0,4.825400407,2.397895273,3.987176511,5.018234865,2,1194,1192,0.794137242,67,9,19,1.135394353,1,0.000666223,56,36,0.023984011,6,0.003997335,14,0.009327115,0.037308461,24,0.01598934,0,0,23,0.015323118,30,0.019986676,1,0.000666223,70,0.046635576,38,0.025316456,0.339773484,2,0.001332445,3,0.001998668,1501,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0289_U4,WF0289,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.767333974,0.884210526,37,0.1197411,4.793648586,2.975374114,3.31010839,3.195430293,3.10392576,0.10020691,0.031981771,0.132188682,0.015205843,-0.012350598,0.027556441,1,0.526691887,0.575387238,-3.952671001,2.766081819,10.64582323,6.637668283,0,0,0,0,0,0,0,0,3,1,0,0,2,0,0,0,0,15,0,2,0,1,0,4,0,0,0,1,4,236.6784339,0,0,12,2,1,0,4,87,0,4,0,5.29376155,2.397895273,4.324450504,4.936986301,140,2420,2280,0.906200318,92,0,28,1.083816969,8,0.00317965,71,56,0.022257552,8,0.00317965,7,0.002782194,0.028219396,35,0.01391097,12,0.004769475,20,0.007949126,225,0.089427663,1,0.000397456,109,0.043322734,51,0.02027027,0.304848967,3,0.001192369,11,0.004372019,2516,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0290_U1,WF0290,English,Someone else,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.647414559,0.732394366,19,0.147286822,4.999148383,3.023555487,0.986835467,3.084761552,0.930585179,0.112395598,0.054645013,0.167040611,0.017640364,-0.017697269,0.035337633,1,0.535642935,0.665459156,1.602051927,2.922099072,12.82274171,5.730781627,0,1,0,0,0,0,0,1,5,0,0,0,1,0,0,0,0,2,0,3,0,0,0,3,0,0,0,0,0,157.5136237,0,0,5,0,2,1,5,60,0,3,2,4.533367248,2.63905733,4.421308072,4.927091328,67,1257,1190,0.785478548,62,9,36,1.393792318,0,0,44,27,0.017821782,10,0.00660066,7,0.004620462,0.029042904,23,0.015181518,6,0.003960396,19,0.012541254,14,0.009240924,1,0.000660066,79,0.052145215,36,0.023762376,0.335973597,1,0.000660066,5,0.00330033,1515,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0290_U2,WF0290,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.619316389,0.723076923,26,0.175675676,5.174315711,3.210456963,2.791119029,3.319342016,2.503185012,0.099291348,0.038064277,0.137355625,0.030363475,-0.016777482,0.047140957,0.98409,0.448316098,0.582676102,-1.308857466,2.710425545,11.47916591,2.686022376,0,0,1,0,0,0,0,0,5,0,0,0,1,0,0,0,0,37,0,1,0,1,0,6,0,0,0,0,2,134.1557598,0,0,6,0,0,1,2,55,0,3,4,5.070699535,1.945910149,3.897414082,4.878923767,195,683,488,0.383045526,20,0,11,0.983816691,3,0.002354788,35,22,0.017268446,10,0.007849294,3,0.002354788,0.027472527,18,0.014128728,2,0.001569859,54,0.042386185,99,0.077708006,1,0.000784929,70,0.054945055,25,0.019623234,0.370486656,3,0.002354788,7,0.005494505,1274,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0290_U3,WF0290,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.391927405,0.529411765,14,0.202898551,5.31762257,3.006507175,2.734085161,3.032711079,2.693226455,0.088387225,0.062253296,0.150640521,0.014153439,-0.01984127,0.033994709,0.99373,0.431231424,0.640218306,0.388862523,2.693449178,4.811646904,3.459886863,0,0,0,0,2,0,0,0,3,1,0,0,0,0,0,0,0,1,0,3,0,0,0,3,0,0,0,0,1,64.29058794,0,0,0,0,0,2,4,24,0,1,3,3.931825633,2.397895273,3.689591487,5.124777184,14,480,466,0.715821813,27,5,16,1.407859332,0,0,22,8,0.012288786,4,0.006144393,10,0.015360983,0.033794163,14,0.021505376,6,0.00921659,16,0.024577573,17,0.026113671,1,0.001536098,39,0.059907834,18,0.02764977,0.433179724,3,0.004608295,0,0,651,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0292_U1,WF0292,History,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.523727594,0.627906977,20,0.162601626,5.097434363,3.107491518,1.3177926,3.433612043,1.000450994,0.109916264,0.057190829,0.167107094,0.019070842,-0.016966119,0.036036961,0.87846,0.452226002,0.610699614,-0.614788988,2.93022185,3.169577982,2.954732953,0,0,2,0,0,0,0,0,5,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,122.5433837,0,0,0,0,2,1,4,31,0,5,2,4.398555937,2.48490665,4.542225831,4.794057377,11,402,391,0.366791745,47,0,10,1.016233461,0,0,93,80,0.075046904,9,0.008442777,4,0.003752345,0.087242026,27,0.02532833,0,0,9,0.008442777,49,0.045966229,0,0,50,0.046904315,28,0.026266417,0.321763602,0,0,4,0.003752345,1066,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0292_U2,WF0292,History,Someone else,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.722475998,0.803278689,25,0.196850394,5.287511158,2.824979604,3.109529801,3.417764146,2.284631744,0.11737352,0.072934001,0.190307521,0.029982127,-0.01785076,0.047832887,0.94114,0.37706206,0.636222378,-0.828299003,2.855174031,8.448133391,3.864709115,0,0,0,0,0,0,1,0,1,0,0,0,2,0,0,0,0,1,0,0,0,3,0,0,0,0,0,1,2,114.3179445,0,0,6,1,1,0,4,52,0,5,0,4.616020202,2.397895273,4.354569689,4.617805755,1,864,863,0.689297125,70,10,13,1.056271485,0,0,33,20,0.015974441,4,0.003194888,9,0.007188498,0.026357827,24,0.019169329,0,0,7,0.005591054,94,0.075079872,1,0.000798722,71,0.056709265,24,0.019169329,0.329872204,3,0.002396166,3,0.002396166,1252,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0295_U1,WF0295,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.736451646,0.791666667,23,0.1796875,5.19676902,3.313743786,1.188063165,3.400707781,1.12031075,0.081067348,0.062272261,0.143339608,0.021940822,-0.027883651,0.049824473,0.67586,0.303255714,0.644112881,-1.459889965,2.933794673,5.253225485,3.520522698,0,0,1,0,0,0,1,0,3,0,0,0,0,0,0,0,0,33,0,0,0,0,0,9,1,0,1,0,2,101.1353034,0,0,0,1,3,0,4,40,0,4,0,4.593097605,2.302585093,3.561557367,4.381578947,229,488,259,0.24137931,18,0,5,0.752803559,0,0,51,38,0.035414725,8,0.007455732,5,0.004659832,0.047530289,29,0.027027027,0,0,46,0.042870457,89,0.082945014,1,0.000931966,53,0.049394222,34,0.031686859,0.330848089,10,0.009319664,4,0.003727866,1073,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0295_U3,WF0295,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.193450058,0.444444444,2,0.04,3.713572067,3.42407353,2.861865742,2.966195119,2.733607634,0.116048526,0.051699834,0.16774836,0.023818408,-0.013121891,0.036940299,0.73885,0.163213065,0.451165944,-0.708837476,2.844990175,0.913847651,2.819061782,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,4,0,0,0,0,0,39.92003552,0,0,0,0,0,3,3,8,3,1,0,3.799227511,2.197224577,3.299550039,4.350746269,167,366,199,0.456422018,11,0,3,0.896566666,0,0,23,14,0.032110092,5,0.01146789,4,0.009174312,0.052752294,11,0.025229358,1,0.002293578,14,0.032110092,32,0.073394495,0,0,22,0.050458716,24,0.055045872,0.456422018,1,0.002293578,2,0.004587156,436,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0296_U1,WF0296,English,No one helped me,A little,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.365051791,0.5,6,0.15,5.017279837,3.032982891,0.702272982,2.886438665,0.517193234,0.107587918,0.069629309,0.177217227,0.024431818,-0.020292208,0.044724026,0.81137,0.338700482,0.605738165,0.197836942,2.716606712,2.118782462,0.573220184,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,43.4115208,0,0,0,0,0,3,0,12,0,2,1,3.938340314,1.791759469,3.325288145,4.876623377,15,238,223,0.650145773,11,0,5,1.192491054,0,0,14,8,0.023323615,1,0.002915452,5,0.014577259,0.040816327,6,0.017492711,1,0.002915452,3,0.008746356,15,0.043731778,0,0,19,0.055393586,10,0.029154519,0.518950437,0,0,2,0.005830904,343,,No,1,Persuade,Annotator3,Final,N/A,N/A
WF0296_U2,WF0296,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.688244348,0.769230769,14,0.13592233,4.919413831,2.962465014,1.091278569,3.097949207,0.956309351,0.103810449,0.066170762,0.16996135,0.01082423,-0.018793446,0.029617676,0.99999,0.656353138,0.683216904,1.384759804,2.648224389,9.890128798,2.27824988,0,2,1,0,0,0,0,0,4,1,0,0,0,0,0,0,0,10,0,5,0,0,0,5,0,0,0,0,2,144.9464475,0,0,9,1,2,0,5,43,0,4,0,4.327692284,2.564949357,5.015324987,5.67715736,7,741,734,0.637706342,55,8,16,1.173214123,0,0,38,27,0.023457863,4,0.003475239,7,0.006081668,0.03301477,17,0.014769765,2,0.001737619,19,0.016507385,21,0.018245004,1,0.00086881,60,0.052128584,20,0.017376195,0.396177237,0,0,1,0.00086881,1151,,Yes,2,Inform/Explore,Annotator3,Draft,N/A,N/A
WF0296_U3,WF0296,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.647959285,0.8,19,0.168141593,5.130736192,2.994132661,2.694055899,3.197260547,2.461997374,0.06823956,0.067131815,0.135371375,0.009008529,-0.028251599,0.037260128,0.90118,0.570334989,0.552305869,0.168089473,2.584101267,9.106159934,2.316924021,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,47,0,2,0,1,0,0,0,0,0,0,1,126.3333878,0,0,8,1,4,3,4,42,0,1,0,4.422121092,2.397895273,4.307210725,5.565502183,67,889,822,0.746594005,48,5,9,0.962577052,6,0.005449591,37,23,0.0208901,1,0.000908265,13,0.011807448,0.033605813,15,0.013623978,0,0,49,0.044504995,29,0.026339691,2,0.00181653,54,0.049046322,24,0.021798365,0.355131698,0,0,6,0.005449591,1101,,Yes,2,Inform/Explore,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0300_U1,WF0300,English,No one helped me,A lot,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.660901316,0.681818182,5,0.138888889,4.940848457,3.253143527,2.171843224,2.396809483,2.089832168,0.075115207,0.060299539,0.135414747,0.0075,-0.013928571,0.021428571,0.66887,0.331887521,0.580906158,-0.220984355,2.896365933,5.780161869,0.47011294,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,3,3,2,0,1,0,1,0,0,0,0,0,39.79811931,0,0,0,0,0,0,3,17,0,1,1,3.670860949,1.945910149,3.734798827,5.287272727,26,236,210,0.668789809,13,0,7,1.367225308,0,0,14,7,0.022292994,3,0.00955414,4,0.012738854,0.044585987,4,0.012738854,0,0,12,0.038216561,8,0.025477707,2,0.006369427,27,0.085987261,4,0.012738854,0.52866242,0,0,0,0,314,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0300_U2,WF0300,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.63217965,0.719626168,23,0.10952381,4.705230969,2.988409322,3.512578218,3.062270201,3.391147943,0.095046258,0.055778873,0.150786542,0.014829107,-0.015835171,0.030664278,0.97134,0.446839443,0.565530564,-1.451726956,2.726122634,16.91490043,3.054615834,0,0,1,0,1,0,0,1,6,1,0,0,2,0,0,0,0,13,0,1,0,6,0,6,0,0,2,0,0,183.9370783,0,0,12,0,3,0,11,86,7,3,0,3.999589784,3.496507561,4.113283351,4.888950583,37,1604,1567,0.761049053,104,22,20,1.029929474,5,0.002428363,72,46,0.022340942,13,0.006313745,13,0.006313745,0.034968431,27,0.013113162,4,0.001942691,28,0.013598834,74,0.035939777,5,0.002428363,126,0.061194755,33,0.016027198,0.316172899,1,0.000485673,8,0.003885381,2059,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0300_U3,WF0300,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,0,0,2,0.1,4.615120517,2.740333268,3.33660443,2.037040263,3.45808314,0.118132205,0.057086228,0.175102153,0.018895349,-0.012936047,0.031831395,0.77633,0.158707169,0.438318237,-0.221733229,3.015963273,1.750289564,0.158374796,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.38924368,0,0,0,0,0,2,2,4,0,1,0,3.201584328,1.945910149,3.706098163,4.726744186,95,124,29,0.158469945,1,0,4,1.359036775,0,0,13,6,0.032786885,4,0.021857923,3,0.016393443,0.071038251,2,0.010928962,0,0,0,0,8,0.043715847,0,0,13,0.071038251,4,0.021857923,0.601092896,0,0,1,0.005464481,183,,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0300_U4,WF0300,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.749781552,0.855555556,20,0.117647059,4.776153194,3.03585857,3.583125027,2.998077693,3.4049929,0.0908114,0.049546848,0.140319563,0.012169568,-0.01497421,0.027143778,0.90965,0.47296283,0.535438838,-0.969017959,2.699796112,14.02197857,2.399129312,0,0,1,0,1,0,0,1,5,1,1,0,2,0,0,0,0,14,0,0,0,7,0,5,0,0,1,0,1,179.0456948,0,0,11,0,1,2,8,79,0,1,0,4.475329453,2.833213344,4.103341655,5.174815807,27,1529,1502,0.88042204,81,13,20,1.104600772,3,0.001758499,60,39,0.022860492,12,0.007033998,9,0.005275498,0.035169988,24,0.014067995,4,0.002344666,22,0.012895662,75,0.043962485,4,0.002344666,99,0.058030481,31,0.018171161,0.347596717,1,0.000586166,9,0.005275498,1706,,Yes,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0300_U5,WF0300,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,5.735868404,0.363636364,2,0.060606061,4.120760252,2.053435134,3.448410653,2.837539692,3.394516674,0.106443089,0.023587398,0.130030488,0.002439024,-0.002972561,0.005411585,0.79147,0.113549884,0.441059973,-0.095185704,2.698258115,5.939270981,0.551794617,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5,0,3,0,0,0,0,0,39.66145527,0,0,5,0,1,1,7,13,0,0,1,3.225010813,2.564949357,2.953079611,4.22324159,104,292,188,0.531073446,10,0,3,0.976559796,0,0,11,4,0.011299435,6,0.016949153,1,0.002824859,0.031073446,2,0.005649718,0,0,5,0.014124294,36,0.101694915,6,0.016949153,23,0.064971751,6,0.016949153,0.446327684,0,0,0,0,354,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0301_U1,WF0301,Business,No one helped me,Not at all,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.576734698,0.666666667,7,0.107692308,4.688521025,3.3645855,3.298242008,3.088967415,3.239878222,0.139166375,0.038396509,0.177542559,0.022256098,-0.003658537,0.025914634,0.78718,0.272012496,0.564094785,0.062306024,3.113502439,2.704591276,1.360421569,0,0,0,0,1,0,0,0,3,2,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.57733924,0,0,0,0,0,0,2,19,0,3,0,4.402645922,1.791759469,3.194038354,4.665306122,14,528,514,0.950092421,23,0,12,1.365134903,0,0,26,16,0.029574861,3,0.005545287,7,0.012939002,0.04805915,5,0.009242144,1,0.001848429,6,0.011090573,41,0.075785582,3,0.005545287,27,0.049907579,13,0.024029575,0.467652495,2,0.003696858,0,0,541,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0301_U2,WF0301,Business,No one helped me,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.507856284,0.583333333,2,0.074074074,4.31847528,2.073363709,3.094221631,2.193632502,3.362346358,0.147448233,0.013777778,0.161181567,0.030444444,-0.001444444,0.031888889,0.71159,0.542407416,0.568348485,-0.07696522,2.769021599,2.22581078,0.321264058,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.46378841,0,0,0,0,1,2,2,8,0,0,0,3.784189634,1.609437912,3.543807736,5.168181818,15,195,180,0.734693878,9,4,8,1.527024576,0,0,4,2,0.008163265,0,0,2,0.008163265,0.016326531,5,0.020408163,0,0,2,0.008163265,25,0.102040816,1,0.004081633,16,0.065306122,4,0.016326531,0.571428571,0,0,0,0,245,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0301_U3,WF0301,Business,No one helped me,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.640265423,0.689655172,10,0.149253731,5.012325407,3.013726482,3.537772095,3.06082319,3.534087653,0.144274418,0.025764831,0.170039249,0.027234637,-0.001024209,0.028258845,0.81876,0.361269813,0.551157394,-0.040885997,2.8442008,1.811800783,0.837112254,0,0,0,0,0,0,0,1,2,0,0,0,1,0,0,0,0,6,0,0,0,0,0,1,0,0,0,0,0,43.57343362,0,0,0,0,1,3,3,23,0,0,0,4.090633983,2.197224577,3.367614731,4.843866171,21,197,176,0.305025997,22,0,5,0.985224831,0,0,27,19,0.032928943,4,0.006932409,4,0.006932409,0.046793761,11,0.019064125,0,0,9,0.01559792,35,0.060658579,0,0,33,0.057192374,13,0.022530329,0.414211438,4,0.006932409,1,0.001733102,577,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0303_U1,WF0303,English,No one helped me,Not at all,0,0,I completed the assignment on a laptop or desktop computer.,6.707773661,0.727272727,14,0.11965812,4.792961089,3.053998674,1.269360062,3.562499306,1.22879034,0.09143911,0.029698507,0.121137617,0.011651436,-0.003818538,0.015469974,0.78366,0.256626742,0.508308309,-1.362654185,2.290862386,2.778296688,3.597893024,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,66,0,0,0,0,0,0,0,0,0,0,1,73.52193051,0,0,0,2,0,0,4,26,0,3,0,4.338597077,2.302585093,4.239286972,4.558746736,2,597,595,0.713429257,22,5,5,0.844800374,2,0.002398082,44,30,0.035971223,8,0.009592326,6,0.007194245,0.052757794,11,0.013189448,0,0,67,0.080335731,69,0.082733813,1,0.001199041,38,0.045563549,23,0.027577938,0.338129496,2,0.002398082,4,0.004796163,834,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0303_U2,WF0303,English,No one helped me,A little,0,0,I completed the assignment on a laptop or desktop computer.,6.506950542,0.552238806,9,0.068181818,4.236738085,3.300782885,3.238148139,3.370143387,3.113787976,0.118653538,0.085216156,0.203853959,0.017151849,-0.03243509,0.049586939,0.9432,0.399637002,0.582889586,-0.868318285,2.797347196,12.34999766,2.51161108,0,2,1,0,0,0,0,1,2,2,0,0,1,0,0,0,1,3,0,7,0,1,0,7,0,0,1,0,1,159.7367362,0,0,16,3,2,0,5,37,20,5,0,4.651576559,2.48490665,4.294820786,4.740652347,568,980,412,0.290755116,17,0,8,0.82254272,10,0.007057163,56,36,0.025405787,17,0.011997177,3,0.002117149,0.039520113,9,0.006351447,0,0,18,0.012702893,14,0.009880028,1,0.000705716,75,0.052928723,30,0.021171489,0.321100917,2,0.001411433,3,0.002117149,1417,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0303_U3,WF0303,English,A tutor,Not at all,0,0,I completed the assignment on a laptop or desktop computer.,6.46634549,0.6875,18,0.165137615,5.112816449,3.415227453,1.195743432,3.46020491,1.066856471,0.103618429,0.061407177,0.165013261,0.011358025,-0.00595679,0.017314815,0.92182,0.370152892,0.505110399,-0.859171947,3.061339083,3.45538784,2.932463772,0,0,2,0,0,0,1,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,3,0,1,0,0,1,101.0684606,0,0,0,2,1,4,3,24,1,0,0,4.295428395,2.397895273,4.501716727,4.727385378,19,764,745,0.843714609,34,4,16,1.281488917,0,0,50,31,0.035107588,7,0.00792752,12,0.013590034,0.056625142,17,0.019252548,2,0.002265006,13,0.014722537,26,0.029445074,0,0,36,0.040770102,26,0.029445074,0.359003398,2,0.002265006,4,0.004530011,883,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0304_U1,WF0304,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.773165156,0.869158879,34,0.127819549,4.858412579,2.801632869,3.192650854,3.119602282,2.931336833,0.101597788,0.048442703,0.150036447,0.017084513,-0.016932875,0.034017388,0.91627,0.576514438,0.593251429,0.045559629,2.770056197,11.37320944,4.92136007,0,0,1,0,0,0,0,0,7,1,0,0,4,0,0,0,3,13,0,2,0,2,0,5,0,0,0,0,1,286.6830182,0,0,9,0,1,0,4,96,0,6,1,5.49100171,2.302585093,4.139821132,4.907216495,22,2237,2215,0.813142438,83,0,21,0.939980812,4,0.001468429,112,70,0.025697504,8,0.002936858,34,0.012481645,0.041116006,42,0.015418502,12,0.004405286,23,0.008443465,158,0.058002937,1,0.000367107,113,0.041483113,47,0.017254038,0.265418502,3,0.001101322,8,0.002936858,2724,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0304_U2,WF0304,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.457867181,0.636363636,9,0.107142857,4.683453104,3.227797562,2.266746745,2.77640686,1.983255479,0.089975113,0.082866034,0.172841147,0.015930707,-0.041576087,0.057506793,0.82869,0.487467435,0.5692549,-0.553196233,2.500610757,3.52091922,1.21045828,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,23,0,1,0,1,0,0,0,0,0,0,2,90.58127167,0,0,0,0,1,1,5,23,0,4,0,4.018459865,2.564949357,3.609717715,5.192254495,17,732,715,0.880541872,33,0,15,1.289430776,3,0.003694581,20,17,0.020935961,1,0.001231527,2,0.002463054,0.024630542,13,0.016009852,3,0.003694581,24,0.02955665,24,0.02955665,1,0.001231527,39,0.048029557,14,0.017241379,0.380541872,0,0,0,0,812,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0304_U3,WF0304,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.783531884,0.804733728,28,0.058091286,4.079083474,2.788233003,2.579200223,3.074171677,2.470206987,0.106145186,0.051267635,0.157375813,0.010771874,-0.012311657,0.023083532,1,0.617749317,0.545000958,-4.082196058,2.67558244,24.07654278,10.84305235,0,0,0,0,1,1,2,0,16,0,0,0,8,0,0,0,0,34,0,12,0,0,1,9,0,0,0,0,1,388.3518006,0,0,28,3,1,0,7,141,16,4,1,5.268400606,2.944438979,4.443581016,5.394793926,1,3547,3546,0.855901521,178,15,32,0.940709264,0,0,221,149,0.035964277,24,0.005792904,48,0.011585807,0.053342988,86,0.020757905,28,0.006758388,100,0.024137099,97,0.023412986,0,0,184,0.044412262,95,0.022930244,0.213854695,6,0.001448226,5,0.001206855,4143,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0304_U4,WF0304,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.653586622,0.790697674,31,0.148325359,5.006127542,2.936801118,3.240285122,3.045070363,3.126553249,0.120740876,0.059902711,0.180643587,0.019950157,-0.027872508,0.047822665,0.97258,0.664211842,0.593935065,0.35035702,2.764002327,15.21345015,5.29111341,0,0,0,0,0,0,0,0,3,2,0,0,4,0,0,0,0,11,0,4,0,0,0,3,0,0,0,0,1,217.6670041,0,0,17,3,2,3,6,74,0,2,1,4.688645908,2.833213344,4.213971847,5.500541126,18,1842,1824,0.866096866,74,0,16,0.934364149,8,0.00379867,83,47,0.022317189,16,0.007597341,20,0.009496676,0.039411206,35,0.016619183,3,0.001424501,16,0.007597341,49,0.023266857,1,0.000474834,97,0.046058879,45,0.021367521,0.317188984,1,0.000474834,3,0.001424501,2106,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0304_U5,WF0304,English,Someone else,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.657033644,0.773381295,68,0.113144759,4.737467456,2.712016864,2.495381758,2.761829465,2.751249413,0.104667798,0.063684306,0.168350402,0.021682545,-0.026650221,0.048332766,0.99908,0.623306434,0.632949505,-6.747933905,2.77540953,35.21279451,11.29455842,2,10,3,1,6,0,5,2,42,4,1,0,7,0,1,0,0,62,1,15,0,2,0,19,1,0,2,2,12,508.1439664,2,0,31,2,5,0,12,242,15,3,6,4.642328334,4.025351691,4.480171102,5.055402615,7,3004,2997,0.454159721,302,36,26,0.69372615,10,0.001515381,136,83,0.012577663,27,0.004091529,26,0.003939991,0.020609183,59,0.008940749,15,0.002273072,65,0.009849977,102,0.015456887,1,0.000151538,307,0.0465222,103,0.015608426,0.212001818,4,0.000606152,1,0.000151538,6599,Unsure,Yes,1,Persuade,Annotator1,Final,N/A,N/A
WF0305_U1,WF0305,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.475992271,0.692307692,4,0.040816327,3.73328685,3.354768369,2.93590197,3.486948388,2.647058213,0.124972138,0.057228678,0.182200816,0.021959064,-0.016725146,0.038684211,0.93128,0.315148153,0.703516624,-0.404904521,3.024592687,3.597285454,3.452324744,0,0,0,1,1,0,0,0,3,1,0,0,2,0,0,0,0,1,0,0,0,0,0,7,0,0,0,0,1,119.5005749,0,0,0,0,2,2,5,30,0,2,0,4.037186148,2.708050201,4.055524059,4.687058824,3,825,822,0.867088608,43,6,9,1.020927439,0,0,60,47,0.049578059,10,0.010548523,3,0.003164557,0.063291139,24,0.025316456,8,0.008438819,19,0.020042194,44,0.046413502,0,0,45,0.047468354,35,0.036919831,0.332278481,1,0.001054852,5,0.005274262,948,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0305_U2,WF0305,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.565644705,0.617647059,6,0.068181818,4.236738085,3.371996888,2.055598941,3.560217931,1.661951777,0.079166744,0.04179197,0.120958714,0.024314516,-0.025403226,0.049717742,0.9065,0.267826077,0.54600675,-0.267943767,2.686194952,5.21288189,2.542406517,0,2,0,0,1,0,0,0,2,0,0,0,2,0,0,0,0,30,1,1,0,1,0,3,0,0,0,0,2,79.08212384,0,0,5,0,1,4,3,25,0,1,1,4.21623438,2.197224577,3.853381957,4.618032787,45,540,495,0.695224719,36,0,7,1.034687027,0,0,23,19,0.026685393,3,0.004213483,1,0.001404494,0.032303371,7,0.009831461,8,0.011235955,43,0.060393258,70,0.098314607,1,0.001404494,41,0.05758427,27,0.037921348,0.391853933,6,0.008426966,3,0.004213483,712,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0305_U3,WF0305,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.615548365,0.7,2,0.1,4.615120517,3.190579339,0.995091819,2.476017352,0.911860593,0.080382775,0.058452951,0.138835726,0.014712919,-0.021770335,0.036483254,0.47037,-0.060063519,0.674349144,0.024832701,2.742100394,0.438329605,0.306368072,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,9,0,0,0,0,0,2,0,0,0,0,0,15.51942187,0,0,0,0,0,1,0,9,0,0,0,4.639571613,0.693147181,3.000385947,4.425120773,31,210,179,0.785087719,8,0,4,1.268200132,0,0,13,9,0.039473684,3,0.013157895,1,0.004385965,0.057017544,4,0.01754386,4,0.01754386,12,0.052631579,24,0.105263158,0,0,10,0.043859649,9,0.039473684,0.530701754,4,0.01754386,0,0,228,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0306_U3,WF0306,English,Someone else,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.759651773,0.709923664,41,0.128125,4.860780927,2.782073549,2.413737008,2.906322123,2.533700083,0.146522583,0.031386178,0.177905052,0.020975519,-0.006537463,0.027512982,1,0.664257131,0.572347708,-0.369782543,2.613500526,24.75743141,4.909670527,0,1,1,0,5,0,3,0,11,0,0,0,0,0,0,0,0,30,0,5,0,8,0,6,2,0,0,0,5,263.9441548,0,0,26,2,2,0,5,110,12,2,2,4.453221381,3.433987204,4.198636597,5.514081863,1,2841,2840,0.907348243,134,20,61,1.311516902,12,0.003833866,106,51,0.01629393,24,0.007667732,31,0.009904153,0.033865815,41,0.013099042,0,0,35,0.011182109,71,0.022683706,1,0.000319489,141,0.045047923,60,0.019169329,0.301916933,5,0.001597444,12,0.003833866,3130,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0306_U4,WF0306,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.530628413,0.698795181,31,0.185628743,5.229121309,2.989965915,2.391151547,2.864917559,1.958124377,0.154795886,0.039931299,0.194727185,0.024906367,-0.00789638,0.032802747,0.93945,0.623624204,0.584255533,0.153224415,2.627204068,18.8548453,3.051760982,0,0,0,0,1,0,2,0,16,0,0,0,1,0,0,0,1,28,0,8,0,5,0,6,1,0,0,0,0,150.5777827,0,0,25,3,3,0,5,69,1,4,4,4.719773569,2.63905733,4.400047919,5.429936306,10,1634,1624,0.867521368,71,8,22,1.105582961,13,0.006944444,56,37,0.019764957,4,0.002136752,15,0.008012821,0.02991453,11,0.005876068,1,0.000534188,36,0.019230769,18,0.009615385,1,0.000534188,82,0.043803419,40,0.021367521,0.349358974,0,0,2,0.001068376,1872,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0306_U5,WF0306,English,Someone else,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.746308682,0.876404494,30,0.128205128,4.861401283,3.081500314,2.18951556,3.17917712,1.900277041,0.097209287,0.032423577,0.129632864,0.01969429,-0.008110157,0.027804447,0.86195,0.577703214,0.519861413,-2.130720487,2.539536994,11.73283345,6.412740705,0,3,1,1,0,0,3,1,5,2,0,0,2,0,0,0,0,18,1,2,0,0,0,9,0,0,0,0,3,171.4660265,0,0,10,1,3,0,4,82,0,3,0,5.017789131,2.564949357,4.233460223,5.178207739,57,2127,2070,0.911091549,81,0,27,1.110044069,11,0.004841549,56,34,0.014964789,9,0.003961268,13,0.005721831,0.024647887,34,0.014964789,3,0.001320423,38,0.016725352,175,0.077024648,1,0.000440141,99,0.043573944,46,0.020246479,0.35431338,2,0.000880282,3,0.001320423,2272,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0308_U1,WF0308,Biology,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.566063522,0.720930233,14,0.175,5.170483995,2.662722238,0.480504545,2.312070029,0.501435786,0.104434653,0.040613024,0.145025205,0.016516854,-0.006207865,0.022724719,1,0.662773361,0.683215289,0.809025631,2.704020607,6.104313606,1.966853891,0,0,1,0,0,0,1,0,3,0,0,0,1,0,0,0,0,26,0,3,0,0,0,0,1,0,0,0,3,121.1326802,0,0,0,0,0,0,4,33,0,6,0,4.339901708,2.302585093,4.27620698,6.436766623,72,840,768,0.874715262,38,0,13,1.198832367,0,0,51,26,0.029612756,6,0.006833713,19,0.021640091,0.05808656,16,0.018223235,0,0,41,0.046697039,3,0.003416856,1,0.001138952,52,0.059225513,19,0.021640091,0.300683371,0,0,0,0,878,,Yes,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0308_U2,WF0308,Biology,,,#NULL!,#NULL!,,4.329661276,0.083333333,7,0.24137931,5.490503897,2.795784832,0.668712326,1.90715021,0.862344129,0.074921253,0.051315546,0.126236798,0.006420233,-0.008560311,0.014980545,0.30753,0.428572624,0.719737903,0.411647806,2.536768908,1.618577046,0.329197532,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,0,27.74799459,0,0,0,0,1,2,1,4,0,5,0,3.721669277,1.791759469,3.749831222,5.278225806,2,289,287,0.93485342,11,0,20,1.820507393,0,0,7,2,0.006514658,0,0,5,0.016286645,0.022801303,7,0.022801303,0,0,13,0.042345277,0,0,1,0.003257329,14,0.045602606,5,0.016286645,0.524429967,0,0,0,0,307,,Yes,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0308_U3,WF0308,Biology,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.199629,0.5,8,0.156862745,5.061725954,2.286340877,0.556456225,2.797047938,0.520611893,0.064354839,0.01140681,0.07562724,0.006989247,-0.004637097,0.011626344,0.62715,0.331848894,0.493648668,-0.231735706,2.45369234,2.540226712,0.444084368,0,0,0,0,1,0,0,0,6,0,0,0,0,0,0,0,0,11,0,0,0,0,0,1,0,0,0,0,1,52.97590909,0,0,0,0,5,1,1,14,0,4,0,3.962172789,1.945910149,3.189680361,5.070652174,32,408,376,0.906024096,18,0,19,1.670089298,0,0,5,5,0.012048193,0,0,0,0,0.012048193,4,0.009638554,0,0,19,0.045783133,7,0.01686747,0,0,22,0.053012048,11,0.026506024,0.46746988,0,0,0,0,415,,No,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0308_U4,WF0308,Biology,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,#NULL!,#NULL!,3,0.046153846,3.853415578,1.777250922,0.85671933,2.258188839,0.477095627,0.019087838,0.017759009,0.036711712,0.004307432,-0.004251126,0.008558559,0,0,0.59823053,-5.445588825,2.194201078,18.91676923,6.055440706,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,52,0,6,0,8,0,33,0,0,0,0,1,326.0559959,0,0,30,3,0,0,4,58,2,5,2,5.010635294,2.48490665,3.671260326,3.486666667,3,1661,1658,0.799036145,75,9,7,0.640828533,0,0,15,8,0.003855422,0,0,7,0.003373494,0.007228916,8,0.003855422,0,0,124,0.059759036,15,0.007228916,1,0.000481928,80,0.038554217,11,0.005301205,0.184096386,0,0,0,0,2075,,No,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0308_U5,WF0308,Biology,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.355025868,0.434944238,35,0.153508772,5.040250871,2.790065632,0.811543347,2.550556849,0.488316892,0.052055653,0.02694114,0.078909321,0.008048815,-0.00535412,0.013402935,1,0.224127289,0.616187928,-5.958924548,2.270295416,102.5731163,12.42649007,0,0,0,0,1,0,1,2,13,0,0,0,2,0,0,0,0,124,0,18,0,120,0,1,1,0,0,0,7,516.8547622,0,0,54,1,4,0,9,136,120,0,4,4.183180406,3.988984047,4.00861794,4.326179045,1,3860,3859,0.915539739,164,29,39,1.010836938,0,0,78,37,0.008778173,7,0.001660735,34,0.008066429,0.018505338,35,0.008303677,0,0,241,0.05717675,25,0.005931198,9,0.002135231,191,0.045314353,48,0.0113879,0.207117438,0,0,0,0,4215,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0308_U6,WF0308,Biology,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.425783382,0.5,3,0.166666667,5.121977881,2.289872594,0.480801665,1.639667939,0.477981612,0.082742782,0.015091864,0.097834646,0.0125,-0.009055118,0.021555118,0.65622,0.289852713,0.535889423,0.532188714,2.416398531,3.552216536,1.142534234,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,7,0,1,0,2,0,0,0,0,0,0,1,40.10907227,0,0,0,0,0,0,2,9,0,0,1,4.86753445,0.693147181,3.877674071,5.176923077,22,291,269,0.825153374,7,0,10,1.500714521,0,0,4,2,0.006134969,1,0.003067485,1,0.003067485,0.012269939,3,0.009202454,0,0,12,0.036809816,2,0.006134969,3,0.009202454,13,0.039877301,5,0.015337423,0.463190184,0,0,0,0,326,,No,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0310_U1,WF0310,English,"A parent, brother, sister or other relative",A little,0,1,I completed the assignment on a laptop or desktop computer.,6.540596434,0.666666667,29,0.25,5.525452939,3.036871461,2.550336624,3.170840673,2.448361395,0.087012292,0.056662281,0.143674573,0.011308872,-0.012102957,0.023411829,0.99963,0.660748979,0.675655383,0.219670973,2.833581555,3.034433236,1.557070837,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,7,0,0,0,0,2,102.8863192,0,0,0,0,1,1,4,30,0,3,1,4.412247177,2.397895273,4.184479989,5.319735391,1,878,877,0.863188976,43,5,21,1.335844709,0,0,43,22,0.021653543,4,0.003937008,17,0.016732283,0.042322835,20,0.019685039,1,0.000984252,15,0.01476378,30,0.029527559,0,0,44,0.043307087,31,0.030511811,0.390748031,0,0,3,0.002952756,1016,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0310_U2,WF0310,English,"A parent, brother, sister or other relative",Not at all,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.867255623,0.933333333,25,0.142045455,4.963162444,2.808656757,2.637532016,3.135099161,2.428258192,0.079828427,0.063375108,0.143203535,0.021240337,-0.027389318,0.048629656,0.98423,0.595060746,0.664738563,-0.58609997,2.711275599,9.685099708,4.82061416,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,55,0,0,0,0,0,8,0,0,1,0,4,160.7174938,0,0,0,0,1,0,1,73,0,1,0,5.631928371,1.609437912,3.959667383,5.083810888,5,1525,1520,0.937692782,66,6,29,1.276236355,1,0.000616903,50,29,0.017890191,14,0.008636644,7,0.004318322,0.030845157,29,0.017890191,2,0.001233806,62,0.038247995,124,0.07649599,2,0.001233806,81,0.049969155,49,0.030228254,0.364589759,0,0,2,0.001233806,1621,,Yes,2,Inform/Explore,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0312_U1,WF0312,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.608930901,0.756097561,13,0.139784946,4.947233522,3.06415852,2.792356255,3.53936067,2.546956614,0.062620888,0.058790832,0.12141172,0.011627907,-0.026395349,0.038023256,0.82799,0.328826775,0.616972318,-0.997557808,2.88058486,4.306532184,2.12372265,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,11,0,1,0,1,0,5,0,0,0,0,1,59.19881798,0,0,6,0,0,1,3,34,0,3,0,4.262679877,2.197224577,4.23843386,4.538341158,98,562,464,0.64,39,0,7,1.027560482,0,0,27,19,0.026206897,1,0.00137931,7,0.009655172,0.037241379,8,0.011034483,3,0.004137931,20,0.027586207,73,0.100689655,1,0.00137931,47,0.064827586,16,0.022068966,0.448275862,1,0.00137931,6,0.008275862,725,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0312_U2,WF0312,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.690051305,0.81,35,0.130111524,4.876048291,2.98731669,1.160000031,3.254505862,1.061222495,0.127282947,0.055007591,0.182266219,0.021960117,-0.016196498,0.038156615,0.86194,0.5168093,0.625812868,-2.108047296,3.014332672,11.62567958,9.310289784,0,1,0,0,0,0,4,0,6,1,1,0,2,1,0,0,0,4,0,8,1,7,0,13,0,0,1,1,0,184.8106225,0,0,11,0,0,1,7,88,0,3,1,4.846153655,2.772588722,4.680938119,4.833497053,31,2209,2178,0.93919793,102,0,26,1.086777165,0,0,91,70,0.030185425,8,0.003449763,13,0.005605865,0.039241052,42,0.018111255,44,0.018973696,54,0.023285899,96,0.041397154,7,0.003018542,114,0.04915912,71,0.030616645,0.343682622,0,0,4,0.001724881,2319,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0312_U3,WF0312,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.630795543,0.689655172,6,0.090909091,4.520799946,3.128499173,3.410168157,3.325785949,3.420342607,0.078447935,0.035578149,0.114026083,0.01097973,-0.005743243,0.016722973,0.89804,0.211736566,0.539022823,-0.288122629,3.072750889,2.915361661,1.405702735,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,3,0,0,0,0,0,3,0,0,0,0,0,28.76203637,0,0,0,0,0,0,4,23,0,2,0,3.793239469,2.302585093,3.227148275,4.344594595,49,183,134,0.271255061,28,0,4,0.958906119,0,0,11,7,0.01417004,2,0.004048583,2,0.004048583,0.022267206,7,0.01417004,4,0.008097166,9,0.018218623,58,0.117408907,0,0,34,0.068825911,22,0.044534413,0.493927126,2,0.004048583,1,0.002024291,494,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0313_U1,WF0313,History,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.595302469,0.666666667,20,0.194174757,5.273895348,2.669272753,0.634320725,3.174675496,0.517541332,0.098595803,0.065923535,0.164519338,0.018323864,-0.023380682,0.041704545,0.77988,0.639572955,0.552066445,-0.403245956,2.482940734,4.230168864,1.030942119,0,0,0,0,0,0,0,0,5,0,0,0,1,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,1,78.6568638,0,0,0,0,1,0,5,27,0,3,1,4.290459441,2.48490665,4.090188334,5.172374429,22,881,859,0.886480908,37,0,23,1.393326138,0,0,22,16,0.016511868,3,0.003095975,3,0.003095975,0.022703818,13,0.013415893,0,0,11,0.011351909,22,0.022703818,0,0,42,0.043343653,17,0.01754386,0.444788442,0,0,1,0.001031992,969,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0313_U2,WF0313,History,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.462324095,0.655172414,12,0.127659574,4.857169959,3.254701973,2.298906118,3.154175351,1.981910381,0.121918644,0.04912889,0.171047535,0.019134615,-0.017692308,0.036826923,1,0.619428255,0.587970009,-0.51079953,2.694995985,4.14897505,0.920186038,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,1,0,3,0,0,0,1,0,0,0,0,1,69.88359809,0,0,0,1,1,0,5,21,0,3,0,4.17438727,2.48490665,4.105832437,5.203846154,31,720,689,0.778531073,28,0,23,1.431181975,0,0,25,19,0.021468927,3,0.003389831,3,0.003389831,0.028248588,11,0.012429379,0,0,9,0.010169492,26,0.029378531,0,0,35,0.039548023,16,0.018079096,0.442937853,1,0.001129944,5,0.005649718,885,Yes,Yes,1,Persuade,Annotator1,Final,N/A,N/A
WF0314_U1,WF0314,English,A teacher,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.622054349,0.714285714,8,0.121212121,4.805758233,3.347493049,2.83859338,3.403536071,2.411282379,0.095655701,0.023087746,0.118743447,0.017948718,-0.004059829,0.022008547,0.72073,0.082187528,0.533903382,-0.034776013,2.979654756,2.595614875,2.091002845,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,8,0,0,0,0,0,2,0,0,0,0,1,49.80108412,0,0,0,0,0,0,5,22,0,1,0,3.64631984,2.48490665,3.772666108,4.460869565,10,201,191,0.372319688,32,7,7,1.165696024,0,0,10,6,0.011695906,3,0.005847953,1,0.001949318,0.019493177,15,0.029239766,0,0,14,0.027290448,38,0.074074074,0,0,35,0.068226121,17,0.033138402,0.497076023,0,0,1,0.001949318,513,Unsure,No,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0314_U2,WF0314,English,Someone else,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.678873832,0.805194805,21,0.096774194,4.582660673,2.914407241,3.619381086,3.040828198,3.425948938,0.127156468,0.029240005,0.156382116,0.014142139,-0.007340273,0.021482412,0.9264,0.498561766,0.546006585,-1.206337031,2.874123043,5.123292035,4.142367158,0,0,2,0,0,0,0,1,6,0,0,0,2,0,0,0,0,5,0,0,0,0,0,7,1,0,1,0,0,159.919024,0,0,0,0,0,3,7,62,1,4,0,4.404564848,2.833213344,3.803100029,4.772825306,16,1535,1519,0.985084306,83,8,23,1.201825578,0,0,57,39,0.025291829,13,0.00843061,5,0.003242542,0.036964981,34,0.022049287,0,0,25,0.016212711,141,0.091439689,0,0,85,0.055123217,48,0.031128405,0.326848249,0,0,3,0.001945525,1542,Yes,Unsure,3,Reflect,Annotator1,Final,N/A,N/A
WF0314_U3,WF0314,English,Someone else,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.457867181,0.636363636,9,0.107142857,4.683453104,3.227797562,2.266746745,2.77640686,1.983255479,0.089975113,0.082866034,0.172841147,0.015930707,-0.041576087,0.057506793,0.82869,0.487467435,0.5692549,-0.553196233,2.500610757,3.52091922,1.21045828,0,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,23,0,1,0,1,0,0,0,0,0,0,2,90.58127167,0,0,0,0,1,1,5,23,0,4,0,4.018459865,2.564949357,3.609717715,5.192254495,17,732,715,0.880541872,33,0,15,1.289430776,3,0.003694581,20,17,0.020935961,1,0.001231527,2,0.002463054,0.024630542,13,0.016009852,3,0.003694581,24,0.02955665,24,0.02955665,1,0.001231527,39,0.048029557,14,0.017241379,0.380541872,0,0,0,0,812,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0314_U4,WF0314,English,"A parent, brother, sister or other relative",Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.722031946,0.786666667,22,0.157142857,5.063498784,3.172348752,3.597107639,3.296627539,3.451829114,0.118940522,0.035927937,0.154860243,0.018159408,-0.005484799,0.023644207,0.93304,0.371809421,0.627928785,-1.994023324,3.114826559,8.244803652,2.569766822,0,0,1,0,1,0,1,0,2,1,0,0,1,0,0,0,0,8,0,0,0,0,0,2,0,0,2,0,0,98.23171014,0,0,8,0,1,1,5,60,5,4,0,4.460144414,2.63905733,4.299512755,4.414533443,22,1182,1160,0.859896219,66,7,19,1.178531122,2,0.00148258,50,35,0.025945145,7,0.005189029,8,0.005930319,0.037064492,32,0.023721275,1,0.00074129,18,0.013343217,145,0.107487027,1,0.00074129,82,0.060785767,38,0.028169014,0.337286879,2,0.00148258,4,0.002965159,1349,Yes,Yes,3,Reflect,Annotator1,Final,N/A,N/A
WF0314_U5,WF0314,English,Someone else,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.751022617,0.8125,22,0.171875,5.15256879,3.037000791,0.848189821,2.888861706,0.79732583,0.088625687,0.022300307,0.110925994,0.013978495,-0.002710573,0.016689068,0.95893,0.575539752,0.569690602,0.111383387,2.74501618,8.148218233,4.252212602,0,3,0,0,1,0,1,0,4,0,0,0,2,0,0,0,0,7,0,1,0,0,0,2,0,0,0,0,1,162.9740084,0,0,6,0,0,0,5,55,0,4,0,4.435385103,2.564949357,4.332439012,5.169553327,4,1147,1143,0.917335474,61,7,20,1.231759135,2,0.001605136,33,25,0.020064205,4,0.003210273,4,0.003210273,0.026484751,22,0.017656501,2,0.001605136,21,0.016853933,28,0.02247191,1,0.000802568,71,0.056982343,32,0.025682183,0.353130016,1,0.000802568,0,0,1246,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0314_U6,WF0314,English,A teacher,Somewhat,0,0,I completed the assignment on a laptop or desktop computer.,6.683687388,0.8125,19,0.129251701,4.869468738,3.429435692,3.607661378,3.415382955,3.560888151,0.132777082,0.038713909,0.171490992,0.020259042,-0.004765396,0.025024438,1,0.279955808,0.565444227,-1.322985794,3.017387368,11.20131315,2.406751554,0,0,0,0,0,0,0,0,14,0,0,0,0,0,0,0,0,4,0,1,0,2,0,2,0,0,0,0,0,76.99619212,0,0,10,0,0,0,3,55,0,6,0,4.732292193,2.197224577,3.834599313,4.460861057,33,888,855,0.743478261,45,0,14,1.119714792,6,0.005217391,54,40,0.034782609,10,0.008695652,4,0.003478261,0.046956522,12,0.010434783,0,0,10,0.008695652,87,0.075652174,1,0.000869565,75,0.065217391,20,0.017391304,0.355652174,0,0,8,0.006956522,1150,Yes,Yes,3,Reflect,Annotator1,Final,N/A,N/A
WF0314_U7,WF0314,English,Someone else,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.537253862,0.551724138,9,0.064748201,4.185832316,2.966516168,1.083564328,3.103342478,0.981261224,0.110855753,0.085620956,0.196476709,0.019860627,-0.036084495,0.055945122,0.95378,0.547211884,0.633375707,0.374359703,2.804329265,9.551075854,2.99898226,0,1,0,0,1,0,0,0,5,1,0,0,1,0,0,0,0,8,0,1,0,0,0,2,0,0,0,0,0,112.0554912,0,0,10,0,1,1,6,35,13,3,0,4.12981895,2.890371758,4.532368729,4.986595174,313,921,608,0.47095275,46,0,9,0.901531336,5,0.003872967,66,41,0.031758327,8,0.006196747,17,0.013168087,0.05112316,21,0.01626646,0,0,11,0.008520527,17,0.013168087,1,0.000774593,66,0.05112316,31,0.024012393,0.381874516,1,0.000774593,4,0.003098373,1291,Unsure,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0320_U1,WF0320,English,A tutor,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.442888728,0.566666667,19,0.206521739,5.335236101,2.762339185,1.16352092,2.642520962,1.431155867,0.093453457,0.077595936,0.171033264,0.008145161,-0.015967742,0.024112903,0.88367,0.616859455,0.563593506,0.475202674,2.77854991,4.137173588,1.382879938,0,0,0,0,0,0,0,0,8,0,0,0,1,0,0,0,0,7,0,0,0,0,0,1,0,0,0,0,0,121.4634796,0,0,0,0,0,1,4,20,0,3,2,4.120661871,2.302585093,3.689689015,5.178571429,7,452,445,0.658284024,30,0,13,1.306012396,0,0,35,13,0.019230769,3,0.00443787,19,0.028106509,0.051775148,13,0.019230769,0,0,17,0.025147929,13,0.019230769,2,0.00295858,35,0.051775148,7,0.01035503,0.368343195,0,0,1,0.00147929,676,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0320_U2,WF0320,English,A tutor,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.180487533,0.558139535,25,0.268817204,5.597744709,3.129030645,2.358543188,3.127017811,2.064981386,0.081881336,0.030389074,0.11227041,0.022008253,-0.0065337,0.028541953,1,0.463942911,0.633115673,0.253047928,2.497826144,9.513501763,1.35047898,0,0,3,0,2,0,0,0,2,0,0,0,0,0,0,0,0,38,1,0,0,1,0,2,0,0,0,0,1,109.0251812,0,0,8,1,0,1,8,30,0,4,0,3.623638932,2.944438979,3.523274103,5.311797753,10,686,676,0.800947867,40,0,12,1.18235785,0,0,5,2,0.002369668,0,0,3,0.003554502,0.005924171,14,0.016587678,0,0,50,0.059241706,18,0.021327014,1,0.001184834,53,0.062796209,6,0.007109005,0.375592417,0,0,0,0,844,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0320_U3,WF0320,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.341933767,0.444444444,13,0.232142857,5.451651386,2.97310155,3.029403753,3.096813008,3.174557764,0.06335802,0.045466296,0.108824316,0.01597561,-0.011585366,0.027560976,0.93782,0.363904038,0.515392673,-0.528248318,2.566557233,2.621880021,1.009286516,0,0,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,27,0,0,0,0,0,3,0,0,0,0,0,66.57009274,0,0,0,0,1,0,1,12,0,5,0,4.401829262,1.609437912,3.802479005,4.81127451,112,353,241,0.546485261,9,0,4,1.003042184,0,0,15,15,0.034013605,0,0,0,0,0.034013605,11,0.024943311,0,0,33,0.074829932,27,0.06122449,1,0.002267574,20,0.045351474,22,0.049886621,0.426303855,0,0,4,0.009070295,441,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0324_U1,WF0324,English,A teacher,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.615723334,0.705882353,18,0.193548387,5.270680909,3.425409176,3.353692689,3.423436563,3.288731369,0.088493211,0.045093799,0.133587011,0.021060794,-0.010080645,0.031141439,0.8567,0.267089891,0.575805137,-0.47258391,2.805264429,6.169550653,3.608015001,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1,94.77216401,0,0,6,0,0,1,4,41,0,4,1,4.194692536,2.48490665,3.740298059,4.788944724,10,836,826,0.879659212,47,0,14,1.201655935,2,0.002129925,27,14,0.014909478,6,0.006389776,7,0.007454739,0.028753994,10,0.010649627,4,0.004259851,10,0.010649627,57,0.060702875,1,0.001064963,58,0.061767838,24,0.025559105,0.358892439,0,0,0,0,939,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0327_U1,WF0327,History,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.572092744,0.673913043,19,0.211111111,5.357110246,3.283377389,1.095791534,3.309431093,0.949246987,0.104128988,0.060159274,0.164288261,0.015039954,-0.026141553,0.041181507,1,0.500595152,0.49412654,0.771531267,2.632612327,11.02301638,1.236809201,0,1,0,0,0,0,0,0,4,0,0,0,1,0,0,0,0,8,0,10,0,1,0,2,1,0,0,0,1,125.0677442,0,0,9,1,1,3,6,36,0,0,1,3.861898618,2.890371758,4.327999392,5.168224299,22,707,685,0.673549656,37,0,8,0.947741117,0,0,43,30,0.029498525,7,0.006882989,6,0.005899705,0.042281219,12,0.01179941,0,0,18,0.017699115,36,0.03539823,0,0,54,0.053097345,23,0.022615536,0.375614553,0,0,6,0.005899705,1017,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0329_U1,WF0329,English,A tutor,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.510196601,0.666666667,5,0.0625,4.151039906,3.340220622,3.520566511,3.423561874,3.372850267,0.125164155,0.035505312,0.160669467,0.025600962,-0.009655449,0.03525641,0.72579,0.404578694,0.684841858,-0.588170931,2.732108002,1.629733008,3.419760165,0,1,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,3,0,0,0,0,0,6,0,0,0,0,0,52.69853401,0,0,0,0,0,3,4,22,0,1,0,3.933458286,2.48490665,4.427337096,5.057096248,22,594,572,0.818311874,32,0,12,1.259292347,0,0,36,28,0.040057225,3,0.004291845,5,0.007153076,0.051502146,15,0.021459227,7,0.010014306,13,0.018597997,45,0.064377682,0,0,35,0.050071531,27,0.038626609,0.440629471,2,0.00286123,5,0.007153076,699,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0331_U1,WF0331,English,Someone else,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.796403826,0.868217054,20,0.081967213,4.418445507,2.791087413,1.077588737,3.087464349,1.000745623,0.10454028,0.038499979,0.143024891,0.014454476,-0.006857472,0.021311948,1,0.598121513,0.615857259,-0.617225601,2.708235839,27.09344417,5.372944342,0,2,0,0,0,0,3,0,13,3,0,0,2,0,0,0,4,30,4,9,0,4,0,10,0,0,0,1,6,278.1442798,0,0,28,1,0,0,5,118,0,4,2,5.289819826,2.564949357,4.324373281,5.170287044,2,2607,2605,0.88816911,139,13,27,1.008838183,4,0.001363791,125,91,0.031026253,12,0.004091374,22,0.007500852,0.042618479,49,0.016706444,0,0,64,0.021820661,94,0.032049096,1,0.000340948,142,0.048414593,55,0.018752131,0.281281964,2,0.000681896,1,0.000340948,2933,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0331_U2,WF0331,English,A tutor,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.756421554,0.834645669,21,0.081081081,4.407707552,2.792132293,3.367665458,3.258884978,3.179723341,0.111506814,0.034732918,0.146239731,0.015286323,-0.009133933,0.024420256,1,0.442967192,0.526798553,-2.911693965,2.834269045,23.6106635,5.983106443,0,1,0,0,0,0,0,0,13,0,0,0,2,0,0,0,0,9,1,10,0,1,0,5,6,0,0,0,2,229.6537274,0,0,36,1,2,0,5,115,0,4,3,5.083313673,2.564949357,3.845506554,4.753934192,23,2178,2155,0.890495868,108,0,16,0.88147426,6,0.002479339,106,67,0.02768595,22,0.009090909,17,0.007024793,0.043801653,49,0.020247934,12,0.004958678,36,0.014876033,220,0.090909091,1,0.000413223,139,0.057438017,54,0.02231405,0.253719008,2,0.000826446,12,0.004958678,2420,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0334_U1,WF0334,Sociology,"A parent, brother, sister or other relative",A lot,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.596457966,0.660714286,14,0.102189781,4.636569827,3.297309476,3.029110493,3.236976606,2.957979077,0.135672786,0.03121447,0.166878643,0.026248923,-0.006050818,0.032299742,0.85685,0.400979477,0.566707705,-1.132104934,2.760987271,6.077200864,5.268352631,0,0,0,1,1,0,1,0,4,1,0,0,3,0,0,0,0,5,0,2,0,0,0,5,1,0,0,0,1,136.1675603,0,0,0,0,1,1,4,44,0,5,2,4.558253266,2.48490665,4.124288016,4.882969432,50,1025,975,0.767716535,47,4,12,1.019067202,0,0,55,33,0.025984252,13,0.01023622,9,0.007086614,0.043307087,27,0.021259843,4,0.003149606,27,0.021259843,50,0.039370079,0,0,60,0.047244094,36,0.028346457,0.351968504,8,0.006299213,5,0.003937008,1270,,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0334_U2,WF0334,Sociology,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.752395238,0.8,34,0.261538462,5.570397591,3.217418953,2.672453052,3.214813228,2.37529594,0.100087869,0.034432078,0.134486192,0.010168776,-0.004767932,0.014936709,0.71443,0.396770649,0.61438861,-0.967418182,2.890982767,4.087059259,2.003925441,0,0,1,1,2,0,1,0,10,0,0,0,2,0,0,0,0,4,0,0,0,0,1,3,1,0,0,0,0,116.5955626,0,0,0,0,5,1,4,47,0,3,0,4.58156032,2.48490665,3.988310254,4.719283276,34,1258,1224,0.96912114,55,0,21,1.246180336,0,0,52,32,0.0253365,7,0.005542359,13,0.010292953,0.041171813,23,0.01821061,9,0.007125891,25,0.019794141,27,0.021377672,0,0,60,0.047505938,20,0.015835313,0.392715756,3,0.002375297,6,0.004750594,1263,,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0335_U1,WF0335,English,No one helped me,Somewhat,0,1,I completed the assignment on a tablet (such as an iPad).,6.567439301,0.697674419,17,0.108974359,4.700247238,3.325903314,3.113331619,3.323868977,2.335358867,0.090923774,0.042565803,0.133489577,0.01835443,-0.012109705,0.030464135,1,0.362011679,0.581860751,-1.734080266,2.821414399,16.84796915,3.875281828,0,2,4,1,0,0,1,0,4,1,0,0,1,0,0,0,0,13,0,4,0,2,0,6,0,0,2,0,3,130.1989984,0,0,25,0,3,0,4,67,0,13,2,4.675374445,2.397895273,3.959955272,4.769491525,52,1301,1249,0.908363636,79,0,14,1.048512426,2,0.001454545,46,34,0.024727273,5,0.003636364,7,0.005090909,0.033454545,20,0.014545455,2,0.001454545,42,0.030545455,118,0.085818182,1,0.000727273,96,0.069818182,30,0.021818182,0.333090909,1,0.000727273,4,0.002909091,1375,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0335_U2,WF0335,English,No one helped me,Somewhat,1,1,I completed the assignment on a tablet (such as an iPad).,6.645699175,0.76433121,24,0.104803493,4.661583538,2.945172153,0.80024067,3.019629742,0.555983639,0.12302964,0.04582148,0.168808302,0.018217205,-0.009118334,0.027335539,1,0.486649046,0.576857731,-0.003960145,2.850478702,26.43004271,7.231797154,1,7,4,0,5,0,3,2,22,5,0,1,3,0,0,0,0,33,0,12,0,2,0,9,1,0,2,2,1,246.1611509,0,4,35,1,1,1,5,140,0,2,9,5.132262782,2.708050201,4.272326776,5.062967336,86,2598,2512,0.859097127,138,0,28,1.024318296,9,0.003077975,120,75,0.025649795,16,0.005471956,29,0.009917921,0.041039672,46,0.015731874,0,0,80,0.027359781,84,0.02872777,9,0.003077975,161,0.05506156,71,0.024281806,0.260259918,0,0,3,0.001025992,2924,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0336_U1,WF0336,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",5.928379515,0.333333333,3,0.078947368,4.381368523,3.108577509,2.971960398,3.02633879,3.223973735,0.104463119,0.084977124,0.189401027,0.019607843,-0.028431373,0.048039216,0.70121,0.431060462,0.548868347,-0.208409785,2.974705606,1.756730729,0.276545031,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.61497689,0,0,0,0,1,2,0,8,0,2,0,3.931825633,1.609437912,4.690203525,4.698039216,13,70,57,0.207272727,2,0,3,1.07587861,0,0,18,14,0.050909091,0,0,4,0.014545455,0.065454545,9,0.032727273,1,0.003636364,0,0,19,0.069090909,0,0,14,0.050909091,7,0.025454545,0.567272727,0,0,3,0.010909091,275,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0336_U2,WF0336,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.575658531,0.720930233,14,0.123893805,4.827463819,3.255854,3.664434546,3.45333384,3.512932372,0.093382382,0.052529259,0.145911641,0.013852163,-0.018449519,0.032301683,0.75891,0.374144549,0.658494886,-1.015353185,3.005636313,4.024766691,2.568831345,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4,1,0,0,0,0,60.17731993,0,0,0,0,0,1,4,34,0,3,1,4.237723145,2.48490665,4.609839724,4.6377858,92,907,815,0.868869936,41,0,8,0.979037512,0,0,25,15,0.015991471,3,0.003198294,7,0.007462687,0.026652452,20,0.021321962,3,0.003198294,7,0.007462687,95,0.101279318,0,0,48,0.051172708,26,0.02771855,0.430703625,4,0.004264392,2,0.002132196,938,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0336_U3,WF0336,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.49742241,0.6,17,0.191011236,5.257553891,3.224561147,1.214143697,3.459799891,1.182449826,0.087789846,0.045582423,0.133372269,0.012093023,-0.015775194,0.027868217,0.70696,0.44434366,0.639102473,-0.783477393,2.701978535,2.402942897,1.286133387,0,0,0,0,0,0,0,0,1,2,1,0,0,0,0,0,0,30,0,0,0,0,0,0,0,0,2,0,0,60.97864793,0,0,0,0,1,3,4,22,0,1,0,3.968718349,2.48490665,4.268581208,4.803149606,14,625,611,0.86299435,29,4,9,1.13709651,0,0,26,19,0.026836158,3,0.004237288,4,0.005649718,0.036723164,13,0.018361582,2,0.002824859,30,0.042372881,64,0.09039548,0,0,34,0.048022599,14,0.019774011,0.426553672,5,0.007062147,4,0.005649718,708,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0339_U1,WF0339,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.333250269,0.535714286,13,0.166666667,5.121977881,3.336775555,3.632080824,3.496267173,3.604865024,0.135734709,0.053075339,0.188810049,0.029494382,-0.022565543,0.052059925,0.90336,0.206935276,0.493339623,-1.015136077,2.840482905,1.547366017,4.229364502,0,2,1,0,0,0,1,0,1,3,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,2,36.61845006,1,0,0,0,0,5,3,16,3,1,0,3.970291914,2.302585093,3.819887176,4.301886792,25,126,101,0.166942149,31,4,4,0.88147426,0,0,22,13,0.021487603,5,0.008264463,4,0.00661157,0.036363636,7,0.011570248,3,0.004958678,15,0.024793388,44,0.072727273,0,0,32,0.052892562,17,0.028099174,0.469421488,1,0.001652893,0,0,605,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0339_U2,WF0339,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.647014371,0.648351648,20,0.133333333,4.900324273,2.905783805,0.969831188,2.926539556,0.864172537,0.096294241,0.067659363,0.163953604,0.01226869,-0.013582531,0.025851221,1,0.523884266,0.559834372,-0.961646346,2.787619736,21.04830488,2.815535441,0,0,2,0,0,0,0,0,4,1,0,0,4,0,0,0,0,17,0,4,0,0,0,7,0,0,0,0,0,194.3668533,0,0,24,0,1,2,4,61,21,3,0,4.717754547,2.48490665,4.559789502,5.108711839,6,1377,1371,0.89025974,95,7,11,0.910776816,5,0.003246753,56,33,0.021428571,8,0.005194805,15,0.00974026,0.036363636,28,0.018181818,0,0,34,0.022077922,31,0.02012987,2,0.001298701,99,0.064285714,33,0.021428571,0.343506494,1,0.000649351,2,0.001298701,1540,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0339_U3,WF0339,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.710950396,0.860465116,30,0.220588235,5.400820864,3.292251746,2.435166061,2.868245522,1.920587547,0.081872186,0.067443944,0.149316129,0.009966639,-0.017097581,0.02706422,1,0.474522244,0.524199898,-0.213254201,2.656655505,24.78487024,4.401007198,0,0,0,0,1,0,1,0,5,0,1,0,3,0,0,0,2,31,0,4,0,2,0,6,1,0,0,0,2,136.8722064,0,0,33,0,1,1,4,78,0,3,0,4.595961247,2.48490665,4.111782281,5.134566863,5,997,992,0.696140351,91,6,21,1.196917587,9,0.006315789,42,34,0.023859649,5,0.003508772,3,0.002105263,0.029473684,17,0.011929825,3,0.002105263,39,0.027368421,26,0.018245614,1,0.000701754,94,0.065964912,19,0.013333333,0.391578947,0,0,0,0,1425,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0341_U1,WF0341,Criminology,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.775732094,0.863247863,23,0.119170984,4.788915599,2.862905144,2.44922891,2.800895042,1.965724124,0.089906956,0.092597377,0.182498499,0.009845391,-0.040300467,0.050145858,1,0.585492611,0.598163479,-0.871048264,2.84541808,26.87128875,4.712911676,0,1,0,0,2,0,0,0,12,1,0,0,0,0,0,0,0,38,0,1,0,9,0,5,0,0,0,1,5,200.8168894,0,0,21,0,5,2,6,106,1,2,0,4.489227561,2.944438979,4.423349176,4.983451537,30,1490,1460,0.749102104,120,0,25,1.140730815,3,0.001539251,72,52,0.026680349,8,0.004104669,12,0.006157004,0.036942022,21,0.010774756,6,0.003078502,53,0.027193433,43,0.022062596,6,0.003078502,138,0.070805541,27,0.013853258,0.357106208,1,0.000513084,0,0,1949,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0342_U2,WF0342,English,Someone else,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.568330863,0.75,15,0.100671141,4.621743496,3.062116083,2.133833404,3.335857226,1.807862146,0.13998604,0.058889699,0.198867235,0.037521259,-0.01704932,0.054570578,1,0.50912921,0.53391279,-1.253666718,2.764929137,12.12895401,1.849744041,0,0,1,0,1,0,6,4,10,7,0,0,1,0,0,0,1,2,10,0,0,1,1,3,0,0,0,3,0,105.1399003,0,6,9,0,1,2,8,45,0,1,0,4.123733021,2.944438979,4.228246464,4.983816014,20,1240,1220,0.948678072,64,0,8,0.858587711,0,0,62,38,0.029548989,4,0.00311042,20,0.0155521,0.048211509,19,0.014774495,15,0.011664075,55,0.042768274,66,0.051321928,0,0,69,0.053654743,33,0.025660964,0.33125972,2,0.00155521,7,0.005443235,1286,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0344_U1,WF0344,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.611307874,0.685714286,5,0.086206897,4.468283417,2.530285476,2.479517504,3.277888798,2.113948007,0.095189117,0.059566493,0.154755611,0.030518018,-0.038626126,0.069144144,0.93318,0.179249709,0.538390944,-0.143167073,2.92102823,3.597796221,1.382172155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,11,0,0,0,1,0,3,0,0,0,0,0,48.59084676,0,0,0,0,0,0,5,24,4,0,2,3.880417666,2.197224577,2.769943562,4.355504587,50,412,362,0.728370221,27,4,5,1.043769348,0,0,26,21,0.042253521,4,0.00804829,1,0.002012072,0.052313883,10,0.020120724,7,0.014084507,14,0.028169014,66,0.132796781,0,0,38,0.076458753,17,0.034205231,0.406438632,3,0.006036217,3,0.006036217,497,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0346_U1,WF0346,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.787504674,0.845238095,13,0.059090909,4.095858567,3.113174596,3.574694226,3.30679277,3.33149484,0.115539314,0.047725091,0.163251936,0.028756234,-0.010208853,0.038965087,0.9356,0.400726311,0.621624545,-1.829336854,3.201872992,8.510907257,5.081966458,0,0,0,0,1,0,2,0,4,2,1,0,2,0,0,0,0,7,0,1,0,2,0,2,0,0,0,0,2,153.6668301,0,4,10,0,2,0,6,76,0,1,1,4.658394947,2.708050201,3.959063404,4.490518331,47,1652,1605,0.903716216,82,0,15,0.975245456,1,0.000563063,82,52,0.029279279,12,0.006756757,18,0.010135135,0.046171171,38,0.021396396,11,0.006193694,16,0.009009009,196,0.11036036,1,0.000563063,98,0.05518018,46,0.025900901,0.326013514,10,0.005630631,12,0.006756757,1776,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0350_U1,WF0350,Criminology,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.714104259,0.827956989,31,0.254098361,5.541649199,2.831902494,0.547156082,2.863718833,0.551619108,0.077433156,0.051949417,0.129382573,0.01147351,-0.01807947,0.02955298,1,0.726338105,0.665869821,2.512551899,2.486805069,23.90155574,1.863998218,0,0,1,0,1,0,1,0,9,0,0,0,1,0,0,1,0,17,0,8,0,5,0,0,0,0,0,0,3,189.1677496,0,0,17,0,2,0,7,80,0,1,5,4.728068322,2.564949357,3.915328488,5.646258503,7,1231,1224,0.675124104,95,17,39,1.352400715,20,0.01103144,50,25,0.0137893,5,0.00275786,20,0.01103144,0.027578599,17,0.009376724,0,0,10,0.00551572,7,0.003861004,9,0.004964148,109,0.060121346,22,0.012134584,0.32322118,1,0.000551572,5,0.00275786,1813,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0350_U2,WF0350,Criminology,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.765586622,0.868217054,13,0.077844311,4.367475166,2.952406267,0.532290117,2.796443701,0.506994316,0.084509196,0.045069628,0.129578824,0.012028542,-0.013888889,0.025917431,1,0.888983431,0.61710749,2.69526385,2.414334786,36.91989108,3.371693662,0,0,0,0,0,0,1,1,18,0,0,0,0,0,0,0,1,44,1,9,0,6,0,0,1,0,0,0,4,273.5018335,0,0,33,0,1,1,9,115,0,4,0,4.619799496,2.944438979,4.39631321,6.354771784,1,1749,1748,0.71875,97,23,42,1.261732292,34,0.013980263,55,36,0.014802632,4,0.001644737,15,0.006167763,0.022615132,21,0.008634868,0,0,31,0.012746711,13,0.005345395,10,0.004111842,152,0.0625,39,0.016036184,0.310855263,1,0.000411184,5,0.002055921,2432,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0352_U1,WF0352,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.751022617,0.815384615,22,0.171875,5.15256879,3.037000791,0.848189821,2.888861706,0.79732583,0.088625687,0.022300307,0.110925994,0.013978495,-0.002710573,0.016689068,0.95893,0.575954012,0.569690602,0.111383387,2.751920016,8.824895708,4.266122666,0,3,0,0,1,0,1,0,4,0,0,0,2,0,0,0,0,7,0,1,0,1,0,2,0,0,0,0,1,162.9740084,0,0,7,0,0,0,5,56,0,4,0,4.435385103,2.564949357,4.332439012,5.169553327,4,1147,1143,0.917335474,61,7,20,1.231759135,2,0.001605136,33,25,0.020064205,4,0.003210273,4,0.003210273,0.026484751,22,0.017656501,2,0.001605136,21,0.016853933,28,0.02247191,1,0.000802568,71,0.056982343,32,0.025682183,0.353130016,1,0.000802568,0,0,1246,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0353_U1,WF0353,English,Someone else,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.461843897,0.576923077,8,0.133333333,4.900324273,3.059713915,0.963140709,2.433253251,1.018221077,0.091768628,0.01109288,0.102861508,0.006324582,-0.000716,0.007040573,0.62131,0.619277507,0.620418771,-0.494559374,2.786609398,5.263091696,0.547279797,0,0,0,0,0,0,0,0,3,1,0,0,1,0,0,0,0,0,0,2,0,1,0,1,0,0,0,0,0,41.40264845,0,0,0,0,0,0,4,19,0,3,0,3.840646343,2.197224577,3.368043216,5.520286396,19,430,411,0.867088608,23,0,8,1.252310118,0,0,11,8,0.016877637,1,0.002109705,2,0.004219409,0.023206751,9,0.018987342,0,0,8,0.016877637,27,0.056962025,6,0.012658228,32,0.067510549,10,0.021097046,0.474683544,0,0,1,0.002109705,474,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0354_U1,WF0354,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",3.899689191,0.181818182,12,0.272727273,5.612132256,3.135597985,0.650829198,2.99258822,0.524961099,0.067173686,0.040664757,0.107838443,0.015350877,-0.009398496,0.024749373,0.54836,0.396488817,0.514494172,0.219945294,2.478583947,5.102431237,1.048199706,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,17,0,2,0,0,0,1,0,0,0,0,0,47.06990948,0,0,0,0,1,1,1,7,0,13,0,4.189654742,1.791759469,3.891634548,5.101010101,184,306,122,0.281105991,7,0,5,1.097629905,0,0,6,5,0.011520737,1,0.002304147,0,0,0.013824885,7,0.016129032,2,0.004608295,17,0.039170507,18,0.041474654,1,0.002304147,23,0.052995392,15,0.034562212,0.51843318,0,0,0,0,434,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0354_U3,WF0354,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.541473901,0.7,10,0.12345679,4.823958588,3.067546417,1.111922944,3.436436402,0.97182745,0.070314874,0.062415718,0.132730592,0.020385588,-0.029614412,0.05,0.87263,0.386562717,0.523172436,-0.80755386,2.810029516,7.072835245,1.066824494,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,16,0,0,0,0,0,2,0,0,0,0,1,87.2448007,0,0,0,0,0,1,4,31,0,3,1,4.17438727,2.48490665,3.586810014,4.985897436,20,450,430,0.486425339,20,5,9,1.048480472,0,0,29,23,0.0260181,2,0.002262443,4,0.004524887,0.03280543,14,0.015837104,4,0.004524887,17,0.019230769,77,0.087104072,1,0.001131222,45,0.050904977,22,0.024886878,0.366515837,1,0.001131222,4,0.004524887,884,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0355_U1,WF0355,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.690294557,0.771428571,24,0.15483871,5.04882156,3.064705363,1.022505679,3.098605654,0.921242486,0.120254897,0.05279486,0.173049756,0.017094181,-0.011581164,0.028675345,0.92599,0.472363524,0.62585718,0.741294462,2.959741945,14.27467835,2.190420852,0,0,0,0,0,0,0,1,9,1,0,0,0,0,0,0,0,17,0,3,0,5,0,6,2,0,0,0,0,156.220447,0,0,18,0,1,0,4,60,0,5,1,4.602859827,2.564949357,4.229052902,5.016962221,3,1218,1215,0.831622177,69,6,26,1.274066132,4,0.002737851,68,37,0.02532512,16,0.010951403,15,0.01026694,0.046543463,28,0.019164956,0,0,28,0.019164956,17,0.011635866,1,0.000684463,71,0.048596851,36,0.024640657,0.368925394,1,0.000684463,0,0,1461,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0355_U2,WF0355,English,"A parent, brother, sister or other relative",Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.746716267,0.849056604,28,0.09929078,4.608073768,2.909742911,2.590202399,3.149250626,2.460182041,0.09307767,0.034669734,0.127742945,0.014054837,-0.009228712,0.023283549,0.95323,0.532756835,0.652218479,-2.011723559,2.833784675,11.37316947,5.621902107,0,0,0,0,3,0,2,0,7,1,0,0,2,0,0,0,0,6,0,0,0,0,0,4,1,0,0,1,1,227.4881228,0,0,0,0,6,1,6,93,0,6,0,4.937168142,2.772588722,4.338282143,4.872197309,1,2348,2347,0.935059761,114,10,21,0.971578908,8,0.003187251,84,56,0.022310757,19,0.007569721,9,0.003585657,0.033466135,44,0.01752988,0,0,22,0.00876494,177,0.070517928,1,0.000398406,116,0.046215139,70,0.027888446,0.299601594,1,0.000398406,5,0.001992032,2510,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0355_U3,WF0355,English,"A parent, brother, sister or other relative",Somewhat,0,1,I completed the assignment on a tablet (such as an iPad).,6.747282902,0.782258065,30,0.109090909,4.701306471,2.679286405,0.882885975,3.047118888,0.890020843,0.105024364,0.036730468,0.141743967,0.009914886,-0.006972112,0.016886997,0.9697,0.59939725,0.571588729,-1.051484788,2.725441691,18.74593209,5.550889232,0,0,0,0,0,0,0,0,16,4,0,0,5,0,0,0,0,20,0,1,0,0,0,13,1,0,0,0,1,269.0171601,0,0,10,0,3,0,7,101,12,4,0,4.963580465,2.944438979,4.355521655,5.246414123,12,2305,2293,0.755518946,131,13,34,1.086453654,7,0.002306425,125,90,0.029654036,24,0.007907743,11,0.003624382,0.041186161,66,0.021746293,1,0.000329489,48,0.015815486,84,0.0276771,1,0.000329489,136,0.044810544,86,0.028336079,0.271828666,5,0.001647446,4,0.001317957,3035,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0357_U2,WF0357,English,No one helped me,A lot,0,0,I completed the assignment on a laptop or desktop computer.,6.525691628,0.558139535,8,0.08988764,4.509624023,3.077477602,1.0077009,3.490514246,1.021349237,0.062063097,0.062382345,0.124445442,0.023250729,-0.024635569,0.047886297,0.81704,0.242543147,0.569603065,-0.597098822,2.941225879,7.439735151,1.706343112,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,11,1,6,0,3,0,8,0,0,0,0,0,63.18313768,0,0,9,0,0,2,3,31,0,4,3,4.433788569,2.079441542,3.327850012,4.287833828,137,721,584,0.784946237,37,0,18,1.40128934,0,0,35,24,0.032258065,5,0.00672043,6,0.008064516,0.047043011,15,0.02016129,1,0.001344086,38,0.051075269,75,0.100806452,0,0,48,0.064516129,23,0.030913978,0.369623656,11,0.014784946,2,0.002688172,744,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0357_U3,WF0357,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.651861294,0.742424242,9,0.090909091,4.520799946,3.16496297,1.567568964,3.387624019,1.003990644,0.160032054,0.058685952,0.218697429,0.032921811,-0.014429012,0.047350823,1,0.360254661,0.691198967,-0.124913575,3.188519245,15.16923364,3.26917388,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,4,0,1,0,4,0,0,0,0,1,109.4378065,0,0,15,0,1,2,6,55,0,2,1,4.036840068,2.833213344,3.79043486,4.667705088,69,782,713,0.649362477,62,0,8,0.918343592,0,0,62,48,0.043715847,9,0.008196721,5,0.004553734,0.056466302,23,0.020947177,3,0.00273224,9,0.008196721,48,0.043715847,1,0.000910747,75,0.068306011,34,0.030965392,0.336065574,4,0.003642987,2,0.001821494,1098,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0358_U1,WF0358,English,Someone else,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.761928434,0.853658537,30,0.106007067,4.67289488,2.69860025,3.291521519,3.022534108,3.184928218,0.093290727,0.074697491,0.167988218,0.012295345,-0.014743178,0.027038523,1,0.734311969,0.57581213,3.16673123,2.584995975,38.22786247,7.866073558,0,12,5,0,3,0,11,2,29,1,1,0,1,0,0,0,0,54,2,9,0,6,0,11,0,0,0,0,8,294.7386194,0,0,32,1,1,0,8,148,4,4,0,4.642399528,3.36729583,4.674258555,5.969767442,3,2762,2759,0.768095768,179,21,56,1.219851633,13,0.003619154,119,73,0.02032294,18,0.005011136,28,0.0077951,0.033129176,51,0.014198218,18,0.005011136,79,0.021993318,89,0.024777283,2,0.000556793,183,0.050946548,91,0.025334076,0.289532294,0,0,5,0.001391982,3592,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0358_U2,WF0358,English,Someone else,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.784408282,0.879120879,6,0.031413613,3.478578475,2.803631057,2.987271282,2.987586898,2.905749922,0.093963778,0.07372039,0.167678268,0.01160767,-0.013731563,0.025339233,0.98248,0.510850827,0.593913736,1.494044144,2.506266879,18.76186261,5.835953856,0,6,2,1,1,0,1,0,23,2,0,0,1,0,0,0,0,29,0,4,0,1,0,9,0,0,0,0,1,190.7953632,0,0,18,1,1,0,4,83,0,4,0,4.995367822,2.397895273,4.439368402,5.235076923,4,969,965,0.495125705,84,9,33,1.253622915,4,0.002052335,80,39,0.020010262,21,0.010774756,20,0.010261673,0.041046691,42,0.021549513,7,0.003591585,58,0.029758851,35,0.017957927,3,0.001539251,99,0.05079528,85,0.043612109,0.312467932,0,0,6,0.003078502,1949,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0358_U3,WF0358,English,,,#NULL!,#NULL!,,6.761492567,0.826086957,22,0.082089552,4.419918969,2.823479454,3.353246822,3.210303884,3.234341998,0.085221554,0.038760097,0.123981651,0.020018365,-0.012855831,0.032874197,0.89746,0.514923163,0.528277702,-3.339840772,2.770366308,12.1150691,8.271145901,0,4,2,0,1,0,3,0,12,2,0,0,4,0,0,0,0,8,0,6,0,1,0,1,1,0,0,2,1,196.5570624,1,0,9,0,2,0,7,99,5,2,2,4.725056272,2.944438979,4.334956259,5.022875817,1,2461,2460,0.931465354,120,17,34,1.142198917,24,0.009087467,55,42,0.015903067,7,0.002650511,6,0.002271867,0.020825445,39,0.014767134,9,0.0034078,43,0.016281711,229,0.08670958,1,0.000378644,131,0.049602423,67,0.025369178,0.287769784,0,0,3,0.001135933,2641,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0359_U1,WF0359,English,,,#NULL!,#NULL!,,6.786844785,0.87804878,34,0.142857143,4.968820744,2.975465034,3.447291945,3.097647576,3.266959154,0.082216693,0.030782943,0.112990215,0.014107395,-0.010115403,0.024222798,1,0.589330746,0.506631885,-0.782042258,2.714485213,21.72713407,5.64605379,0,0,1,2,4,0,1,1,10,1,0,0,4,0,0,0,0,11,0,14,2,0,0,2,0,0,0,0,1,197.1139644,0,0,29,1,5,0,6,113,0,3,1,4.861264837,2.772588722,3.970517187,5.206579584,68,2345,2277,0.921489276,129,0,32,1.144581137,13,0.005261028,59,40,0.016187778,5,0.002023472,14,0.005665722,0.023876973,41,0.016592473,4,0.001618778,59,0.023876973,166,0.06717928,1,0.000404694,138,0.055847835,30,0.012140834,0.303520842,1,0.000404694,6,0.002428167,2471,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0359_U2,WF0359,English,,,#NULL!,#NULL!,,6.100551789,0.5,11,0.314285714,5.753479257,2.764039903,1.057990942,2.277817975,1.07202872,0.099308682,0.040953539,0.140262221,0.027090592,-0.015505226,0.042595819,0.29347,0.501776974,0.576497537,-0.48149159,2.40530192,2.68592636,0.972761774,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,27.15421219,0,0,0,0,0,1,3,9,0,1,0,3.688879454,1.945910149,4.097340135,5.546428571,98,295,197,0.581120944,10,0,5,1.197260223,0,0,9,9,0.026548673,0,0,0,0,0.026548673,5,0.014749263,0,0,6,0.017699115,12,0.03539823,1,0.002949853,20,0.05899705,8,0.02359882,0.566371681,1,0.002949853,2,0.005899705,339,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0364_U1,WF0364,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.648517154,0.74829932,58,0.19269103,5.26626426,2.675447308,1.997175705,2.939763487,1.920140966,0.136123369,0.025308105,0.161427911,0.02063591,-0.00412362,0.02475953,1,0.617436293,0.657647085,-0.505584295,2.70890186,35.20638213,6.495776823,0,0,0,0,1,1,2,0,15,3,0,0,3,0,0,0,0,37,0,21,0,18,0,13,0,0,0,0,9,277.8214617,0,0,48,4,1,3,5,126,6,2,5,4.814399196,3.091042453,4.466236545,5.35840708,1,2376,2375,0.76268465,81,8,49,1.2236358,9,0.002890173,143,105,0.03371869,19,0.006101477,19,0.006101477,0.045921644,54,0.01734104,1,0.00032113,41,0.013166346,73,0.023442518,1,0.00032113,135,0.043352601,62,0.019910083,0.280667951,0,0,6,0.001926782,3114,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0364_U2,WF0364,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.820102286,0.904347826,31,0.139013453,4.94173851,2.754399149,3.203744347,3.150957474,2.755990329,0.093652349,0.016635453,0.110287803,0.016957136,-0.002402261,0.019359397,0.81825,0.603099784,0.642299235,-3.148218151,2.714224569,21.38319618,7.678368557,0,2,0,1,1,0,0,0,10,0,0,0,4,0,0,0,1,15,0,7,1,8,0,9,0,0,1,0,1,175.0138388,0,0,25,0,5,1,4,108,1,1,0,5.004425577,2.63905733,4.40157862,5.062769526,2,2151,2149,0.891331398,90,8,27,1.086312581,9,0.003732891,74,53,0.02198258,6,0.002488594,15,0.006221485,0.030692659,40,0.016590626,1,0.000414766,40,0.016590626,173,0.071754459,1,0.000414766,113,0.046868519,58,0.024056408,0.316051431,1,0.000414766,6,0.002488594,2411,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0364_U3,WF0364,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.719667321,0.85,15,0.112781955,4.73428394,2.879941618,1.186918084,3.013509555,1.10424374,0.130138744,0.043863486,0.174002229,0.023950796,-0.007308249,0.031259045,0.80249,0.512641701,0.681343503,-0.670524492,2.878682883,14.30027953,1.919226316,0,0,2,0,0,0,0,0,2,1,0,0,1,0,0,0,0,25,0,9,0,1,0,11,0,0,1,1,1,124.268603,0,0,19,0,0,1,4,71,0,4,0,4.727387819,2.48490665,4.406142679,4.966814159,26,1380,1354,0.871299871,59,0,25,1.232678936,6,0.003861004,94,67,0.043114543,12,0.007722008,15,0.00965251,0.06048906,23,0.014800515,1,0.000643501,35,0.022522523,41,0.026383526,1,0.000643501,85,0.054697555,42,0.027027027,0.359073359,0,0,7,0.004504505,1554,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0365_U1,WF0365,English,No one helped me,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.304525588,0.526315789,21,0.223404255,5.413449137,2.959897587,1.072772208,3.034938522,1.012703203,0.090585135,0.053565504,0.144150638,0.017819615,-0.011295972,0.029115587,0.569,0.516741256,0.602540558,-0.299252968,2.660069629,1.023432855,1.318302564,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,4,0,0,0,0,0,60.04224197,0,0,0,0,0,3,4,12,0,0,0,4.041295341,2.302585093,4.308536861,4.913884007,14,589,575,0.928917609,21,0,19,1.500986218,0,0,29,18,0.02907916,2,0.003231018,9,0.01453958,0.046849758,13,0.021001616,4,0.006462036,8,0.012924071,21,0.033925687,0,0,24,0.038772213,16,0.025848142,0.47819063,0,0,2,0.003231018,619,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0365_U2,WF0365,English,Someone else,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.642720856,0.69047619,13,0.117117117,4.77167665,3.357610499,2.97510684,3.487873343,2.240442669,0.08803546,0.044446193,0.132481653,0.013411162,-0.014692483,0.028103645,0.7941,0.330225644,0.624615524,-0.759280298,2.778348179,7.519241767,2.122211446,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,39,2,0,0,1,0,5,0,0,1,0,1,85.2881068,0,0,9,0,0,1,3,31,5,2,0,4.363677496,2.397895273,3.873774135,4.635416667,57,763,706,0.734651405,29,6,10,1.05712679,0,0,34,28,0.029136316,5,0.005202914,1,0.001040583,0.035379813,14,0.014568158,2,0.002081165,42,0.043704475,118,0.122788762,1,0.001040583,47,0.048907388,21,0.021852237,0.356919875,1,0.001040583,9,0.009365245,961,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0369_U1,WF0369,English,"A parent, brother, sister or other relative",Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.664530301,0.813186813,35,0.198863636,5.297635316,3.065338669,0.975090778,2.869429817,0.978081498,0.095732955,0.065071054,0.160804008,0.015035336,-0.021060071,0.036095406,1,0.467150175,0.61726662,-0.771101987,2.915548803,13.45464768,3.318681155,0,0,1,0,0,0,2,0,7,0,0,0,0,0,0,0,0,24,0,1,0,0,0,2,0,0,0,1,1,163.5620787,0,0,9,0,2,1,4,75,1,10,0,4.747103682,2.48490665,4.677795777,5.216196674,78,748,670,0.416666667,35,5,16,1.039423985,3,0.001865672,73,52,0.032338308,9,0.005597015,12,0.007462687,0.04539801,36,0.02238806,12,0.007462687,27,0.016791045,75,0.046641791,1,0.000621891,95,0.059079602,51,0.031716418,0.30659204,1,0.000621891,1,0.000621891,1608,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0369_U2,WF0369,English,Someone else,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.776171947,0.869318182,20,0.064516129,4.182296357,2.984255931,2.397728281,2.944458596,2.578005728,0.124239277,0.041142992,0.165374861,0.029546296,-0.008944444,0.038490741,1,0.39987943,0.565653932,-1.773279101,2.725347752,29.26007006,6.430981696,1,5,4,0,3,0,1,9,19,5,0,0,4,0,0,0,1,26,0,9,0,1,0,6,1,0,0,2,0,272.8411587,0,0,30,0,1,0,6,156,0,12,2,5.302539211,2.564949357,4.256482868,4.984680199,12,2488,2476,0.822864739,166,10,27,0.998829336,4,0.001329345,142,90,0.029910269,14,0.004652709,38,0.01262878,0.047191758,56,0.018610834,18,0.005982054,65,0.021601861,101,0.033565969,2,0.000664673,185,0.06148222,73,0.024260552,0.225656364,3,0.000997009,7,0.002326354,3009,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0369_U3,WF0369,English,"A parent, brother, sister or other relative",Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.883088096,0.942028986,21,0.086065574,4.466661556,3.137168188,3.315054284,3.304626062,3.186123256,0.084921985,0.027251165,0.112163474,0.016279632,-0.005128205,0.021407837,0.99999,0.289782639,0.679063123,-1.946213573,2.857542236,25.98005713,6.262139922,0,8,4,0,1,0,0,1,14,1,0,0,4,0,0,0,0,18,0,5,0,4,0,8,0,0,0,0,1,225.9955353,0,0,29,0,1,1,1,133,0,1,2,6.017132294,1.609437912,4.082582823,4.565789474,11,1939,1928,0.8288908,100,0,19,0.962299694,5,0.002149613,85,66,0.028374893,8,0.003439381,11,0.004729149,0.036543422,46,0.01977644,4,0.00171969,42,0.01805675,154,0.066208083,5,0.002149613,139,0.059759243,49,0.021066208,0.258383491,4,0.00171969,3,0.001289768,2326,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0371_U1,WF0371,English,No one helped me,Somewhat,0,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",5.208492117,0.4,3,0.157894737,5.068241951,1.686695249,2.664843818,2.575858217,3.194896098,0.059796438,0.038311069,0.098107506,0.008396947,-0.006679389,0.015076336,0,-0.021371002,0.664729902,0.286628303,2.825231944,0.275056922,0.510229228,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,0,1,0,1,0,0,0,0,0,0,0,6.048650817,0,0,0,0,0,1,0,4,0,0,0,4.197201948,0.693147181,3.56003179,4.22556391,132,135,3,0.020833333,0,0,2,1.172862289,0,0,6,5,0.034722222,1,0.006944444,0,0,0.041666667,3,0.020833333,0,0,10,0.069444444,14,0.097222222,0,0,5,0.034722222,4,0.027777778,0.694444444,0,0,0,0,144,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WF0371_U2,WF0371,English,A tutor,Not at all,1,1,I completed the assignment on a laptop or desktop computer.,6.596852928,0.8,23,0.172932331,5.15866632,3.238896333,2.713473752,3.189708197,2.563937841,0.071041078,0.067841872,0.138882949,0.010781671,-0.033670261,0.044451932,1,0.425320711,0.520271242,-0.410364296,2.519997403,11.30927237,5.007360161,0,1,2,0,2,0,3,2,8,0,0,0,2,0,0,0,0,55,2,2,0,4,0,6,0,0,0,1,1,138.1981467,0,0,9,0,2,0,4,50,0,6,0,4.702296897,2.302585093,4.282378613,4.92831216,118,1131,1013,0.811048839,61,0,13,1.057221948,0,0,31,23,0.018414732,6,0.004803843,2,0.001601281,0.024819856,17,0.013610889,2,0.001601281,89,0.071257006,49,0.039231385,1,0.000800641,68,0.054443555,30,0.024019215,0.381905524,2,0.001601281,1,0.000800641,1249,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0371_U3,WF0371,English,A tutor,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.728009712,0.81,32,0.175824176,5.175155882,2.81083102,1.035123522,3.021775714,0.974305986,0.120835161,0.050705747,0.171535786,0.01767418,-0.013153176,0.030827357,1,0.551229316,0.655801696,2.895692046,2.941074406,20.44979892,4.312176567,1,5,1,1,7,0,0,0,11,3,2,0,0,0,0,0,0,4,0,2,0,7,0,8,0,0,0,0,2,270.9823043,0,0,15,1,0,0,5,83,10,1,1,4.789572909,2.772588722,4.480080701,5.093035343,176,1161,985,0.451834862,47,0,8,0.669291284,2,0.000917431,65,50,0.02293578,10,0.004587156,5,0.002293578,0.029816514,22,0.010091743,3,0.001376147,25,0.01146789,21,0.009633028,1,0.000458716,122,0.055963303,29,0.013302752,0.258256881,1,0.000458716,2,0.000917431,2180,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0375_U1,WF0375,English,No one helped me,A little,1,0,I completed the assignment on a laptop or desktop computer.,6.653510551,0.730769231,18,0.151260504,5.025592897,2.903398827,0.748798073,2.934966304,0.538467339,0.069934253,0.036611524,0.106536919,0.014747564,-0.017559787,0.032307352,0.947,0.585814545,0.608852252,-0.985634006,2.65488583,4.782324594,1.898215453,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,19,0,1,0,0,0,1,0,0,0,0,0,119.8368641,0,0,0,0,2,1,6,42,0,2,1,4.296831789,2.708050201,4.303842747,5.02722323,32,1225,1193,0.947577442,54,0,41,1.525893486,0,0,53,32,0.025416998,11,0.008737093,10,0.007942812,0.042096902,21,0.016679905,2,0.001588562,23,0.018268467,31,0.024622716,0,0,60,0.047656871,20,0.015885624,0.374900715,1,0.000794281,4,0.003177125,1259,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0375_U2,WF0375,English,No one helped me,A little,1,0,I completed the assignment on a laptop or desktop computer.,6.70016325,0.804347826,18,0.193548387,5.270680909,3.022176611,0.985805213,3.274132543,0.785831601,0.092366509,0.059354927,0.151721435,0.020669935,-0.034313725,0.05498366,0.91083,0.464749481,0.586520361,-0.83448989,2.680173597,3.911501526,1.778156088,1,0,0,0,8,0,0,0,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,75.74512807,0,0,0,0,2,0,3,39,0,4,0,4.71961432,2.079441542,4.611743483,4.890746934,20,1049,1029,0.98,48,0,39,1.581413221,0,0,43,38,0.036190476,1,0.000952381,4,0.003809524,0.040952381,20,0.019047619,2,0.001904762,16,0.015238095,54,0.051428571,0,0,51,0.048571429,35,0.033333333,0.362857143,3,0.002857143,2,0.001904762,1050,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0379_U1,WF0379,English,,,#NULL!,#NULL!,,6.719583677,0.782608696,17,0.157407407,5.065170242,3.216355653,2.956060467,3.424831597,2.38902,0.087563091,0.053337361,0.140900452,0.014268293,-0.017134146,0.031402439,0.87521,0.13280502,0.634512805,-1.278483042,3.192421826,4.980431495,3.135773033,0,2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0,2,79.62884584,0,0,0,1,0,1,2,40,0,3,0,4.496099091,2.197224577,4.418206586,4.358116481,25,811,786,0.863736264,39,0,7,0.939135091,3,0.003296703,35,21,0.023076923,7,0.007692308,7,0.007692308,0.038461538,19,0.020879121,6,0.006593407,9,0.00989011,109,0.11978022,1,0.001098901,51,0.056043956,42,0.046153846,0.345054945,2,0.002197802,3,0.003296703,910,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0379_U2,WF0379,English,,,#NULL!,#NULL!,,6.697617474,0.767857143,12,0.1,4.615120517,3.340990409,3.237448526,3.247250203,3.036391159,0.143522584,0.0418993,0.185421885,0.0306875,-0.01240625,0.04309375,1,0.507945658,0.77981189,-0.093964231,2.991424384,8.677954594,2.985929362,0,0,0,0,0,0,2,0,1,1,0,0,0,0,0,0,0,6,0,1,0,4,0,5,0,0,0,0,3,100.2579697,0,0,11,1,0,0,4,46,0,6,0,4.1756685,2.48490665,4.224834752,5.226632522,228,737,509,0.546723953,24,0,12,1.142682431,8,0.008592911,14,8,0.008592911,3,0.003222342,3,0.003222342,0.015037594,12,0.012889366,8,0.008592911,13,0.01396348,48,0.051557465,1,0.001074114,59,0.063372718,13,0.01396348,0.395273899,0,0,1,0.001074114,931,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0379_U3,WF0379,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.591557394,0.642857143,8,0.131147541,4.883919033,3.049469363,1.588838918,3.093980639,1.727414559,0.13677855,0.045425464,0.182204014,0.024520154,-0.005758157,0.030278311,0.89588,0.300990749,0.540638901,-0.477368412,2.964347649,3.071448075,0.987384897,0,0,1,0,3,0,0,0,4,3,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,55.00637731,0,0,0,0,0,4,4,20,0,0,0,3.943521672,2.302585093,3.851316809,4.769379845,76,185,109,0.192579505,5,0,10,1.271094175,0,0,38,25,0.044169611,3,0.005300353,10,0.017667845,0.067137809,14,0.024734982,1,0.001766784,16,0.028268551,16,0.028268551,0,0,32,0.056537102,19,0.033568905,0.446996466,2,0.003533569,1,0.001766784,566,,No,1,Persuade,Annotator2,Final,N/A,N/A
WF0379_U4,WF0379,English,Someone else,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.465264497,0.64,9,0.163636364,5.103739185,3.213900027,2.048305014,3.241159522,2.004575544,0.067664942,0.029638253,0.097303195,0.01325167,-0.004342984,0.017594655,0.96938,-0.036797771,0.59299174,-0.352821478,2.959411097,3.52001293,0.666328696,0,0,1,0,0,0,0,0,5,1,1,0,0,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,52.21106672,0,0,0,0,2,0,2,17,1,5,0,4.156648446,1.945910149,2.591574861,4.147651007,1,499,498,0.992031873,27,3,43,1.937805507,0,0,18,10,0.019920319,1,0.001992032,7,0.013944223,0.035856574,10,0.019920319,1,0.001992032,12,0.023904382,3,0.005976096,0,0,28,0.055776892,17,0.033864542,0.396414343,1,0.001992032,1,0.001992032,502,,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0379_U5,WF0379,English,,,#NULL!,#NULL!,,6.680396507,0.782608696,14,0.138613861,4.938880479,3.285228571,3.397373532,3.403428837,3.277026715,0.099471947,0.06132838,0.160800327,0.020374574,-0.012570942,0.032945516,0.69355,0.33775615,0.576344803,-1.176937535,2.972983479,3.698002064,3.95295893,0,1,0,0,1,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,1,0,2,1,0,0,1,1,105.7509471,0,0,5,1,0,4,4,38,0,0,0,4.463606622,2.302585093,4.236080117,4.775345622,3,909,906,0.898809524,51,6,16,1.227192715,0,0,48,40,0.03968254,6,0.005952381,2,0.001984127,0.047619048,20,0.01984127,3,0.00297619,12,0.011904762,62,0.061507937,0,0,52,0.051587302,21,0.020833333,0.367063492,2,0.001984127,3,0.00297619,1008,,Yes,1,Persuade,Annotator2,Final,N/A,N/A
WF0379_U6,WF0379,English,,,#NULL!,#NULL!,,6.465264497,0.64,9,0.166666667,5.121977881,3.213900027,2.051755014,3.240564019,2.004575544,0.067664942,0.029638253,0.097303195,0.01325167,-0.004342984,0.017594655,0.96938,-0.03047831,0.589600757,-0.352821478,2.970572301,3.782424713,0.673047825,0,0,1,0,0,0,0,0,5,1,1,0,0,0,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,52.26468473,0,0,0,0,2,0,2,17,1,5,0,4.156648446,1.945910149,2.591574861,4.149888143,1,499,498,0.992031873,27,3,43,1.937805507,0,0,18,10,0.019920319,1,0.001992032,7,0.013944223,0.035856574,10,0.019920319,1,0.001992032,11,0.021912351,3,0.005976096,0,0,28,0.055776892,17,0.033864542,0.398406375,1,0.001992032,1,0.001992032,502,,No,2,Inform/Explore,Annotator2,Possible Duplicate,N/A,N/A
WF0381_U1,WF0381,English,A tutor,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.649291446,0.742424242,19,0.146153846,4.991478612,3.237630711,3.154693214,3.214897087,2.98369649,0.063544091,0.077320173,0.140864264,0.010796915,-0.051413882,0.062210797,1,0.447832402,0.590632437,-0.888650139,2.87063745,10.16401115,4.189096439,0,0,0,0,1,0,1,0,2,0,0,0,0,0,0,0,0,40,0,0,0,5,0,0,0,0,0,0,1,140.2197762,0,0,10,0,4,0,4,53,4,5,0,4.277533798,2.772588722,4.035052069,4.918473547,60,994,934,0.695976155,48,5,12,0.99746842,6,0.004470939,31,24,0.017883756,6,0.004470939,1,0.000745156,0.023099851,22,0.016393443,1,0.000745156,34,0.02533532,83,0.061847988,1,0.000745156,71,0.05290611,44,0.032786885,0.356184799,0,0,3,0.002235469,1342,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0381_U2,WF0381,English,A teacher,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.688244348,0.769230769,14,0.13592233,4.919413831,2.962465014,1.091278569,3.097949207,0.956309351,0.103810449,0.066170762,0.16996135,0.01082423,-0.018793446,0.029617676,0.99999,0.656353138,0.683216904,1.384759804,2.648224389,9.890128798,2.27824988,0,2,1,0,0,0,0,0,4,1,0,0,0,0,0,0,0,10,0,5,0,0,0,5,0,0,0,0,2,144.9464475,0,0,9,1,2,0,5,43,0,4,0,4.327692284,2.564949357,5.015324987,5.67715736,7,741,734,0.637706342,55,8,16,1.173214123,0,0,38,27,0.023457863,4,0.003475239,7,0.006081668,0.03301477,17,0.014769765,2,0.001737619,19,0.016507385,21,0.018245004,1,0.00086881,60,0.052128584,20,0.017376195,0.396177237,0,0,1,0.00086881,1151,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0381_U3,WF0381,English,No one helped me,A little,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.661125055,0.75,5,0.086206897,4.468283417,2.875190518,3.378421944,2.767348669,3.573381139,0.092312269,0.056830601,0.14914287,0.02329235,-0.015163934,0.038456284,0.91602,0.021960825,0.767391621,-0.147886582,3.286820422,2.690312845,1.337100732,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,43.82878738,0,0,5,0,0,0,3,21,2,2,0,3.823191792,2.079441542,3.270136152,4.016393443,231,364,133,0.317422434,10,0,6,1.185253353,0,0,20,13,0.031026253,1,0.002386635,6,0.014319809,0.047732697,9,0.021479714,7,0.016706444,3,0.007159905,29,0.069212411,0,0,32,0.076372315,17,0.040572792,0.417661098,0,0,0,0,419,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0383_U1,WF0383,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.710845349,0.764705882,48,0.15483871,5.04882156,2.902335301,0.769718804,2.835195381,0.737628311,0.141358406,0.051081283,0.19238951,0.020053763,-0.01328853,0.033342294,0.97313,0.700920436,0.596701551,-1.705026574,2.73075151,28.10759429,5.663746863,0,0,2,0,1,0,2,1,13,1,1,0,5,0,0,0,1,41,0,6,0,10,0,4,0,0,2,0,3,294.5335404,0,0,32,0,7,0,8,129,12,4,0,4.250325069,3.663561646,4.227633675,5.372212066,7,2783,2776,0.89577283,152,14,34,1.078140627,16,0.005162956,116,82,0.026460148,15,0.004840271,19,0.00613101,0.037431429,50,0.016134237,2,0.000645369,41,0.013230074,80,0.025814779,1,0.000322685,155,0.050016134,46,0.014843498,0.277186189,0,0,1,0.000322685,3099,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0383_U2,WF0383,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.777248069,0.882352941,38,0.157024793,5.062751941,2.886063088,2.766838905,2.865982069,2.526906324,0.076266904,0.019733583,0.095995927,0.009678523,-0.003362973,0.013041496,1,0.568972893,0.609796896,-1.888956772,2.717946857,16.78631073,4.733687119,0,1,0,0,3,0,0,0,16,1,0,0,2,0,0,1,0,23,0,3,0,8,0,3,1,0,0,1,2,257.0078141,0,0,19,1,3,0,6,109,1,2,1,4.892227063,2.772588722,4.300605972,5.131332083,1,2269,2268,0.934872218,107,12,25,1.053271675,4,0.001648805,44,36,0.014839242,2,0.000824402,6,0.002473207,0.018136851,39,0.016075845,2,0.000824402,47,0.019373454,137,0.056471558,1,0.000412201,126,0.051937345,43,0.01772465,0.265869744,1,0.000412201,4,0.001648805,2426,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0383_U3,WF0383,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.712779155,0.837837838,14,0.101449275,4.629367802,3.282555144,1.259731139,3.000785671,1.429892804,0.121348118,0.026580823,0.147921545,0.015883876,-0.004974112,0.020857988,1,0.574959463,0.637839516,1.171033445,2.717976234,13.51569358,1.811468066,0,2,0,1,3,0,0,1,7,0,0,0,0,0,0,0,0,22,0,5,0,2,0,0,0,0,0,1,0,127.2353835,0,0,12,0,1,1,6,65,0,2,0,4.422598598,2.772588722,4.465960465,5.268567142,8,1212,1204,0.797350993,74,0,23,1.210366364,3,0.001986755,63,40,0.026490066,14,0.009271523,9,0.005960265,0.041721854,28,0.018543046,4,0.002649007,20,0.013245033,46,0.030463576,1,0.000662252,80,0.052980132,29,0.019205298,0.339735099,1,0.000662252,2,0.001324503,1510,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0384_U1,WF0384,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.007860016,0.411764706,2,0.055555556,4.035223439,3.202477403,3.347905756,3.261684387,3.367261292,0.085111319,0.022950487,0.108061806,0.009446023,-0.002840909,0.012286932,0.84626,0.199650577,0.551234811,0.197959847,3.214421606,1.607513068,1.456014679,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,41.04069486,0,0,0,0,0,2,2,8,0,4,1,4.060443011,1.791759469,3.263331817,4.25,12,164,152,0.387755102,4,0,7,1.275475891,0,0,10,9,0.022959184,0,0,1,0.00255102,0.025510204,5,0.012755102,2,0.005102041,5,0.012755102,47,0.119897959,0,0,20,0.051020408,13,0.033163265,0.479591837,2,0.005102041,0,0,392,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WF0384_U2,WF0384,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.629529714,0.783783784,25,0.159235669,5.076645661,3.108322861,1.076873717,3.136090132,0.963085153,0.073183434,0.052657446,0.125834349,0.009487263,-0.013700196,0.023187459,0.81175,0.512564953,0.663168215,-0.864026887,2.856727097,11.13910691,2.985182794,0,0,1,0,0,0,0,1,3,0,0,0,3,0,0,2,0,10,0,4,0,4,0,2,0,0,2,0,0,154.1641991,0,0,10,0,0,0,6,60,0,7,1,4.688723209,2.63905733,4.573068581,4.929040736,6,1543,1537,0.897256276,78,0,29,1.253564877,10,0.005837712,84,67,0.039112668,6,0.003502627,11,0.006421483,0.049036778,33,0.019264448,0,0,23,0.013426737,38,0.022183304,1,0.000583771,81,0.047285464,56,0.032691185,0.318739054,0,0,5,0.002918856,1713,Unsure,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0384_U3,WF0384,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.664189969,0.729166667,19,0.131944444,4.88993133,3.033125133,1.050327055,3.359507515,0.848669688,0.071551674,0.054621801,0.126173475,0.010361391,-0.011779506,0.022140897,0.67809,0.445085981,0.665945822,-1.392513692,2.884686055,3.504946464,2.206710082,0,1,0,0,0,0,1,0,3,0,0,0,1,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,1,110.6188025,0,0,0,0,3,1,6,38,0,3,0,4.220426401,2.772588722,4.654113634,4.78328742,1,1043,1042,0.877104377,52,7,25,1.343285892,0,0,49,36,0.03030303,1,0.000841751,12,0.01010101,0.041245791,23,0.019360269,1,0.000841751,11,0.009259259,35,0.029461279,0,0,55,0.046296296,30,0.025252525,0.349326599,0,0,0,0,1188,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0384_U4,WF0384,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.075682392,0.375,9,0.18,5.198497031,2.625869394,3.435419917,3.208581413,3.415146394,0.09368611,0.045978252,0.139664362,0.005145119,-0.010620053,0.015765172,0.87469,0.188831022,0.599304959,-0.305056145,3.023909763,1.727944143,1.214662603,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,48.56576054,0,0,0,0,0,7,1,8,0,0,0,4.545950826,1.386294361,3.862730136,4.466843501,1,409,408,0.995121951,17,2,22,1.737658,0,0,29,22,0.053658537,4,0.009756098,3,0.007317073,0.070731707,9,0.02195122,0,0,6,0.014634146,25,0.06097561,0,0,18,0.043902439,14,0.034146341,0.480487805,0,0,0,0,410,Unsure,No,1,Persuade,Annotator1,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WF0384_U5,WF0384,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.361632371,0.632653061,11,0.083333333,4.4347772,3.453654438,3.30186197,3.25287164,3.093798859,0.114034449,0.036630518,0.150646703,0.012488584,-0.010593607,0.023082192,0.81691,0.557116646,0.595265596,-0.946535906,3.024526004,3.557059132,2.318006374,0,0,1,0,0,0,1,0,5,0,0,0,3,0,0,0,0,8,0,1,0,1,0,5,0,0,1,0,0,136.5268459,0,0,0,0,1,0,10,33,5,0,1,4.049493996,2.944438979,4.340819375,5.023853211,10,992,982,0.830092984,49,12,17,1.186680794,0,0,60,46,0.038884193,9,0.007607777,5,0.004226543,0.050718512,26,0.021978022,6,0.005071851,25,0.021132713,37,0.031276416,0,0,61,0.051563821,26,0.021978022,0.385460693,0,0,8,0.006762468,1183,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0384_U6,WF0384,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.707230832,0.835443038,26,0.180555556,5.201561698,2.848912777,3.660915583,3.289511962,3.533345155,0.105395334,0.036322449,0.141717783,0.015,-0.011200717,0.026200717,0.92201,0.381987723,0.650853524,-0.748390825,3.122095253,12.50646634,5.678690987,0,0,0,0,0,0,0,1,4,0,0,0,2,0,0,0,0,2,0,3,0,3,0,6,0,0,0,0,4,97.71561117,0,0,8,2,1,2,5,68,0,3,1,4.657616661,2.564949357,4.272174476,4.481751825,3,643,640,0.413436693,27,11,10,0.872735819,2,0.00129199,57,39,0.025193798,2,0.00129199,16,0.010335917,0.036821705,39,0.025193798,12,0.007751938,18,0.011627907,161,0.104005168,1,0.000645995,87,0.05620155,43,0.027777778,0.335917313,5,0.003229974,3,0.001937984,1548,Yes,Yes,3,Reflect,Annotator1,Final,N/A,N/A
WF0384_U7,WF0384,English,No one helped me,A little,0,1,I completed the assignment on a tablet (such as an iPad).,6.629799453,0.757281553,33,0.108552632,4.696405087,2.715819354,3.651033688,3.130218941,3.540916224,0.11637041,0.031564605,0.147926976,0.013766077,-0.005235129,0.019001206,0.86987,0.495114542,0.630060997,-1.966011914,2.931140634,5.861854393,10.34020938,0,1,3,0,1,0,2,0,10,0,0,0,5,0,0,1,1,10,0,1,0,0,0,3,0,0,0,0,0,255.7807313,0,0,0,2,2,2,12,78,6,4,1,4.519370196,3.295836866,4.363081717,4.657788539,14,2626,2612,0.95853211,113,13,25,1.007505048,0,0,105,71,0.026055046,15,0.005504587,19,0.006972477,0.03853211,44,0.016146789,4,0.00146789,40,0.014678899,147,0.053944954,0,0,116,0.042568807,67,0.024587156,0.280366972,2,0.000733945,8,0.00293578,2725,Yes,Yes,3,Reflect,Annotator1,Final,N/A,N/A
WF0384_U8,WF0384,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.725436117,0.816666667,25,0.219298246,5.39498229,3.030712279,0.799310122,2.906417727,0.813974489,0.083113865,0.027900257,0.111014122,0.013279773,-0.007986767,0.021266541,0.87541,0.512310735,0.616370649,-0.468527747,2.634508252,8.062018439,2.400893443,0,0,0,1,1,0,1,0,5,0,0,0,0,0,0,0,0,37,0,2,0,1,0,3,0,0,0,0,3,119.3880817,2,0,8,0,3,0,4,52,0,4,0,4.461107341,2.48490665,4.121414084,5.232916266,35,871,836,0.715141146,49,0,16,1.166930489,0,0,19,13,0.011120616,0,0,6,0.005132592,0.016253208,13,0.011120616,0,0,53,0.045337896,18,0.015397776,0,0,66,0.056458512,26,0.022241232,0.382378101,9,0.007698888,0,0,1169,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0384_U9,WF0384,English,No one helped me,Not at all,0,1,I completed the assignment on a laptop or desktop computer.,6.593479055,0.711111111,11,0.076923077,4.355722147,3.082550022,3.629797549,3.237386257,3.546874929,0.133373986,0.030584844,0.163950202,0.02163503,-0.003343399,0.02497843,0.93553,0.356893731,0.595027604,-0.994898767,2.917976613,5.398938477,3.037377638,0,0,0,0,0,0,0,0,6,0,0,0,1,0,0,0,0,4,0,0,0,0,0,5,0,0,1,0,2,101.6623632,0,0,0,1,0,4,5,35,0,1,0,4.416255514,2.63905733,4.025251668,4.428817947,43,1125,1082,0.869076305,42,0,19,1.21114843,0,0,61,39,0.031325301,10,0.008032129,12,0.009638554,0.048995984,28,0.02248996,2,0.001606426,23,0.018473896,100,0.080321285,0,0,52,0.041767068,32,0.025702811,0.326104418,0,0,2,0.001606426,1245,Yes,Yes,3,Reflect,Annotator1,Final,N/A,N/A
WF0385_U1,WF0385,English,No one helped me,A little,1,0,I completed the assignment on a laptop or desktop computer.,6.72598632,0.80952381,8,0.066666667,4.21459369,3.335264179,3.603688129,3.399748591,3.53747855,0.139969546,0.029118242,0.169087788,0.028236342,-0.004305226,0.032541568,0.83516,0.304248175,0.571763975,-0.535783214,3.106861522,3.038765466,2.114063807,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,67.42030922,0,0,0,0,2,0,5,36,0,1,0,4.248495242,2.48490665,3.741818832,4.479761905,5,914,909,0.980582524,48,7,12,1.144418015,0,0,51,34,0.036677454,4,0.004314995,13,0.014023732,0.055016181,17,0.018338727,8,0.008629989,4,0.004314995,106,0.114347357,0,0,49,0.052858684,27,0.029126214,0.399137001,2,0.002157497,4,0.004314995,927,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WF0385_U2,WF0385,English,No one helped me,A little,1,0,I completed the assignment on a laptop or desktop computer.,6.747133273,0.844827586,13,0.097744361,4.592534297,2.768487474,3.321100747,3.194437049,2.916945013,0.085664004,0.036876876,0.12254088,0.013190184,-0.011004601,0.024194785,0.76779,0.419522651,0.605127469,-0.983767568,2.924233825,4.478133184,3.295380578,1,2,0,1,0,0,0,1,9,0,0,0,0,0,0,0,0,1,1,0,0,0,0,7,1,0,0,0,1,140.3843943,0,0,0,1,4,2,3,51,0,2,0,4.96517292,2.197224577,4.587235782,4.778294574,13,1397,1384,0.944065484,57,0,17,1.100238861,0,0,73,48,0.032742156,7,0.004774898,18,0.012278308,0.049795362,25,0.017053206,14,0.009549795,25,0.017053206,76,0.051841746,1,0.000682128,62,0.042291951,54,0.036834925,0.315825375,3,0.002046385,8,0.005457026,1466,Yes,No,3,Reflect,Annotator1,Final,N/A,N/A
WF0385_U3,WF0385,English,No one helped me,A little,1,0,I completed the assignment on a laptop or desktop computer.,6.169075414,0.545454545,9,0.225,5.420534999,2.311941835,0.694878419,2.038372415,0.858739303,0.108159644,0.041080824,0.149240468,0.017041801,-0.005787781,0.022829582,0.51526,0.467369094,0.628823759,-0.257011323,2.701341186,0.942098513,0.28936203,0,0,1,0,0,0,0,0,2,0,0,0,0,0,0,0,1,3,0,0,0,0,0,2,0,0,0,0,0,29.73307532,0,0,0,1,0,2,1,8,0,0,0,4.353498551,1.386294361,3.389869154,5.270096463,2,255,253,0.735465116,8,1,13,1.588727591,0,0,11,4,0.011627907,0,0,7,0.020348837,0.031976744,5,0.014534884,0,0,9,0.026162791,4,0.011627907,0,0,12,0.034883721,7,0.020348837,0.497093023,0,0,0,0,344,Unsure,No,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0385_U4,WF0385,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.678975166,0.788732394,20,0.102564103,4.640190769,3.156958263,3.605457376,3.311031094,3.532727269,0.136497894,0.041508571,0.178006466,0.020971147,-0.005436312,0.02640746,0.99595,0.330281562,0.664940968,-1.834779763,2.984288193,12.77302675,4.655711314,0,0,1,0,0,0,0,0,6,0,0,0,2,0,0,0,0,6,0,1,0,6,0,6,0,0,0,0,1,103.4473025,0,0,14,1,1,4,7,60,0,0,0,4.365219516,2.890371758,3.873763908,4.495762712,470,1381,911,0.56830942,42,0,16,1.040653167,5,0.003119152,104,75,0.046787274,17,0.010605115,12,0.007485964,0.064878353,32,0.01996257,18,0.011228946,18,0.011228946,128,0.079850281,1,0.00062383,78,0.048658765,43,0.026824704,0.325015596,3,0.001871491,4,0.002495321,1603,Yes,Yes,3,Reflect,Annotator1,Final,N/A,N/A
WF0385_U5,WF0385,English,No one helped me,A lot,1,0,I completed the assignment on a laptop or desktop computer.,6.682182308,0.705882353,3,0.09375,4.551241844,2.936913626,3.423655216,3.257646486,3.46190437,0.130110147,0.032858117,0.162968264,0.029340836,-0.004983923,0.034324759,0.70613,0.227265486,0.677440424,0.060639342,3.294191108,2.847634254,0.610056886,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,1,26.59717109,0,0,0,0,1,1,0,16,0,0,0,4.634728988,1.098612289,3.335637841,4.339805825,24,245,221,0.65,7,0,8,1.389687134,0,0,12,6,0.017647059,1,0.002941176,5,0.014705882,0.035294118,5,0.014705882,3,0.008823529,5,0.014705882,35,0.102941176,2,0.005882353,17,0.05,3,0.008823529,0.55,2,0.005882353,0,0,340,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WF0386_U1,WF0386,English,No one helped me,A little,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.369348031,0.625,9,0.160714286,5.08583111,3.270797139,3.300712607,3.019299284,3.2764732,0.099277135,0.071224562,0.170501697,0.006909283,-0.028744726,0.035654008,0.53765,0.509091108,0.595938404,-0.284586512,2.800782818,3.409170636,1.659463014,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,6,0,1,0,0,5,0,0,0,0,1,45.9287345,0,0,0,0,0,0,2,19,0,3,0,4.077537444,2.079441542,4.542357044,5.148305085,177,491,314,0.618110236,15,0,7,1.169660552,0,0,22,14,0.027559055,3,0.005905512,5,0.00984252,0.043307087,9,0.017716535,0,0,22,0.043307087,29,0.057086614,0,0,28,0.05511811,21,0.041338583,0.511811024,0,0,2,0.003937008,508,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WF0386_U2,WF0386,English,A teacher,Somewhat,0,0,I completed the assignment on a laptop or desktop computer.,6.558909917,0.690909091,35,0.230263158,5.443556274,2.934388749,0.857682922,3.094546607,0.759037774,0.115757488,0.062091601,0.177849089,0.027344285,-0.026009582,0.053353867,0.74083,0.627487344,0.665861143,-1.259225454,2.817410749,3.539949964,3.784718488,0,2,0,0,0,0,1,1,13,1,0,0,1,0,0,0,1,4,1,0,0,2,0,8,0,0,0,1,1,144.2475818,0,0,0,2,3,0,5,38,6,6,0,4.786797057,2.48490665,4.313504288,4.843641418,6,1517,1511,0.958148383,60,7,9,0.826530811,0,0,52,40,0.025364616,6,0.003804692,6,0.003804692,0.032974001,19,0.012048193,4,0.002536462,36,0.022828155,70,0.044388079,0,0,62,0.039315155,40,0.025364616,0.35637286,0,0,3,0.001902346,1577,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WF0386_U3,WF0386,English,Someone else,A lot,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.628594076,0.794117647,24,0.148148148,5.004940095,2.961595149,2.841840987,3.031007044,2.271151764,0.072443961,0.07776968,0.150213641,0.016737831,-0.042826644,0.059564475,0.83437,0.611940746,0.598449617,-0.585910052,2.673060303,9.254448044,3.498126135,0,0,2,0,1,0,1,0,2,2,0,0,0,0,0,0,0,38,0,4,0,2,0,3,0,0,0,0,0,128.1784925,0,0,7,0,3,0,6,59,0,2,1,4.421419036,2.63905733,4.422555117,5.038626609,179,1207,1028,0.795665635,61,0,29,1.370065434,3,0.002321981,31,17,0.013157895,8,0.00619195,6,0.004643963,0.023993808,22,0.017027864,0,0,54,0.041795666,83,0.064241486,2,0.001547988,76,0.058823529,26,0.020123839,0.390092879,0,0,2,0.001547988,1292,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0388_U1,WF0388,Business,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.651153662,0.743589744,10,0.090909091,4.520799946,2.730404359,3.605386881,3.40539698,3.491940185,0.116493215,0.024955975,0.141424032,0.018616352,-0.004056604,0.022672956,0.91194,0.233902895,0.654571222,-1.268609982,3.224173731,3.378175169,2.681212749,0,0,0,0,1,0,1,0,2,0,0,0,1,0,0,0,0,3,0,0,0,0,0,9,0,0,0,0,1,50.95617888,0,0,0,0,1,2,4,32,0,1,0,4.113392757,2.564949357,3.719586244,4.139622642,36,774,738,0.826427772,38,0,13,1.191944577,0,0,49,30,0.033594625,15,0.016797312,4,0.004479283,0.054871221,15,0.016797312,22,0.024636058,18,0.020156775,114,0.127659574,0,0,44,0.049272116,19,0.021276596,0.361702128,1,0.001119821,0,0,893,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0388_U2,WF0388,Business,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.300118349,0.545454545,5,0.079365079,4.386579746,3.272047272,3.562039145,3.097081755,3.485765851,0.15017018,0.018171676,0.168341856,0.026507782,-0.001945525,0.028453307,0.82042,0.408347448,0.571194764,-0.548327911,2.889814837,1.993234702,0.753072083,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,4,0,0,1,0,0,49.1931689,0,0,0,0,1,1,2,14,0,5,0,4.294365696,1.945910149,3.761460877,4.7582846,14,518,504,0.916363636,21,0,14,1.422500304,0,0,22,11,0.02,7,0.012727273,4,0.007272727,0.04,9,0.016363636,2,0.003636364,7,0.012727273,55,0.1,1,0.001818182,25,0.045454545,7,0.012727273,0.434545455,2,0.003636364,0,0,550,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0388_U3,WF0388,Business,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.21460409,0.535714286,5,0.081967213,4.418445507,3.256807145,3.483411099,3.33024075,3.539926189,0.111440316,0.05299979,0.164440107,0.014757709,-0.007984581,0.022742291,0.81145,0.202039034,0.508625594,-0.389533879,3.189798107,3.031750789,0.885101272,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,2,0,0,0,0,0,33.52902199,0,0,0,0,0,1,3,19,0,5,0,3.713572067,2.397895273,3.695208534,4.472283814,2,337,335,0.671342685,22,4,3,0.845843397,0,0,21,15,0.03006012,1,0.002004008,5,0.01002004,0.042084168,10,0.02004008,6,0.012024048,6,0.012024048,51,0.102204409,2,0.004008016,32,0.064128257,9,0.018036072,0.472945892,4,0.008016032,1,0.002004008,499,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0388_U4,WF0388,Business,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.473802422,0.621621622,13,0.26,5.564520407,3.108951866,3.381160288,2.646628702,3.35765348,0.167269282,0.019209932,0.186479214,0.042889391,-0.002595937,0.045485327,0.93665,0.547778738,0.628972511,-0.310978981,2.783159412,5.520704146,1.004438738,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,9,0,0,0,3,0,1,0,0,0,0,0,35.38243707,0,0,5,0,0,0,5,27,0,5,0,3.60866312,2.48490665,3.261787366,5.399548533,21,346,325,0.641025641,26,0,9,1.273035535,0,0,11,7,0.013806706,3,0.00591716,1,0.001972387,0.021696252,8,0.015779093,0,0,11,0.021696252,51,0.100591716,3,0.00591716,47,0.09270217,15,0.029585799,0.451676529,2,0.003944773,1,0.001972387,507,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0388_U5,WF0388,Business,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.53542571,0.62745098,18,0.126760563,4.850157914,3.293624304,3.644424585,3.376672308,3.606158872,0.10814622,0.021568751,0.129705863,0.018738616,-0.00307377,0.021812386,0.80954,0.385057902,0.559539835,-2.347391038,2.929907571,4.327846849,3.685678399,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,1,8,0,0,0,0,0,5,0,0,0,0,0,91.44335779,0,0,0,0,1,1,6,36,0,8,0,4.162552812,2.833213344,4.218971486,4.426739927,127,1157,1030,0.861204013,46,0,8,0.885867783,0,0,44,36,0.030100334,4,0.003344482,4,0.003344482,0.036789298,19,0.015886288,2,0.001672241,19,0.015886288,134,0.112040134,0,0,59,0.049331104,30,0.025083612,0.352842809,7,0.005852843,3,0.002508361,1196,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0389_U1,WF0389,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.727984105,0.828025478,42,0.116022099,4.762362801,2.677615842,0.675187777,2.99965144,0.598988789,0.139009204,0.034929872,0.173926742,0.01728338,-0.005935862,0.023219241,1,0.661814449,0.588937887,-1.590621973,2.549231656,28.58534336,3.964961742,0,1,0,0,3,0,3,1,11,7,1,0,6,0,0,0,1,56,0,14,0,7,0,20,0,0,0,0,2,343.4369782,0,0,30,1,4,2,8,140,6,1,0,4.55928489,3.496507561,4.457146678,5.602791878,166,2312,2146,0.605188945,165,23,22,0.857584177,9,0.002538071,191,93,0.026226734,30,0.008460237,68,0.019176537,0.053863508,69,0.019458545,26,0.007332205,57,0.01607445,85,0.023970671,1,0.000282008,177,0.049915398,69,0.019458545,0.243090807,2,0.000564016,8,0.002256063,3546,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0389_U2,WF0389,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.71919884,0.827160494,15,0.094936709,4.563688691,3.238044799,0.569656398,2.819290177,0.517015208,0.127928203,0.035148151,0.16306432,0.013011432,-0.010123345,0.023134777,1,0.672856428,0.586222266,0.657078177,2.782237865,13.34192796,1.769552204,0,0,1,0,1,0,3,0,5,0,0,0,1,0,0,0,0,16,0,4,0,0,0,8,2,0,0,0,0,246.9652556,0,0,16,0,1,2,7,69,1,2,0,4.435816809,2.944438979,4.519127904,5.672693267,5,1477,1472,0.803932277,84,9,22,1.114453922,7,0.003823048,64,44,0.024030584,10,0.005461496,10,0.005461496,0.034953577,31,0.016930639,11,0.006007646,17,0.009284544,19,0.010376843,1,0.00054615,88,0.048061169,25,0.013653741,0.294920808,0,0,6,0.003276898,1831,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0389_U3,WF0389,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.77850842,0.828358209,43,0.144781145,4.982106489,2.776233146,2.34032653,3.038420111,1.892548554,0.09462177,0.033279553,0.127901323,0.01806678,-0.009783071,0.027849851,0.81075,0.511996549,0.660204638,-2.698642012,2.699594547,16.5026411,4.176012084,0,2,1,0,1,0,0,0,12,0,2,0,5,0,0,0,0,16,0,2,0,0,0,6,1,0,0,0,3,197.1901406,0,0,10,0,3,0,5,116,10,1,2,5.101607072,2.63905733,4.519261681,5.106956522,1,2488,2487,0.930067315,144,15,21,0.94711024,30,0.011219147,75,39,0.014584892,8,0.002991773,28,0.010471204,0.028047868,59,0.022064323,13,0.004861631,32,0.011967091,121,0.045250561,2,0.000747943,148,0.055347794,51,0.01907255,0.287210172,1,0.000373972,6,0.002243829,2674,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0391_U1,WF0391,English,"A parent, brother, sister or other relative",Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.686860199,0.828571429,11,0.102803738,4.642501985,3.423210295,3.602272435,3.448321775,3.539364048,0.139196173,0.029491179,0.168687351,0.029355401,-0.006765389,0.03612079,1,0.316160049,0.71575613,-0.310780811,2.998228685,13.00606683,2.712807958,0,0,1,0,0,0,0,0,11,0,0,0,1,0,0,0,0,5,0,4,0,6,0,0,0,0,0,0,0,66.76281657,0,0,15,0,0,6,4,60,0,0,0,4.449685283,2.302585093,3.571806135,4.580607477,96,872,776,0.775224775,52,13,13,1.145724978,3,0.002997003,50,23,0.022977023,16,0.015984016,11,0.010989011,0.04995005,22,0.021978022,0,0,11,0.010989011,82,0.081918082,1,0.000999001,82,0.081918082,23,0.022977023,0.357642358,2,0.001998002,5,0.004995005,1001,Yes,Yes,3,Reflect,Annotator1,Final,N/A,N/A
WF0394_U1,WF0394,History,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.564116499,0.714285714,9,0.138461538,4.937788853,3.277112065,2.768797657,3.407069072,2.663582221,0.081675884,0.038427283,0.120103167,0.02486053,-0.011192469,0.036052999,1,0.416053588,0.561011474,-0.171912026,2.761861899,8.61319162,3.332058507,0,0,0,0,4,0,0,1,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,7,103.524251,0,0,6,0,0,0,5,32,0,5,0,4.077537444,2.48490665,4.797269225,5.053672316,3,446,443,0.526128266,24,8,10,1.109797311,3,0.003562945,18,12,0.014251781,2,0.002375297,4,0.004750594,0.021377672,13,0.01543943,0,0,5,0.005938242,34,0.040380048,1,0.001187648,49,0.058194774,18,0.021377672,0.36935867,2,0.002375297,2,0.002375297,842,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0394_U2,WF0394,History,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.654875322,0.784615385,19,0.195876289,5.282575555,3.166371756,0.715649329,3.276380165,0.512299868,0.079880548,0.056344738,0.136205306,0.017357642,-0.028846154,0.046203796,1,0.457135039,0.632678804,0.002536264,2.587060146,17.27002057,3.258745543,0,1,0,0,1,0,0,0,14,5,0,0,2,0,0,0,1,12,0,5,0,1,0,1,0,0,0,0,0,136.1295175,0,0,17,0,2,0,4,55,1,4,1,4.417836087,2.48490665,3.654984667,5.118592965,4,666,662,0.550748752,72,10,24,1.32153054,9,0.007487521,15,12,0.009983361,2,0.001663894,1,0.000831947,0.012479201,11,0.009151414,0,0,22,0.018302829,16,0.013311148,1,0.000831947,74,0.06156406,12,0.009983361,0.357737105,0,0,0,0,1202,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0400_U1,WF0400,English,No one helped me,Somewhat,0,0,I completed the assignment on a tablet (such as an iPad).,4.904191794,0.103896104,31,0.15270936,5.035063544,3.147752199,1.173609395,3.307239384,0.946128459,0.104110019,0.03000124,0.134104765,0.025616883,-0.00612013,0.031737013,1,0.340563119,0.567901959,-2.47645564,2.77372,41.47076997,5.716545011,0,1,0,1,1,0,2,0,15,0,0,0,4,0,0,0,0,4,0,88,2,90,0,1,2,0,1,1,16,199.018305,0,0,50,0,1,0,16,64,72,0,2,2.664471658,4.709530201,3.904104433,4.522584693,59,1382,1323,0.737869492,47,0,18,1.042931335,0,0,52,41,0.022866704,1,0.000557724,10,0.005577245,0.029001673,17,0.009481316,0,0,25,0.013943112,155,0.086447295,0,0,64,0.035694367,27,0.015058561,0.272169548,0,0,15,0.008365867,1793,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0401_U1,WF0401,Business,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.379165086,0.551724138,8,0.133333333,4.900324273,2.69154433,3.54651699,2.838074749,3.367261292,0.174807693,0.025716784,0.200524477,0.040702087,-0.004933586,0.045635674,0.88783,0.725231773,0.54117986,0.285837966,2.595945544,5.202044958,0.68452335,0,0,0,0,0,0,0,1,2,0,0,0,0,0,0,0,0,11,0,0,0,3,0,1,0,0,0,0,1,45.85989229,0,0,0,0,1,0,5,20,0,0,4,4.180139922,2.079441542,3.869300025,5.692160612,31,587,556,0.945578231,33,0,13,1.363778212,0,0,16,7,0.011904762,4,0.006802721,5,0.008503401,0.027210884,8,0.013605442,0,0,18,0.030612245,56,0.095238095,13,0.022108844,37,0.06292517,10,0.017006803,0.465986395,0,0,0,0,588,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WF0401_U2,WF0401,Business,No one helped me,Not at all,1,0,I completed the assignment on a laptop or desktop computer.,6.566755649,0.727272727,3,0.075,4.33073334,2.5826618,3.469081675,2.801377623,3.357057771,0.16355348,0.018668831,0.182222312,0.025974026,-0.000568,0.026542208,0.63538,0.27632192,0.465268866,-0.220807342,2.769046094,1.000356338,0.801612913,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,0,0,0,0,0,38.82728311,0,0,0,0,0,1,0,10,0,0,0,5.036952602,0.693147181,3.112839564,4.623376623,27,179,152,0.449704142,5,0,5,1.198461869,0,0,21,10,0.029585799,8,0.023668639,3,0.00887574,0.062130178,3,0.00887574,0,0,5,0.014792899,31,0.091715976,0,0,11,0.032544379,4,0.01183432,0.476331361,1,0.00295858,0,0,338,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0404_U1,WF0404,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.618592505,0.719298246,19,0.180952381,5.20374501,2.902167579,2.723096798,3.473774735,2.443449947,0.088224237,0.048789366,0.137013603,0.019141104,-0.019601227,0.038742331,0.97694,0.436741556,0.546856061,-1.592385835,2.776587931,5.013649382,1.92443898,0,0,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,91.86049323,0,6,0,0,1,0,4,44,0,9,0,4.286716455,2.397895273,4.235739697,4.59375,3,789,786,0.829113924,58,5,13,1.167703601,0,0,29,24,0.025316456,2,0.002109705,3,0.003164557,0.030590717,21,0.022151899,1,0.001054852,11,0.011603376,87,0.091772152,0,0,62,0.065400844,37,0.039029536,0.335443038,0,0,8,0.008438819,948,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0404_U2,WF0404,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.738968892,0.836065574,17,0.153153153,5.037946609,3.241938639,0.971547447,3.344779332,0.698406414,0.092529513,0.049431642,0.141961155,0.016566265,-0.017524644,0.034090909,0.9164,0.375131769,0.506947556,-0.930903531,2.564507632,4.440051453,2.347949392,0,1,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,21,0,0,0,0,0,1,0,0,0,0,0,118.0550037,0,0,0,0,2,1,4,54,0,2,0,4.311917068,2.48490665,4.318965068,4.844692737,147,984,837,0.812621359,57,0,15,1.192096298,0,0,31,26,0.025242718,4,0.003883495,1,0.000970874,0.030097087,12,0.011650485,1,0.000970874,27,0.026213592,82,0.07961165,1,0.000970874,66,0.06407767,23,0.022330097,0.359223301,1,0.000970874,7,0.006796117,1030,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0405_U1,WF0405,English,A tutor,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.42768828,0.56,9,0.125,4.836281907,3.303133633,2.493299409,3.326095239,2.318693186,0.057041954,0.06071978,0.117761734,0.012051282,-0.034059829,0.046111111,0.83689,0.182532384,0.508448718,-0.803032129,2.625415289,1.99962912,1.457639789,0,13,1,0,0,0,2,1,2,2,0,0,0,0,0,0,0,5,4,0,0,0,0,4,0,0,0,2,0,57.02582023,0,0,0,0,0,1,4,17,0,3,0,3.886705197,2.48490665,3.300638446,4.316239316,48,480,432,0.696774194,19,0,6,1.0284663,0,0,18,15,0.024193548,0,0,3,0.00483871,0.029032258,11,0.017741935,4,0.006451613,36,0.058064516,86,0.138709677,0,0,30,0.048387097,28,0.04516129,0.380645161,0,0,1,0.001612903,620,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0406_U1,WF0406,Biology,A teacher,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.562376113,0.674418605,11,0.15942029,5.077797183,3.005207581,0.626696788,2.956780885,0.514991158,0.096043857,0.0304558,0.126499657,0.009082734,-0.006594724,0.015677458,0.98465,0.406042908,0.617466087,0.689700243,2.640556642,3.993969094,2.035559608,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,0,1,49,0,1,0,0,0,1,0,0,0,0,2,118.6800528,0,0,0,0,4,0,3,31,1,8,0,4.414009681,2.302585093,4.299468253,5.110169492,3,927,924,0.988235294,44,4,20,1.350061354,0,0,38,21,0.022459893,4,0.004278075,13,0.013903743,0.040641711,16,0.017112299,0,0,57,0.060962567,2,0.002139037,1,0.001069519,46,0.049197861,24,0.025668449,0.306951872,0,0,0,0,935,,Yes,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0406_U2,WF0406,Biology,A teacher,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.787913632,0.875,30,0.131004367,4.882835004,2.732739526,2.106919157,2.572260242,1.755667696,0.048669444,0.019913638,0.068499726,0.007001945,-0.003876077,0.010878022,1,0.264902804,0.56597875,-4.072870004,2.406700582,43.42298236,10.01849235,0,1,0,0,0,0,1,2,22,1,0,0,1,0,0,0,1,160,0,15,0,19,0,26,0,0,1,0,7,486.291463,0,0,51,3,12,0,6,166,8,4,0,5.137198017,3.044522438,4.166737493,4.391608392,3,4047,4044,0.961941009,220,0,49,1.102281577,0,0,73,43,0.010228354,7,0.001665081,23,0.00547098,0.017364415,45,0.010704091,0,0,282,0.067078972,28,0.006660324,12,0.002854424,224,0.053282588,56,0.013320647,0.225023787,0,0,0,0,4204,,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WF0406_U3,WF0406,Biology,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,4.025778804,0.055555556,7,0.175,5.170483995,2.790730131,0.463620434,1.816332186,0.514375773,0.070826467,0.036643676,0.107470144,0.007980226,-0.001412429,0.009392655,0.72712,0.503823382,0.613713112,0.488660352,2.528761232,1.879472436,0.337932344,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,18,0,1,0,0,0,1,0,0,1,0,0,52.82392819,0,0,0,0,4,2,1,4,0,11,0,3.781344682,2.079441542,3.308224059,5.384615385,7,400,393,0.940191388,16,0,30,1.861954374,0,0,8,2,0.004784689,2,0.004784689,4,0.009569378,0.019138756,8,0.019138756,0,0,20,0.04784689,0,0,1,0.002392344,19,0.045454545,6,0.014354067,0.468899522,0,0,0,0,418,,Yes,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0406_U4,WF0406,Biology,A teacher,A lot,0,1,I completed the assignment on a laptop or desktop computer.,0,0,0,0,0,2.207226056,0.928187722,1.880450613,0.888334934,0.026890756,0.021890756,0.048193277,0.004411765,-0.001155462,0.005567227,0.76689,0.108646266,0.613342918,-0.207777752,2.171169751,1.687779887,1.532814815,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,75.32083687,0,0,0,0,0,0,0,4,0,10,0,4.352426165,1.098612289,2.677741775,4.587982833,2,142,140,0.436137072,5,0,4,1.129079234,0,0,0,0,0,0,0,0,0,0,2,0.00623053,0,0,12,0.037383178,6,0.018691589,1,0.003115265,14,0.043613707,4,0.012461059,0.277258567,0,0,0,0,321,,Yes,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0406_U5,WF0406,Biology,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.224195579,0.461538462,6,0.193548387,5.270680909,2.162931174,0.5163085,1.956827325,0.514375773,0.031289491,0.017705996,0.048867827,0.002234043,-0.001702128,0.00393617,0.41309,0.38048746,0.561153043,0.119204758,2.453110291,1.738341853,0.338676458,0,0,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,2,34.12835878,0,0,0,0,2,1,1,9,0,2,0,3.64631984,1.791759469,3.217150449,5.086956522,3,257,254,0.969465649,13,1,17,1.818789821,0,0,1,0,0,0,0,1,0.003816794,0.003816794,5,0.019083969,0,0,12,0.045801527,2,0.007633588,0,0,14,0.053435115,3,0.011450382,0.519083969,0,0,0,0,262,,No,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0410_U1,WF0410,English,Someone else,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",5.909891715,0.344827586,15,0.182926829,5.214538011,3.314383745,3.464231204,3.290891706,3.578517764,0.077672782,0.02122569,0.098898472,0.012686567,-0.005393487,0.018080054,0.94516,-0.012079221,0.532142501,-1.023429239,2.844228168,12.69598068,3.313003849,0,3,0,1,0,0,1,1,12,1,0,0,1,0,0,1,0,0,0,32,1,35,0,2,0,0,2,0,0,59.92715349,0,0,11,0,0,1,11,31,13,0,2,3.224377902,3.36729583,3.708275803,3.931412894,32,765,733,0.955671447,94,0,6,0.945600813,0,0,26,20,0.026075619,4,0.005215124,2,0.002607562,0.033898305,18,0.023468057,4,0.005215124,97,0.126466754,81,0.105606258,2,0.002607562,99,0.129074316,39,0.050847458,0.359843546,0,0,1,0.001303781,767,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0410_U2,WF0410,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",0,0,2,0.095238095,4.56682528,3.006967543,1.296358337,2.441795853,0.818524768,0.101328656,0.038758503,0.14008716,0.037142857,-0.0125,0.049642857,0.75635,-0.122488034,0.58938769,-0.359039211,3.356448376,2.766946711,0.432479982,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,6,0,6,0,1,0,0,0,0,0,7.529495082,0,0,5,0,0,1,6,5,1,0,0,2.449567283,2.48490665,2.311766644,3.964028777,4,124,120,0.805369128,6,0,3,1.324986392,0,0,5,5,0.033557047,0,0,0,0,0.033557047,3,0.020134228,3,0.020134228,4,0.026845638,7,0.046979866,0,0,7,0.046979866,9,0.060402685,0.530201342,0,0,0,0,149,,No,3,Reflect,Annotator3,Final,N/A,N/A
WF0410_U3,WF0410,English,A teacher,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.398594935,0.444444444,6,0.25,5.525452939,3.26164051,3.306321259,2.806517978,3.563806797,0.076279902,0.034697071,0.110976973,0.017957746,-0.005046948,0.023004695,0.81178,-0.06195839,0.427502347,-0.300200288,2.815913466,2.292772603,2.940302193,0,0,1,0,0,0,0,0,2,0,0,0,1,0,0,1,0,0,0,0,0,1,0,3,0,0,0,1,0,12.9379708,0,0,0,0,0,0,2,6,0,1,0,3.751854253,1.609437912,2.017527312,3.957746479,4,56,52,0.226086957,9,2,3,1.147474686,0,0,6,2,0.008695652,0,0,4,0.017391304,0.026086957,5,0.02173913,2,0.008695652,9,0.039130435,11,0.047826087,12,0.052173913,11,0.047826087,13,0.056521739,0.482608696,0,0,0,0,230,,No,3,Reflect,Annotator3,Draft,N/A,N/A
WF0410_U5,WF0410,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.42768828,0.56,9,0.125,4.836281907,3.303133633,2.493299409,3.326095239,2.318693186,0.057041954,0.06071978,0.117761734,0.012051282,-0.034059829,0.046111111,0.83689,0.182532384,0.508448718,-0.803032129,2.625415289,1.99962912,1.457639789,0,13,1,0,0,0,2,1,2,2,0,0,0,0,0,0,0,5,4,0,0,0,0,4,0,0,0,2,0,57.02582023,0,0,0,0,0,1,4,17,0,3,0,3.886705197,2.48490665,3.300638446,4.316239316,48,480,432,0.696774194,19,0,6,1.0284663,0,0,18,15,0.024193548,0,0,3,0.00483871,0.029032258,11,0.017741935,4,0.006451613,36,0.058064516,86,0.138709677,0,0,30,0.048387097,28,0.04516129,0.380645161,0,0,1,0.001612903,620,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0411_U1,WF0411,English,,,#NULL!,#NULL!,,6.608164688,0.717948718,7,0.122807018,4.818724043,3.223675355,3.290603793,3.407169282,3.236032415,0.08596811,0.046960276,0.132928386,0.029447323,-0.022970639,0.052417962,0.8193,0.261168088,0.533540936,-0.478432296,2.890278661,3.835010939,2.661016135,0,1,0,0,0,0,1,0,1,1,0,0,2,0,0,0,0,12,0,0,0,0,0,2,0,0,0,0,2,63.32362257,0,0,6,0,1,1,4,30,0,4,0,3.871201011,2.48490665,3.669955236,4.579861111,4,599,595,0.904255319,43,5,6,1.005117897,0,0,17,14,0.021276596,2,0.003039514,1,0.001519757,0.025835866,5,0.007598784,5,0.007598784,22,0.03343465,62,0.094224924,0,0,44,0.066869301,24,0.036474164,0.41337386,6,0.009118541,3,0.004559271,658,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WF0412_U1,WF0412,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.339987936,0.574468085,31,0.227941176,5.433465099,3.221270719,3.497139998,3.313555269,3.467788344,0.09204667,0.045395783,0.137432883,0.015191388,-0.010430622,0.02562201,0.99603,0.216628648,0.648583885,-2.591734945,3.069706769,2.554132808,7.105653539,0,0,1,0,0,0,1,0,1,0,0,0,2,0,0,0,0,1,0,1,0,0,0,3,0,0,0,0,1,68.8258553,0,0,0,0,0,1,3,27,10,6,0,4.750712491,2.197224577,3.372079626,4.005763689,50,1139,1089,0.955263158,48,4,19,1.247154615,0,0,48,37,0.03245614,3,0.002631579,8,0.007017544,0.042105263,25,0.021929825,6,0.005263158,11,0.009649123,123,0.107894737,0,0,51,0.044736842,25,0.021929825,0.321929825,3,0.002631579,2,0.001754386,1140,,No,3,Reflect,Annotator2,Final,N/A,N/A
WF0415_U1,WF0415,English,,,#NULL!,#NULL!,,6.579191424,0.633333333,28,0.097560976,4.590675398,3.055866066,3.20316099,3.236263354,2.785421443,0.103811967,0.020052504,0.123864471,0.014587094,-0.002662455,0.017249549,1,0.39737611,0.576132131,-3.500390071,2.748634965,17.66141313,10.19761263,0,1,0,0,1,0,0,2,13,0,0,0,0,0,0,0,0,10,0,10,0,11,0,13,0,0,0,0,2,240.7261461,0,0,22,3,1,0,4,76,0,2,8,5.295130476,2.397895273,3.781234768,4.760145919,6,1577,1571,0.650517598,88,12,10,0.711029589,2,0.000828157,77,49,0.020289855,12,0.004968944,16,0.006625259,0.031884058,38,0.01573499,2,0.000828157,39,0.016149068,183,0.075776398,1,0.000414079,101,0.041821946,70,0.028985507,0.222360248,5,0.002070393,11,0.004554865,2415,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0415_U2,WF0415,English,,,#NULL!,#NULL!,,6.579429431,0.666666667,41,0.125,4.836281907,2.827189141,2.229347273,3.045412262,1.675999028,0.138682005,0.033981719,0.172608003,0.019938707,-0.004977712,0.024916419,1,0.597270765,0.568631093,-3.11625698,2.699856425,17.68421743,6.581668791,0,0,1,0,0,0,0,0,9,1,0,0,2,0,0,0,0,27,0,8,0,5,0,13,0,0,0,0,3,265.1093019,0,0,20,0,2,2,10,84,2,2,5,4.544813385,3.33220451,4.71937621,5.128603945,1,2415,2414,0.835005189,114,19,40,1.17131808,0,0,198,137,0.047388447,37,0.01279834,24,0.008301626,0.068488412,56,0.01937046,1,0.000345901,32,0.011068834,119,0.041162228,1,0.000345901,123,0.042545832,101,0.034936008,0.237979938,2,0.000691802,14,0.004842615,2891,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0415_U3,WF0415,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.569832989,0.655737705,8,0.04494382,3.827419351,2.881664673,1.335361415,3.390042215,1.332127557,0.124078248,0.052073317,0.176151564,0.021835938,-0.005644531,0.027480469,0.96526,0.378867256,0.579993701,-2.0220846,2.834430782,16.26880297,4.930051471,0,1,0,1,0,0,0,1,6,1,0,0,3,0,0,0,0,14,0,7,0,5,0,20,0,0,0,0,1,147.6365001,0,0,22,0,1,4,5,48,0,1,3,4.50771485,2.63905733,4.36295088,4.820472441,4,866,862,0.614397719,55,10,9,0.870100927,0,0,93,62,0.044191019,18,0.012829651,13,0.009265859,0.066286529,30,0.021382751,2,0.001425517,41,0.029223093,61,0.043478261,1,0.000712758,70,0.049893086,68,0.048467569,0.292943692,2,0.001425517,4,0.002851033,1403,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WF0416_U1,WF0416,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.805844035,0.855670103,59,0.220149254,5.39883783,2.919935526,2.457582935,3.038252859,2.291647958,0.103015185,0.026095176,0.12910132,0.016263562,-0.007945298,0.024208861,0.84429,0.539318782,0.569970006,-2.814354982,2.710626159,12.61972064,3.775228664,0,3,0,1,2,1,1,0,6,0,1,0,0,0,0,0,0,4,0,3,0,2,0,2,4,1,0,1,1,218.4125178,0,0,0,0,5,0,6,84,3,0,4,5.111060575,2.564949357,4.141456139,4.935528757,31,2292,2261,0.954814189,98,0,27,1.093492673,4,0.001689189,61,37,0.015625,13,0.005489865,11,0.00464527,0.025760135,40,0.016891892,2,0.000844595,25,0.010557432,162,0.068412162,1,0.000422297,108,0.045608108,43,0.018158784,0.293074324,0,0,7,0.002956081,2368,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WF0998_U1,WF0998,Biology,A teacher,A little,0,1,I completed the assignment on a laptop or desktop computer.,#NULL!,#NULL!,0,0,0,1.777250922,0.857987033,2.258188839,0.477095627,0.017237377,0.014857806,0.031950087,0.003874057,-0.00340975,0.007283807,0,0,0.567950961,-5.348445779,2.191619537,21.48001439,7.430852016,0,0,0,0,0,0,0,2,2,1,0,0,0,0,0,0,0,49,1,8,0,17,0,35,0,0,0,0,1,278.0673294,0,0,36,2,0,0,5,61,2,6,2,4.81102224,2.63905733,3.672702557,3.525,5,1907,1902,0.941118258,80,9,8,0.695344749,0,0,16,10,0.004948046,0,0,6,0.002968827,0.007916873,8,0.003958436,0,0,143,0.070757051,15,0.007422068,1,0.000494805,85,0.042058387,14,0.006927264,0.191489362,0,0,0,0,2021,,No,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0998_U2,WF0998,Biology,,,#NULL!,#NULL!,,6.652780665,0.674698795,16,0.158415842,5.071516144,2.757053435,0.683085734,2.788394717,0.650035097,0.104656425,0.03004961,0.134706036,0.018493691,-0.003805205,0.022298896,0.99769,0.562835949,0.568314718,1.774327995,2.50558479,21.45553719,2.123632226,0,0,1,0,0,0,0,0,5,0,0,0,0,0,0,0,0,49,0,8,0,1,0,0,0,0,0,0,3,165.0749465,0,0,19,0,3,1,4,69,0,4,5,4.644390899,2.48490665,4.427571264,5.528846154,11,1481,1470,0.977393617,89,0,39,1.430250078,0,0,54,28,0.018617021,8,0.005319149,18,0.011968085,0.035904255,22,0.01462766,0,0,83,0.05518617,5,0.003324468,1,0.000664894,94,0.0625,32,0.021276596,0.333776596,0,0,0,0,1504,,Yes,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0998_U3,WF0998,Biology,,,#NULL!,#NULL!,,6.415734416,0.571428571,4,0.5,6.216606101,2.160272422,0.443213313,1.615261437,0.514375773,0.053374741,0.015239688,0.068614429,0.005961538,-0.002307692,0.008269231,0.26333,0.28088958,0.500628205,0.076758462,2.573128534,1.262371253,0.15262082,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,7,0,0,0,1,0,0,0,0,0,0,0,10.64850876,0,0,0,0,0,0,1,5,0,0,1,4.17438727,0.693147181,3.697775811,5.423076923,21,144,123,0.798701299,7,1,7,1.667028215,0,0,1,1,0.006493506,0,0,0,0,0.006493506,2,0.012987013,0,0,10,0.064935065,0,0,1,0.006493506,8,0.051948052,3,0.019480519,0.558441558,0,0,0,0,154,,No,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0998_U4,WF0998,Biology,,,#NULL!,#NULL!,,6.433475855,0.5625,6,0.162162162,5.094744566,2.849437272,0.381658313,1.841124084,0.485278302,0.087584665,0.017648545,0.105201664,0.008438486,-0.002917981,0.011356467,0.62256,0.579416844,0.571773641,0.469690733,2.466282165,1.914574503,0.52453402,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,14,0,0,0,0,0,4,0,0,0,0,0,34.89967139,0,0,0,0,1,3,1,12,0,0,0,4.146304301,1.609437912,3.656498869,5.541139241,6,225,219,0.584,9,0,21,1.755874856,0,0,7,4,0.010666667,1,0.002666667,2,0.005333333,0.018666667,6,0.016,0,0,19,0.050666667,1,0.002666667,1,0.002666667,18,0.048,9,0.024,0.528,0,0,0,0,375,,Yes,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0998_U5,WF0998,Biology,,,#NULL!,#NULL!,,6.41125243,0.571428571,11,0.234042553,5.459766575,2.421431285,0.630842698,2.27142978,0.868794704,0.041623264,0.028480903,0.070026042,0.008919271,-0.002994792,0.011914062,0.84937,0.413196735,0.3733,0.336152879,2.603295657,2.60175923,0.556512213,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,1,0,0,0,0,57.62217009,0,0,0,0,2,2,1,15,0,2,1,3.981015877,1.945910149,3.407955221,5.197333333,6,348,342,0.818181818,18,0,14,1.537728739,0,0,2,1,0.002392344,0,0,1,0.002392344,0.004784689,6,0.014354067,0,0,7,0.016746411,13,0.031100478,0,0,23,0.055023923,12,0.028708134,0.447368421,0,0,0,0,418,,No,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WF0999_U3,WF0999,English,Someone else,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.803904894,0.8,31,0.10367893,4.650897854,2.872095048,2.198022871,3.23253473,1.867163457,0.100518018,0.027715137,0.128224365,0.017,-0.007450549,0.024450549,1,0.460898068,0.576476775,-2.894366073,2.838670821,21.23392685,7.816907639,0,1,1,0,0,0,0,0,4,3,0,0,3,0,0,0,1,13,0,2,0,0,0,6,0,0,1,0,5,243.9043252,0,0,14,0,0,0,3,109,14,4,0,5.142562837,2.564949357,4.268465772,4.925842697,45,2339,2294,0.917967187,103,7,21,0.973283125,0,0,85,45,0.018007203,17,0.006802721,23,0.009203681,0.034013605,38,0.015206082,4,0.00160064,62,0.024809924,218,0.087234894,0,0,137,0.054821929,62,0.024809924,0.273309324,7,0.00280112,2,0.00080032,2499,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WG0001_U1,WG0001,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.474137686,0.583333333,10,0.14084507,4.954735409,2.652878067,3.460936284,3.46966089,3.552394424,0.246172088,0.019416987,0.142503031,0.024677716,-0.001012891,0.025690608,0.77768,0.196002336,0.484782136,-1.233481975,2.691538387,1.971242731,1.54714818,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,8,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,5,1,#NULL!,#NULL!,#NULL!,#NULL!,55.67023807,#NULL!,#NULL!,#NULL!,#NULL!,0,#NULL!,4,15,#NULL!,4,1,4.096194702,2.197224577,3.426380795,4.390018484,155,480,325,0.559380379,14,0,10,1.260350582,0,0,12,8,0.013769363,1,0.00172117,3,0.005163511,0.020654045,13,0.022375215,0,0,18,0.030981067,52,0.089500861,0,0,28,0.048192771,7,0.012048193,0.440619621,0,0,1,0.00172117,581,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0001_U2,WG0001,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.490616134,0.633333333,7,0.101449275,4.629367802,3.260153184,3.448025656,3.43983588,3.407564376,0.247329873,0.021850679,0.145515616,0.021970752,-0.000696379,0.022667131,0.7885,0.104523394,0.631337104,-0.66522532,2.887911569,2.657773573,0.824890792,#NULL!,#NULL!,#NULL!,1,2,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,1,70.28684352,#NULL!,#NULL!,#NULL!,#NULL!,0,5,3,19,3,#NULL!,#NULL!,4.47591535,2.079441542,3.500724075,4.230440967,142,607,465,0.609436435,19,0,11,1.187993559,0,0,39,36,0.047182176,0,0,3,0.003931848,0.051114024,13,0.017038008,0,0,12,0.015727392,76,0.099606815,0,0,34,0.044560944,8,0.010484928,0.376146789,0,0,0,0,763,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0001_U3,WG0001,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.427769872,0.642857143,5,0.092592593,4.538951241,3.183208127,0.945543454,3.168977747,0.92746542,0.222334022,0.016358127,0.127525138,0.041545455,-0.001181818,0.042727273,0.86551,0.285053545,0.50499109,-0.571872381,2.782999689,1.829646554,0.471709428,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,1,3,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,51.79061052,#NULL!,#NULL!,#NULL!,#NULL!,0,2,3,18,4,1,#NULL!,4.105394398,2.197224577,3.963594702,4.591575092,1,603,602,0.991762768,31,4,10,1.242403878,0,0,13,9,0.014827018,2,0.003294893,2,0.003294893,0.021416804,4,0.006589786,1,0.001647446,12,0.019769357,30,0.049423394,0,0,32,0.052718287,9,0.014827018,0.400329489,1,0.001647446,0,0,607,Unsure,No,2,Inform/Explore,Annotator1,Final,N/A,N/A
WG0002_U1,WG0002,English,No one helped me,A little,0,0,I completed the assignment on a laptop or desktop computer.,6.444661058,0.6,4,0.054054054,4.008315504,2.611722888,1.013983507,3.199696754,0.923607038,0.26172921,0.041626038,0.172417248,0.011743119,-0.010504587,0.022247706,0.99591,0.394707049,0.720323232,-0.214915906,3.247864958,2.981513909,1.925371933,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,73.27231945,#NULL!,#NULL!,#NULL!,#NULL!,0,2,4,22,#NULL!,2,#NULL!,3.730316644,2.564949357,3.153022394,4.688191882,94,479,385,0.641666667,26,0,6,1.041392685,0,0,28,25,0.041666667,2,0.003333333,1,0.001666667,0.046666667,3,0.005,0,0,4,0.006666667,27,0.045,0,0,35,0.058333333,12,0.02,0.376666667,2,0.003333333,3,0.005,600,Unsure,No,1,Persuade,Annotator1,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0002_U2,WG0002,English,No one helped me,A little,0,0,I completed the assignment on a laptop or desktop computer.,6.69688046,0.816513761,29,0.121338912,4.806795162,2.992211801,3.499545744,3.154395191,3.386130817,0.149643154,0.045477255,0.120298832,0.012052834,-0.010374243,0.022427078,0.87623,0.187505523,0.593697619,-3.418541846,3.200596937,7.153616995,7.221597757,#NULL!,1,#NULL!,1,3,#NULL!,#NULL!,1,2,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,1,152.1124034,1,#NULL!,10,#NULL!,0,#NULL!,5,91,#NULL!,12,1,5.007853651,2.48490665,3.781014777,4.116991643,46,1757,1711,0.86283409,101,0,28,1.179552371,0,0,75,60,0.030257186,8,0.004034291,7,0.003530005,0.037821483,39,0.019667171,1,0.000504286,17,0.008572869,233,0.117498739,0,0,119,0.060010086,53,0.026727181,0.277861826,6,0.003025719,1,0.000504286,1983,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0002_U3,WG0002,English,No one helped me,Somewhat,0,0,I completed the assignment on a laptop or desktop computer.,6.731395328,0.830508475,12,0.130434783,4.878510779,3.344184808,0.835351901,3.41476671,0.688313512,0.142208169,0.036393661,0.107497745,0.011571285,-0.015788153,0.027359438,0.93592,0.36690966,0.68612588,-0.769081851,2.90544854,4.796335012,2.455090924,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,1,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,10,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,122.5723697,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,4,51,#NULL!,4,#NULL!,4.592084946,2.302585093,3.808717303,4.582573455,134,975,841,0.772977941,47,0,8,0.921839423,0,0,29,23,0.021139706,5,0.004595588,1,0.000919118,0.026654412,13,0.011948529,0,0,18,0.016544118,29,0.026654412,0,0,63,0.057904412,24,0.022058824,0.329044118,2,0.001838235,1,0.000919118,1088,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WG0003_U1,WG0003,English,A tutor,A lot,0,0,I completed the assignment on a laptop or desktop computer.,6.672632366,0.775,8,0.1,4.615120517,3.32818384,2.184401648,3.397848085,2.064361716,0.171282129,0.03410699,0.119691155,0.020412518,-0.009495021,0.029907539,0.80847,0.307413376,0.661023039,-0.528226942,3.016522805,3.319575319,1.970593685,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,2,#NULL!,1,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,5,#NULL!,#NULL!,#NULL!,1,3,70.71945395,#NULL!,#NULL!,#NULL!,#NULL!,0,#NULL!,3,32,1,4,#NULL!,4.350994525,2.197224577,3.602147834,4.627507163,55,580,525,0.67394095,30,4,7,0.999386314,0,0,24,20,0.025673941,1,0.001283697,3,0.003851091,0.030808729,16,0.020539153,1,0.001283697,15,0.019255456,30,0.038510911,0,0,44,0.05648267,12,0.015404365,0.392811297,0,0,0,0,779,Unsure,Yes,2,Inform/Explore,Annotator1,Possible duplicate,N/A,N/A
WG0003_U2,WG0003,English,A tutor,A little,0,0,I completed the assignment on a laptop or desktop computer.,6.248384152,0.483870968,8,0.121212121,4.805758233,3.171259683,3.363995824,3.39602566,3.31349894,0.220464597,0.032300881,0.142533179,0.01908646,-0.009461664,0.028548124,0.76179,0.155560968,0.566465258,-0.200709103,3.013422043,2.569465496,2.915791168,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,1,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,53.73639714,#NULL!,#NULL!,#NULL!,#NULL!,0,1,2,17,5,6,#NULL!,4.335655417,2.079441542,3.973979493,4.306055646,264,629,365,0.536764706,20,0,7,1.052852307,0,0,22,18,0.026470588,1,0.001470588,3,0.004411765,0.032352941,11,0.016176471,0,0,7,0.010294118,73,0.107352941,0,0,34,0.05,24,0.035294118,0.416176471,0,0,3,0.004411765,680,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0003_U3,WG0003,English,"A parent, brother, sister or other relative",Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.508379886,0.647058824,13,0.160493827,5.08446692,3.218498243,2.46331911,3.373922284,2.122460224,0.24608525,0.034350659,0.157290191,0.014390034,-0.005927835,0.020317869,0.83488,0,0.627320292,-0.469245164,2.954060564,3.355034234,1.144827312,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,37.78626596,#NULL!,#NULL!,#NULL!,#NULL!,0,#NULL!,3,22,3,6,#NULL!,4.283586562,2.079441542,4.178461577,4.689655172,37,570,533,0.818740399,34,4,9,1.170991327,0,0,38,24,0.036866359,10,0.015360983,4,0.006144393,0.058371736,14,0.021505376,1,0.001536098,7,0.010752688,34,0.052227343,0,0,38,0.058371736,31,0.047619048,0.437788018,1,0.001536098,4,0.006144393,651,Unsure,No,1,Persuade,Annotator1,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0003_U4,WG0003,English,,,#NULL!,#NULL!,,6.672632366,0.775,8,0.1,4.615120517,3.32818384,2.184401648,3.397848085,2.064361716,0.171282129,0.03410699,0.119691155,0.020412518,-0.009495021,0.029907539,0.80847,0,0.661023039,-0.528226942,3.016522805,3.319575319,1.970593685,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,2,#NULL!,1,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,5,#NULL!,#NULL!,#NULL!,1,3,70.71945395,#NULL!,#NULL!,#NULL!,#NULL!,0,#NULL!,3,32,1,4,#NULL!,4.350994525,2.197224577,3.602147834,4.627507163,55,580,525,0.67394095,30,4,7,0.999386314,0,0,24,20,0.025673941,1,0.001283697,3,0.003851091,0.030808729,16,0.020539153,1,0.001283697,15,0.019255456,30,0.038510911,0,0,44,0.05648267,12,0.015404365,0.392811297,0,0,0,0,779,Unsure,Yes,2,Inform/Explore,Annotator1,Possible Duplicate,N/A,N/A
WG0004_U1,WG0004,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.709935012,0.818181818,14,0.12962963,4.872366064,3.08399328,3.440628631,3.439609753,3.455357134,0.243189952,0.030092826,0.151687802,0.017674806,-0.005022198,0.022697003,0.82193,0,0.627360089,-0.736417482,2.915541218,2.411961155,2.110510359,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,1,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,1,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,2,101.7743559,#NULL!,#NULL!,#NULL!,#NULL!,0,1,3,29,#NULL!,#NULL!,#NULL!,4.71961432,2.079441542,3.83156588,4.361204013,36,696,660,0.692549843,28,4,9,1.018861103,0,0,43,38,0.039874082,2,0.002098636,3,0.003147954,0.045120672,15,0.015739769,0,0,14,0.014690451,85,0.089192025,0,0,37,0.038824764,34,0.03567681,0.33683106,5,0.00524659,0,0,953,Unsure,No,2,Inform/Explore,Annotator1,Final,N/A,N/A
WG0004_U2,WG0004,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.549109457,0.730769231,10,0.10989011,4.70853971,3.069077373,1.213916,3.302794214,1.07489854,0.305237084,0.031047426,0.183665968,0.065996287,-0.00157797,0.067574257,0.88118,0,0.580695652,-0.780368597,2.765388637,1.581321677,1.988801607,#NULL!,2,#NULL!,#NULL!,3,#NULL!,2,2,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,6,#NULL!,#NULL!,#NULL!,#NULL!,2,131.1409099,#NULL!,#NULL!,#NULL!,1,0,2,3,19,2,#NULL!,#NULL!,4.611400736,2.079441542,3.890184135,4.474534161,5,162,157,0.177802945,28,4,4,0.742726021,0,0,43,27,0.030577576,2,0.002265006,14,0.01585504,0.048697622,13,0.014722537,1,0.001132503,18,0.020385051,36,0.040770102,0,0,30,0.033975085,24,0.027180068,0.238958097,5,0.005662514,7,0.00792752,883,Unsure,No,2,Inform/Explore,Annotator1,Final,N/A,N/A
WG0004_U3,WG0004,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.298686607,0.564102564,19,0.135714286,4.917893242,3.294051129,3.379395866,3.279507876,3.335726294,0.1803976,0.060184369,0.150383169,0.016196778,-0.013521289,0.029718067,0.9576,0,0.575094188,-1.594558197,3.015510167,2.859702029,5.224753729,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,3,#NULL!,#NULL!,#NULL!,8,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,54.59306859,#NULL!,#NULL!,#NULL!,#NULL!,1,1,3,22,8,5,#NULL!,4.567814399,2.197224577,3.915835516,4.017301038,63,714,651,0.688888889,30,4,14,1.199064111,0,0,37,25,0.026455026,6,0.006349206,6,0.006349206,0.039153439,18,0.019047619,15,0.015873016,14,0.014814815,131,0.138624339,0,0,43,0.045502646,23,0.024338624,0.358730159,1,0.001058201,2,0.002116402,945,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0005_U1,WG0005,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.755513076,0.863157895,27,0.142105263,4.963580465,3.101614959,1.939186899,3.29938963,1.799743137,0.18045077,0.044723567,0.134942733,0.024160448,-0.015858209,0.040018657,0.92489,0,0.703473622,-1.8412945,3.131272549,6.190881074,3.572963926,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,1,#NULL!,7,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,12,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,179.4759691,#NULL!,#NULL!,#NULL!,1,2,1,3,82,5,4,#NULL!,5.179909135,2.197224577,3.83583288,4.630393996,383,1545,1162,0.648075851,67,0,13,0.916475968,0,0,63,46,0.025655326,7,0.003904071,10,0.005577245,0.035136642,29,0.01617401,0,0,22,0.012269939,105,0.058561071,0,0,99,0.055214724,61,0.034021194,0.326268823,2,0.001115449,2,0.001115449,1793,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WG0005_U2,WG0005,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.374783881,0.567567568,7,0.095890411,4.573580556,3.123321831,3.404736952,3.521734275,3.452999127,0.337487311,0.030019322,0.198762977,0.045951036,-0.013370998,0.059322034,0.81524,0,0.624085714,-0.320321749,3.062405833,2.647502,1.217967914,#NULL!,1,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,37.97760274,#NULL!,#NULL!,#NULL!,#NULL!,1,1,3,21,7,5,#NULL!,4.066173685,2.197224577,3.962873138,4.580952381,309,329,20,0.033670034,2,0,5,0.973936017,0,0,26,23,0.038720539,3,0.005050505,0,0,0.043771044,12,0.02020202,0,0,7,0.011784512,65,0.109427609,0,0,41,0.069023569,15,0.025252525,0.457912458,0,0,0,0,594,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0005_U3,WG0005,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.453579788,0.625,16,0.168421053,5.132387052,3.072825917,3.486749472,3.454725363,3.341202984,0.195284666,0.048444827,0.14608716,0.025033025,-0.014299868,0.039332893,0.7965,0,0.634464722,-0.839555958,3.171598534,3.018237378,2.645879884,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,47.53294343,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,4,30,8,6,#NULL!,4.316153891,2.302585093,3.92520854,4.481975968,102,528,426,0.509569378,35,0,7,0.97188815,0,0,24,18,0.0215311,3,0.003588517,3,0.003588517,0.028708134,10,0.011961722,1,0.001196172,5,0.005980861,77,0.092105263,0,0,53,0.063397129,27,0.032296651,0.417464115,0,0,0,0,836,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0007_U1,WG0007,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.57533184,0.714285714,7,0.076086957,4.34493409,2.964816868,1.584450545,3.128086364,1.866780752,0.30555565,0.023080517,0.175804579,0.028024194,-0.006686828,0.034711022,0.9055,0,0.672641414,0.03054912,2.962724463,7.72432156,1.350268413,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,1,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,1,73.01113095,#NULL!,#NULL!,9,#NULL!,0,#NULL!,4,35,5,5,#NULL!,4.276666119,2.302585093,3.869128776,5.427777778,56,330,274,0.330917874,12,6,7,0.97562048,0,0,23,20,0.024154589,0,0,3,0.003623188,0.027777778,3,0.003623188,0,0,4,0.004830918,35,0.042270531,1,0.001207729,54,0.065217391,22,0.026570048,0.410628019,0,0,1,0.001207729,828,Unsure,Yes,1,Persuade,Annotator1,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WG0007_U2,WG0007,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.72558659,0.814814815,5,0.032258065,3.50429728,2.908092027,1.070389922,3.199775851,0.983669368,0.165217249,0.063664764,0.146273388,0.015340909,-0.031066716,0.046407625,0.95078,0,0.602582103,-1.452625625,2.93788063,6.113159121,4.331620321,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,2,#NULL!,9,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,32,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,170.4115995,3,#NULL!,#NULL!,1,1,#NULL!,3,66,6,6,#NULL!,5.121729342,2.079441542,3.791710928,4.703952274,14,1215,1201,0.785994764,68,4,13,0.978082477,0,0,52,37,0.02421466,5,0.003272251,10,0.006544503,0.034031414,21,0.013743455,2,0.001308901,48,0.031413613,90,0.058900524,0,0,85,0.055628272,48,0.031413613,0.319371728,1,0.00065445,8,0.005235602,1528,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WG0007_U3,WG0007,English,No one helped me,Not at all,0,1,I completed the assignment on a laptop or desktop computer.,6.570702676,0.697674419,11,0.157142857,5.063498784,2.819886841,3.373362983,3.422615198,3.448077077,0.179079208,0.074492009,0.164015613,0.01648,-0.01516,0.03164,0.90221,0,0.5352075,-1.05476606,3.116990777,3.779295466,1.527246464,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,50.99769637,#NULL!,#NULL!,6,#NULL!,0,1,5,31,#NULL!,5,1,3.941581808,2.48490665,3.372645431,4.889967638,7,656,649,0.917963225,46,5,10,1.180248389,0,0,25,20,0.028288543,1,0.001414427,4,0.005657709,0.035360679,14,0.01980198,2,0.002828854,4,0.005657709,95,0.13437058,0,0,48,0.067892504,32,0.045261669,0.449787836,0,0,1,0.001414427,707,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0008_U1,WG0008,English,,,#NULL!,#NULL!,,6.560183039,0.727272727,7,0.14,4.94875989,3.310875012,2.703301452,2.607631805,2.845923067,0.165463705,0.030730605,0.113462457,0.017574692,-0.006810193,0.024384886,0.78621,0,0.499617065,-0.759412329,2.734956443,4.676099121,1.37410121,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,73.85584175,#NULL!,#NULL!,#NULL!,#NULL!,0,3,#NULL!,27,#NULL!,3,#NULL!,4.550361949,1.791759469,3.660848953,4.533450704,3,376,373,0.610474632,30,1,7,1.095400512,0,0,15,9,0.014729951,2,0.003273322,4,0.006546645,0.024549918,8,0.01309329,0,0,8,0.01309329,22,0.036006547,0,0,34,0.055646481,19,0.031096563,0.384615385,0,0,2,0.003273322,611,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WG0008_U2,WG0008,English,,,#NULL!,#NULL!,,6.664274747,0.703703704,9,0.14516129,4.98471074,3.058508759,3.445023404,3.319798097,3.2822372,0.261638736,0.042392513,0.173123697,0.019179894,-0.008553792,0.027733686,0.96913,0,0.598435807,-0.619796507,2.889165721,2.978429106,0.920615348,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,1,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,2,55.05743416,#NULL!,#NULL!,#NULL!,#NULL!,0,3,#NULL!,22,#NULL!,2,#NULL!,4.952299717,1.386294361,4.131453387,4.48409894,129,598,469,0.771381579,18,0,6,1.036166455,0,0,37,27,0.044407895,7,0.011513158,3,0.004934211,0.060855263,13,0.021381579,2,0.003289474,8,0.013157895,38,0.0625,0,0,27,0.044407895,18,0.029605263,0.393092105,0,0,4,0.006578947,608,Unsure,No,1,Persuade,Annotator1,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0008_U3,WG0008,English,,,#NULL!,#NULL!,,0,0,6,0.111111111,4.719490443,2.596936579,3.39225592,3.342848033,3.566830186,0.169868573,0.028860215,0.113794502,0.012352941,-0.015823529,0.028176471,0.8349,0,0.626483378,-0.197622527,2.892868407,2.77088448,1.187586453,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,1,41.69094832,#NULL!,#NULL!,#NULL!,#NULL!,0,1,#NULL!,2,#NULL!,18,#NULL!,4.440295543,1.609437912,3.084780452,4.518867925,29,316,287,0.625272331,18,0,4,0.987424787,0,0,8,5,0.010893246,2,0.004357298,1,0.002178649,0.017429194,6,0.013071895,0,0,3,0.006535948,33,0.071895425,1,0.002178649,20,0.043572985,14,0.030501089,0.450980392,0,0,0,0,459,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0009_U1,WG0009,English,No one helped me,A little,1,0,I completed the assignment on a laptop or desktop computer.,6.333691195,0.526315789,7,0.162790698,5.098589379,3.155373637,0.987081005,2.845905902,1.000769179,0.216711126,0.015465116,0.123820679,0.0375,-0.000116279,0.037616279,0.72668,0,0.672970185,-0.739134778,2.57970601,1.594622004,1.634216079,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,4,2,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,1,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,1,71.81285959,#NULL!,#NULL!,#NULL!,#NULL!,1,2,4,12,#NULL!,1,#NULL!,3.578878559,2.48490665,3.698214283,4.755813953,8,395,387,0.830472103,19,3,10,1.351394814,0,0,7,4,0.008583691,0,0,3,0.006437768,0.015021459,11,0.02360515,1,0.002145923,14,0.030042918,21,0.045064378,0,0,21,0.045064378,11,0.02360515,0.429184549,3,0.006437768,0,0,466,Unsure,No,2,Inform/Explore,Annotator1,Final,N/A,N/A
WG0009_U2,WG0009,English,No one helped me,A little,1,0,I completed the assignment on a laptop or desktop computer.,6.56021896,0.64,5,0.069444444,4.254824377,2.855069649,3.03787474,3.351614398,3.092800168,0.256177463,0.032408834,0.160497566,0.013082627,-0.008739407,0.021822034,0.82388,0,0.627389666,-0.165901729,3.273764839,2.705966597,0.915558335,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,6,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,28.31998352,#NULL!,#NULL!,#NULL!,1,0,#NULL!,4,18,#NULL!,3,#NULL!,3.850147602,2.302585093,3.727945296,4.431914894,60,485,425,0.823643411,24,4,7,1.16333707,0,0,26,22,0.042635659,1,0.001937984,3,0.005813953,0.050387597,11,0.021317829,11,0.021317829,10,0.019379845,31,0.060077519,0,0,29,0.05620155,14,0.027131783,0.488372093,1,0.001937984,1,0.001937984,516,Unsure,No,1,Persuade,Annotator1,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0009_U3,WG0009,English,No one helped me,A little,1,0,I completed the assignment on a laptop or desktop computer.,6.372732731,0.476190476,5,0.104166667,4.655546393,3.225437908,3.293078744,2.990687764,3.449609352,0.227587,0.025347728,0.139141228,0.020100865,-0.005259366,0.025360231,0.89453,0,0.663609002,-0.530273045,2.950206529,1.640042815,1.538052693,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,5,1,#NULL!,#NULL!,#NULL!,#NULL!,29.81466416,#NULL!,#NULL!,#NULL!,#NULL!,0,1,2,13,#NULL!,5,#NULL!,3.652100203,2.197224577,3.154234658,4.13832853,1,232,231,0.611111111,22,2,6,1.227192715,0,0,6,3,0.007936508,2,0.005291005,1,0.002645503,0.015873016,2,0.005291005,3,0.007936508,10,0.026455026,33,0.087301587,0,0,23,0.060846561,9,0.023809524,0.513227513,0,0,2,0.005291005,378,Unsure,,3,Reflect,Annotator1,Final,N/A,N/A
WG0010_U1,WG0010,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.228606437,0.518518519,4,0.06557377,4.198310664,2.546497806,2.583508608,2.987810959,2.803645931,0.200483155,0.028004292,0.128245869,0.018079399,-0.00472103,0.022800429,0.77412,0.002283814,0.450958579,-0.887558396,3.075852742,1.735459038,0.945010171,#NULL!,#NULL!,2,#NULL!,1,#NULL!,#NULL!,1,1,4,#NULL!,#NULL!,3,2,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,32.59688335,#NULL!,#NULL!,#NULL!,#NULL!,1,1,3,14,4,5,#NULL!,3.946961057,2.197224577,2.865242331,3.967811159,4,491,487,0.981854839,30,4,4,0.957344626,0,0,14,13,0.026209677,0,0,1,0.002016129,0.028225806,6,0.012096774,2,0.004032258,19,0.038306452,30,0.060483871,0,0,31,0.0625,20,0.040322581,0.39516129,1,0.002016129,1,0.002016129,496,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0010_U2,WG0010,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.488892459,0.642857143,11,0.164179104,5.107030367,2.546893449,0.886444498,2.795221037,0.864840888,0.229410383,0.037933991,0.152600423,0.021124031,-0.009205426,0.030329457,0.83169,0.68617482,0.589596826,-0.220791586,2.848459269,2.474719787,0.616075652,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,32.28627059,#NULL!,#NULL!,#NULL!,#NULL!,0,1,4,20,#NULL!,3,#NULL!,3.830615731,2.397895273,3.929995223,5.305719921,115,430,315,0.548780488,17,0,7,1.120413408,0,0,7,5,0.008710801,1,0.00174216,1,0.00174216,0.012195122,7,0.012195122,3,0.005226481,7,0.012195122,27,0.047038328,0,0,32,0.055749129,12,0.020905923,0.508710801,1,0.00174216,0,0,574,Unsure,No,1,Persuade,Annotator1,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0010_U3,WG0010,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.716502212,0.804347826,13,0.103174603,4.646068368,2.925054923,1.014843342,3.293733827,0.840096926,0.236155667,0.036244795,0.154322628,0.034138655,-0.00710084,0.041239496,0.77273,0.459987922,0.656906396,-0.76418545,2.757116321,3.249329392,5.484863187,#NULL!,1,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,3,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,7,#NULL!,#NULL!,#NULL!,#NULL!,5,95.97310828,#NULL!,#NULL!,#NULL!,1,2,3,4,39,#NULL!,#NULL!,#NULL!,4.775756487,2.302585093,4.390130544,4.801854975,24,1266,1242,0.949541284,47,0,16,1.121639143,0,0,46,22,0.016819572,2,0.001529052,22,0.016819572,0.035168196,24,0.018348624,2,0.001529052,25,0.01911315,21,0.016055046,0,0,51,0.038990826,49,0.037461774,0.334097859,1,0.000764526,2,0.001529052,1308,Unsure,No,2,Inform/Explore,Annotator1,Final,N/A,N/A
WG0011_U1,WG0011,English,No one helped me,A lot,1,0,I completed the assignment on a laptop or desktop computer.,6.29434019,0.464285714,16,0.228571429,5.436214217,2.965569315,3.401014722,3.379003342,3.415733734,0.318129001,0.013699812,0.172764313,0.026758794,-0.00381072,0.030569514,0.89643,0,0.451532977,-0.294226193,2.795787772,1.751251717,1.539046409,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,2,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,1,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,72.50980371,#NULL!,#NULL!,#NULL!,#NULL!,0,1,3,13,5,6,#NULL!,4.189654742,2.197224577,3.926911027,4.338383838,37,319,282,0.439252336,25,4,6,1.014763843,0,0,35,32,0.049844237,1,0.001557632,2,0.003115265,0.054517134,7,0.010903427,4,0.00623053,7,0.010903427,64,0.099688474,0,0,32,0.049844237,12,0.018691589,0.378504673,0,0,0,0,642,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0011_U2,WG0011,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.399425498,0.571428571,9,0.118421053,4.782655506,3.207344407,1.781189142,3.558151834,2.12169936,0.198851135,0.036351559,0.135777127,0.020485175,-0.010815364,0.031300539,0.88556,0,0.555761241,-0.799608443,2.842314655,3.754958945,1.442737856,#NULL!,#NULL!,#NULL!,1,1,#NULL!,#NULL!,#NULL!,6,1,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,10,#NULL!,#NULL!,#NULL!,#NULL!,1,6,1,#NULL!,#NULL!,#NULL!,#NULL!,104.2761206,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,3,24,5,10,#NULL!,4.520428958,2.079441542,3.342738639,4.587755102,10,734,724,0.903870162,45,4,6,0.928940259,0,0,22,13,0.016229713,4,0.004993758,5,0.006242197,0.027465668,12,0.014981273,0,0,30,0.037453184,53,0.066167291,0,0,46,0.057428215,17,0.021223471,0.358302122,8,0.009987516,2,0.002496879,801,Unsure,No,2,Inform/Explore,Annotator1,Final,N/A,N/A
WG0011_U3,WG0011,English,No one helped me,A lot,1,0,I completed the assignment on a laptop or desktop computer.,6.54686092,0.631578947,7,0.072916667,4.302938333,3.316472994,3.383600531,3.285854949,3.609618579,0.166308357,0.025261596,0.108415774,0.015178571,-0.006892857,0.022071429,0.86685,0,0.419804556,-1.018009846,2.956301255,2.341206224,3.133351596,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,6,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,51.31856392,#NULL!,#NULL!,#NULL!,1,0,5,4,24,5,#NULL!,#NULL!,4.241326753,2.302585093,3.758183079,4.079136691,101,566,465,0.611842105,32,0,11,1.189593729,0,0,23,18,0.023684211,2,0.002631579,3,0.003947368,0.030263158,11,0.014473684,0,0,9,0.011842105,68,0.089473684,0,0,43,0.056578947,12,0.015789474,0.389473684,1,0.001315789,5,0.006578947,760,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0012_U1,WG0012,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.404980577,0.590909091,14,0.133333333,4.900324273,3.277576977,3.393110975,3.252885785,3.417719039,0.202141128,0.042945619,0.144016183,0.012472222,-0.010138889,0.022611111,0.90951,0,0.638145948,-1.772590628,3.278164364,3.000950293,3.168239729,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,1,68.11023687,#NULL!,#NULL!,#NULL!,#NULL!,2,5,3,27,9,#NULL!,#NULL!,4.602945491,2.197224577,4.040099174,3.967706013,94,189,95,0.096251266,28,4,5,0.782892105,0,0,41,31,0.031408308,3,0.003039514,7,0.007092199,0.04154002,20,0.020263425,3,0.003039514,7,0.007092199,122,0.12360689,0,0,48,0.048632219,24,0.024316109,0.351570415,1,0.001013171,1,0.001013171,987,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0012_U2,WG0012,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.638774436,0.72972973,9,0.09375,4.551241844,3.21542541,2.929640085,3.536365353,2.620037791,0.254526125,0.041339476,0.168602539,0.014091471,-0.010692213,0.024783684,0.92224,0,0.644088873,-0.258224803,3.11504249,3.188964535,2.052894901,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,3,1,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,85.79071822,#NULL!,#NULL!,#NULL!,#NULL!,1,1,4,30,#NULL!,2,#NULL!,4.203448064,2.48490665,3.681292192,4.554171856,9,801,792,0.90617849,39,5,7,0.954683978,0,0,49,42,0.04805492,2,0.00228833,5,0.005720824,0.056064073,20,0.022883295,2,0.00228833,8,0.009153318,40,0.04576659,0,0,42,0.04805492,21,0.02402746,0.402745995,1,0.001144165,1,0.001144165,874,Unsure,No,1,Persuade,Annotator1,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0012_U3,WG0012,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.652455476,0.725,21,0.308823529,5.736002875,2.316415893,0.966256464,2.812741584,0.971976802,0.218206539,0.024129085,0.133232355,0.037840746,-0.002833572,0.040674319,0.82505,0,0.699647908,-0.786159434,2.892498055,3.173914794,2.213174403,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,107.0102858,#NULL!,#NULL!,#NULL!,#NULL!,1,3,4,30,#NULL!,2,1,4.238444906,2.302585093,3.937935632,4.828282828,75,643,568,0.747368421,33,0,8,1.061690514,0,0,19,14,0.018421053,0,0,5,0.006578947,0.025,15,0.019736842,0,0,10,0.013157895,15,0.019736842,0,0,45,0.059210526,19,0.025,0.318421053,4,0.005263158,1,0.001315789,760,Unsure,No,2,Inform/Explore,Annotator1,Final,N/A,N/A
WG0013_U1,WG0013,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.228606437,0.518518519,4,0.06557377,4.198310664,2.546497806,2.583508608,2.987810959,2.803645931,0.200483155,0.028004292,0.128245869,0.018079399,-0.00472103,0.022800429,0.77412,0,0.450958579,-0.887558396,3.075852742,1.735459038,0.945010171,#NULL!,#NULL!,2,#NULL!,1,#NULL!,#NULL!,1,1,4,#NULL!,#NULL!,3,2,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,32.59688335,#NULL!,#NULL!,#NULL!,#NULL!,1,1,3,14,4,5,#NULL!,3.946961057,2.197224577,2.865242331,3.967811159,4,491,487,0.981854839,30,4,4,0.957344626,0,0,14,13,0.026209677,0,0,1,0.002016129,0.028225806,6,0.012096774,2,0.004032258,19,0.038306452,30,0.060483871,0,0,31,0.0625,20,0.040322581,0.39516129,1,0.002016129,1,0.002016129,496,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0013_U2,WG0013,English,No one helped me,A lot,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.538828719,0.555555556,6,0.1,4.615120517,3.074135838,2.402741551,3.100848523,2.100980871,0.268858349,0.040792113,0.175221288,0.056049149,-0.002930057,0.058979206,0.91125,0,0.642393682,-0.497802738,3.002709164,2.588692469,0.487818496,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,1,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,43.16777855,#NULL!,#NULL!,#NULL!,#NULL!,2,3,3,16,5,#NULL!,#NULL!,4.073763855,2.197224577,3.275839695,4.474480151,34,460,426,0.724489796,22,4,8,1.16451471,0,0,29,7,0.011904762,7,0.011904762,15,0.025510204,0.049319728,8,0.013605442,0,0,5,0.008503401,24,0.040816327,0,0,31,0.052721088,14,0.023809524,0.31462585,4,0.006802721,0,0,588,Unsure,No,2,Inform/Explore,Annotator1,Final,N/A,N/A
WG0013_U3,WG0013,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.284876852,0.5,2,0.035087719,3.585952622,3.028888994,3.387677738,2.982962911,3.321647353,0.351180745,0.032473702,0.208064075,0.046971496,-0.010273159,0.057244656,0.88737,0.138678662,0.561996928,-0.36906947,3.141464825,1.997962873,1.205006401,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,2,#NULL!,#NULL!,#NULL!,1,29.08612869,#NULL!,#NULL!,#NULL!,#NULL!,0,2,3,13,5,1,#NULL!,3.737669618,2.302585093,3.242625499,4.219047619,84,187,103,0.227876106,14,4,3,0.882932352,0,0,30,22,0.048672566,6,0.013274336,2,0.004424779,0.066371681,6,0.013274336,1,0.002212389,7,0.015486726,73,0.161504425,0,0,28,0.061946903,12,0.026548673,0.411504425,2,0.004424779,3,0.006637168,452,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0014_U1,WG0014,English,No one helped me,Somewhat,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.539729697,0.72972973,6,0.068181818,4.236738085,3.383626324,3.441058678,3.020669416,3.555731284,0.270695223,0.039126072,0.174473683,0.029070881,-0.00862069,0.037691571,0.97794,0.07574045,0.707114513,-0.929415106,3.459951811,3.336877034,1.95233304,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,35.13663569,#NULL!,#NULL!,#NULL!,#NULL!,0,2,3,30,#NULL!,2,#NULL!,3.766997233,2.48490665,3.130771305,3.818882466,282,451,169,0.294938918,13,0,4,0.902046579,0,0,45,35,0.061082024,4,0.006980803,6,0.010471204,0.078534031,10,0.017452007,1,0.001745201,4,0.006980803,105,0.183246073,0,0,41,0.071553229,19,0.033158813,0.354275742,1,0.001745201,3,0.005235602,573,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0014_U2,WG0014,English,No one helped me,A lot,0,0,I completed the assignment on a laptop or desktop computer.,6.321007618,0.592592593,0,0,0,1.66301281,0.956115119,1.865866292,1.055222965,0.191428571,0.018222222,0.113936508,0.046,-0.003777778,0.049777778,1,0.292439143,0.591216243,-0.271887424,2.950371918,3.236192253,0.4456564,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,38.86743673,#NULL!,#NULL!,8,#NULL!,0,#NULL!,4,18,#NULL!,3,2,3.209947194,2.197224577,2.551930027,5.497757848,53,132,79,0.300380228,21,0,4,1.209759584,0,0,9,4,0.015209125,5,0.019011407,0,0,0.034220532,1,0.003802281,0,0,5,0.019011407,3,0.011406844,0,0,32,0.121673004,4,0.015209125,0.330798479,5,0.019011407,3,0.011406844,263,Unsure,No,2,Inform/Explore,Annotator1,Final,N/A,N/A
WG0014_U3,WG0014,English,No one helped me,A lot,1,0,I completed the assignment on a laptop or desktop computer.,6.301637927,0.538461538,6,0.077922078,4.36846101,2.847773698,3.402488486,3.231786744,3.502661701,0.255499216,0.040559475,0.168309083,0.046553498,-0.012602881,0.059156379,1,0.061284321,0.597630006,-0.569001159,3.370063154,14.62625349,1.998259151,#NULL!,1,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,22,#NULL!,22,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,33.76521978,#NULL!,#NULL!,32,#NULL!,0,#NULL!,14,46,3,1,1,2.748097702,3.433987204,3.549077037,4.19214876,61,542,481,0.872958258,39,1,13,1.390819746,0,0,29,23,0.041742287,4,0.007259528,2,0.003629764,0.052631579,11,0.019963702,0,0,9,0.016333938,86,0.156079855,0,0,45,0.081669691,12,0.021778584,0.431941924,2,0.003629764,3,0.005444646,551,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0015_U1,WG0015,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.644684429,0.793103448,21,0.173553719,5.16223254,3.101146709,3.569050278,3.385911605,3.362169938,0.116739424,0.063288023,0.121657735,0.011766467,-0.019700599,0.031467066,0.82551,0.282201713,0.596819575,-0.520186699,3.200521809,5.016755915,2.343704076,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,1,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,2,#NULL!,#NULL!,1,#NULL!,1,40.37669919,#NULL!,#NULL!,7,#NULL!,0,#NULL!,4,48,#NULL!,5,1,4.418840608,2.302585093,3.270477978,4.375903614,4,700,696,0.734952482,45,0,11,1.100908885,0,0,28,17,0.017951426,3,0.003167899,8,0.00844773,0.029567054,16,0.016895459,13,0.013727561,10,0.010559662,121,0.127771911,0,0,63,0.066525871,19,0.020063358,0.442449842,1,0.001055966,2,0.002111932,947,Unsure,No,3,Reflect,Annotator1,Final,N/A,N/A
WG0015_U2,WG0015,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.628516653,0.760869565,16,0.216216216,5.380893246,3.297360199,1.095303838,3.32184993,1.424219823,0.11184385,0.031719858,0.087641783,0.007747489,-0.02571736,0.033464849,0.92175,0.417389188,0.595747383,0.00522245,2.928315997,4.189972235,2.072726838,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,1,1,#NULL!,#NULL!,#NULL!,9,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,99.97589105,#NULL!,#NULL!,#NULL!,#NULL!,8,#NULL!,4,37,#NULL!,4,1,4.235554731,2.302585093,3.84266983,4.843704776,14,625,611,0.770491803,38,0,7,0.992431489,0,0,17,10,0.01261034,6,0.007566204,1,0.001261034,0.021437579,15,0.018915511,5,0.00630517,11,0.013871375,24,0.030264817,0,0,51,0.064312736,30,0.037831021,0.36443884,1,0.001261034,1,0.001261034,793,Unsure,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WG0015_U3,WG0015,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.216606101,0.52,4,0.133333333,4.900324273,2.662298989,3.224676715,3.011436523,3.369002607,0.244736206,0.018045034,0.140413137,0.029734848,-0.008838384,0.038573232,0.89237,0.368800194,0.615563545,-0.114945471,2.959040215,1.820643171,1.133806545,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,10,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,37.99966523,#NULL!,#NULL!,#NULL!,#NULL!,0,3,3,13,5,1,#NULL!,3.768922162,2.197224577,3.964191326,4.746153846,73,341,268,0.603603604,22,4,8,1.279165255,0,0,21,14,0.031531532,1,0.002252252,6,0.013513514,0.047297297,13,0.029279279,0,0,11,0.024774775,45,0.101351351,0,0,29,0.065315315,12,0.027027027,0.405405405,1,0.002252252,0,0,444,Unsure,No,3,Reflect,Annotator2,Final,N/A,N/A
WG0016_U1,WG0016,English,,,#NULL!,#NULL!,,6.244524889,0.473684211,10,0.114942529,4.753094626,3.421407087,3.655531007,3.486880122,3.563228259,0.247965776,0.026561247,0.150544135,0.027414021,-0.005390212,0.032804233,0.84056,0.116620043,0.559744581,-0.67704026,3.073190176,2.569303402,2.207622326,#NULL!,1,2,1,1,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,4,#NULL!,#NULL!,#NULL!,#NULL!,2,1,#NULL!,#NULL!,#NULL!,1,62.27838796,#NULL!,#NULL!,#NULL!,1,0,1,3,19,3,12,#NULL!,4.316153891,2.302585093,3.912587714,4.273698264,48,811,763,0.901891253,39,4,8,1.019376572,0,0,32,19,0.022458629,11,0.013002364,2,0.002364066,0.037825059,7,0.008274232,10,0.011820331,15,0.017730496,77,0.091016548,0,0,42,0.04964539,18,0.021276596,0.398345154,4,0.004728132,1,0.001182033,846,Unsure,No,3,Reflect,Annotator2,Draft,N/A,N/A
WG0016_U2,WG0016,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.301914304,0.6,12,0.235294118,5.46507729,3.21242195,1.183515616,3.516378444,1.451222888,0.166906468,0.034234509,0.117687743,0.01588586,-0.006771721,0.022657581,0.87923,0.276755516,0.575558694,0.044743229,2.878582875,3.114329778,1.38115133,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,5,#NULL!,1,#NULL!,1,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,1,55.49093164,#NULL!,#NULL!,#NULL!,#NULL!,0,#NULL!,4,18,4,4,#NULL!,4.065602093,2.302585093,3.66998502,4.650085763,122,274,152,0.233846154,8,0,4,0.854539596,0,0,21,18,0.027692308,1,0.001538462,2,0.003076923,0.032307692,10,0.015384615,4,0.006153846,17,0.026153846,25,0.038461538,0,0,35,0.053846154,12,0.018461538,0.398461538,2,0.003076923,1,0.001538462,650,Unsure,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WG0016_U3,WG0016,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.244524889,0.473684211,9,0.103448276,4.648691981,3.421407087,3.655531007,3.486880122,3.563228259,0.247234605,0.026596428,0.15021373,0.027450331,-0.004701987,0.032152318,0.79484,0.093711926,0.552563725,-0.685104287,3.022296917,2.563505529,2.198156372,#NULL!,1,2,#NULL!,1,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,5,3,#NULL!,#NULL!,#NULL!,#NULL!,2,1,#NULL!,#NULL!,#NULL!,1,62.11450857,#NULL!,#NULL!,#NULL!,1,0,1,3,19,3,12,#NULL!,4.317488114,2.302585093,3.802662049,4.262666667,48,811,763,0.901891253,39,4,8,1.019376572,0,0,32,19,0.022458629,11,0.013002364,2,0.002364066,0.037825059,7,0.008274232,10,0.011820331,17,0.020094563,77,0.091016548,0,0,42,0.04964539,18,0.021276596,0.399527187,4,0.004728132,1,0.001182033,846,Unsure,No,3,Reflect,Annotator2,Final,N/A,N/A
WG0017_U1,WG0017,English,No one helped me,A little,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.745556709,0.804347826,10,0.084033613,4.443046631,3.367321722,3.4247182,3.301069514,3.441242307,0.242434786,0.03328264,0.154500033,0.025339751,-0.00583239,0.03117214,0.98513,0.072073578,0.543160701,-1.666344017,3.158104097,3.945746182,2.902198204,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,61.33897298,#NULL!,#NULL!,#NULL!,#NULL!,0,1,4,40,#NULL!,1,#NULL!,4.292739944,2.48490665,3.858022273,3.807517084,33,904,871,0.904465213,48,0,9,1.014763843,0,0,61,48,0.049844237,10,0.010384216,3,0.003115265,0.063343718,12,0.012461059,0,0,11,0.011422638,127,0.131879543,0,0,52,0.053997923,35,0.036344756,0.339563863,1,0.001038422,1,0.001038422,963,Unsure,Yes,3,Reflect,Annotator2,Final,N/A,N/A
WG0017_U2,WG0017,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.478294479,0.64516129,5,0.04950495,3.922071361,3.344013999,3.595605596,3.378466603,3.510538255,0.223476019,0.049301982,0.161039991,0.036995342,-0.014091615,0.051086957,0.84039,0.146330016,0.638193182,-1.1388015,3.239447981,2.156584786,4.576364895,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,7,#NULL!,#NULL!,#NULL!,#NULL!,3,33.79711925,#NULL!,#NULL!,#NULL!,1,1,1,4,24,#NULL!,2,#NULL!,3.976561527,2.48490665,4.014261243,3.965625,80,701,621,0.869747899,29,0,7,1.033581423,0,0,29,16,0.022408964,3,0.004201681,10,0.014005602,0.040616246,12,0.016806723,12,0.016806723,14,0.019607843,91,0.12745098,0,0,36,0.050420168,19,0.026610644,0.397759104,2,0.00280112,3,0.004201681,714,Unsure,No,3,Reflect,Annotator2,Final,N/A,N/A
WG0017_U3,WG0017,English,A teacher,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.754139411,0.820895522,15,0.074626866,4.325811586,3.051568276,2.506365779,3.17925208,2.373217378,0.227090785,0.047139101,0.160684493,0.043555791,-0.007715395,0.051271186,0.89017,0.227047606,0.630019837,-2.208403062,3.139094739,5.882046871,9.888234515,#NULL!,#NULL!,1,#NULL!,1,#NULL!,#NULL!,#NULL!,6,6,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,6,#NULL!,#NULL!,#NULL!,#NULL!,3,126.4385037,#NULL!,#NULL!,#NULL!,2,0,1,4,59,#NULL!,3,#NULL!,4.768563733,2.48490665,3.918882357,4.150035386,299,1447,1148,0.725205306,51,0,7,0.734158198,0,0,74,53,0.033480733,7,0.004421984,14,0.008843967,0.046746684,25,0.015792798,6,0.003790272,30,0.018951358,75,0.047378395,0,0,72,0.04548326,63,0.039797852,0.267845862,0,0,10,0.006317119,1583,Unsure,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WG0019_U1,WG0019,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.472115127,0.642857143,15,0.130434783,4.878510779,3.338893542,3.372511016,3.248723607,3.367728926,0.273943246,0.035323236,0.172294859,0.023993876,-0.00772091,0.031714786,0.84934,0.179196674,0.614695341,-2.119484922,3.144104132,4.575108599,3.054915133,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,6,1,#NULL!,#NULL!,#NULL!,1,112.3475581,#NULL!,#NULL!,#NULL!,#NULL!,0,#NULL!,3,27,5,7,#NULL!,4.960218808,2.079441542,4.296636391,4.030674847,53,570,517,0.424815119,41,4,9,0.924032815,0,0,76,57,0.046836483,13,0.010682005,6,0.004930156,0.062448644,28,0.023007395,1,0.000821693,12,0.009860312,141,0.115858669,0,0,46,0.037797864,30,0.024650781,0.295809367,4,0.003286771,5,0.004108463,1217,Unsure,Yes,3,Reflect,Annotator2,Final,N/A,N/A
WG0019_U2,WG0019,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.672632366,0.775,8,0.1,4.615120517,3.32818384,2.184401648,3.397848085,2.064361716,0.171282129,0.03410699,0.119691155,0.020412518,-0.009495021,0.029907539,0.80847,0.307413376,0.661023039,-0.528226942,3.016522805,3.319575319,1.970593685,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,2,#NULL!,1,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,5,#NULL!,#NULL!,#NULL!,1,3,70.71945395,#NULL!,#NULL!,#NULL!,#NULL!,0,#NULL!,3,32,1,4,#NULL!,4.350994525,2.197224577,3.602147834,4.627507163,55,580,525,0.67394095,30,4,7,0.999386314,0,0,24,20,0.025673941,1,0.001283697,3,0.003851091,0.030808729,16,0.020539153,1,0.001283697,15,0.019255456,30,0.038510911,0,0,44,0.05648267,12,0.015404365,0.392811297,0,0,0,0,779,Unsure,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WG0019_U3,WG0019,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.583081486,0.7375,26,0.080495356,4.400546037,2.991744488,3.330327704,3.052758881,3.266202977,0.181422014,0.038006028,0.128717035,0.014880952,-0.010214711,0.025095663,0.80751,0.161444136,0.626187215,-6.222319206,3.046869392,5.222884195,13.25846369,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,1,5,1,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,1,3,#NULL!,2,#NULL!,#NULL!,#NULL!,8,#NULL!,#NULL!,1,#NULL!,2,216.3903874,#NULL!,#NULL!,5,4,2,#NULL!,4,63,3,8,2,5.458308103,2.302585093,4.13602659,4.068172135,103,2148,2045,0.804801259,70,5,11,0.726646073,0,0,91,68,0.026761118,18,0.007083825,5,0.001967729,0.035812672,45,0.017709563,4,0.001574183,34,0.013380559,274,0.107831562,0,0,85,0.033451397,81,0.031877214,0.221172767,7,0.002754821,3,0.001180638,2541,Unsure,No,3,Reflect,Annotator2,Final,N/A,N/A
WG0020_U1,WG0020,English,No one helped me,Not at all,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.67882509,0.803030303,13,0.090277778,4.51390736,3.221220018,3.584052469,3.378360815,3.391273203,0.204396153,0.030593807,0.132791884,0.025697314,-0.004881198,0.030578512,0.86886,0.329433024,0.679305768,-1.18544471,3.210370625,5.326866128,4.477295644,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,1,64.01511798,#NULL!,#NULL!,13,#NULL!,0,2,3,54,1,5,1,4.473196022,2.397895273,3.894946999,4.326763485,176,1059,883,0.799818841,55,0,12,1.074434811,0,0,40,34,0.030797101,2,0.001811594,4,0.003623188,0.036231884,12,0.010869565,12,0.010869565,13,0.011775362,128,0.115942029,0,0,70,0.063405797,26,0.023550725,0.375905797,2,0.001811594,2,0.001811594,1104,Unsure,No,3,Reflect,Annotator2,Final,N/A,N/A
WG0020_U2,WG0020,English,No one helped me,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.719835312,0.803571429,18,0.147540984,5.000860904,3.113223698,3.046932433,3.376766415,2.894016706,0.275890454,0.041941481,0.179876597,0.03190091,-0.005409505,0.037310415,0.86312,0.356942345,0.604055011,-0.33576701,2.990971313,5.800944443,4.858921082,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,2,4,1,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,2,95.80696903,#NULL!,8,#NULL!,#NULL!,0,1,3,46,1,5,#NULL!,4.585987367,2.302585093,3.895519009,4.594291539,1,886,885,0.811182401,56,4,9,0.966109456,0,0,45,26,0.023831347,6,0.005499542,13,0.011915674,0.041246563,20,0.018331806,6,0.005499542,15,0.013748854,58,0.053162236,0,0,60,0.054995417,31,0.028414299,0.375802016,1,0.00091659,4,0.003666361,1091,Unsure,Unsure,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0020_U3,WG0020,English,No one helped me,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.605670437,0.722222222,15,0.223880597,5.415569581,2.393071399,0.892398302,3.413536132,1.008215548,0.241564956,0.022349975,0.143132453,0.058797127,-0.007181329,0.065978456,0.93159,0.32735782,0.589342681,-0.172495183,2.916334412,3.530562537,2.400954834,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,2,50.03865531,#NULL!,#NULL!,#NULL!,#NULL!,3,3,3,27,1,1,1,3.922873021,2.397895273,4.549501158,4.600719424,10,493,483,0.730711044,35,4,8,1.117366579,0,0,17,12,0.018154312,3,0.004538578,2,0.003025719,0.025718608,4,0.006051437,1,0.001512859,8,0.012102874,11,0.016641452,0,0,40,0.060514372,21,0.031770045,0.397881997,4,0.006051437,1,0.001512859,661,Unsure,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WG0021_U1,WG0021,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.228463854,0.518518519,6,0.111111111,4.719490443,3.31500593,1.028714803,2.839134758,1.051294753,0.244868279,0.047090506,0.169524646,0.005813953,-0.011310782,0.017124736,0.97108,0.281240138,0.695520927,-0.132054226,3.019675377,2.715675398,0.789624954,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,7,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,55.20354206,#NULL!,#NULL!,#NULL!,#NULL!,0,1,3,14,5,4,#NULL!,3.959754408,2.197224577,2.917782285,4.625,327,376,49,0.097609562,2,0,3,0.843612425,0,0,12,9,0.017928287,0,0,3,0.005976096,0.023904382,9,0.017928287,0,0,15,0.029880478,40,0.079681275,0,0,31,0.061752988,17,0.033864542,0.344621514,0,0,1,0.001992032,502,Unsure,No,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0021_U2,WG0021,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.228606437,0.518518519,4,0.06557377,4.198310664,2.546497806,2.583508608,2.987810959,2.803645931,0.200483155,0.028004292,0.128245869,0.018079399,-0.00472103,0.022800429,0.77412,0.002283814,0.450958579,-0.887558396,3.075852742,1.735459038,0.945010171,#NULL!,#NULL!,2,#NULL!,1,#NULL!,#NULL!,1,1,4,#NULL!,#NULL!,3,2,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,32.59688335,#NULL!,#NULL!,#NULL!,#NULL!,1,1,3,14,4,5,#NULL!,3.946961057,2.197224577,2.865242331,3.967811159,4,491,487,0.981854839,30,4,4,0.957344626,0,0,14,13,0.026209677,0,0,1,0.002016129,0.028225806,6,0.012096774,2,0.004032258,19,0.038306452,30,0.060483871,0,0,31,0.0625,20,0.040322581,0.39516129,1,0.002016129,1,0.002016129,496,Unsure,No,3,Reflect,Annotator2,Final,N/A,N/A
WG0021_U3,WG0021,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.564325562,0.7,11,0.2,5.303304908,2.519507102,0.570504063,2.960171515,0.482375984,0.26411913,0.016989778,0.1490318,0.04995614,-0.002763158,0.052719298,0.74413,0.583821512,0.649252438,-0.313583203,2.615125738,2.965687417,1.269316547,#NULL!,1,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,73.02783629,#NULL!,#NULL!,#NULL!,#NULL!,1,3,3,21,1,#NULL!,2,4.25561271,2.079441542,3.70514061,5.168439716,41,645,604,0.898809524,30,4,20,1.488013223,0,0,17,10,0.014880952,0,0,7,0.010416667,0.025297619,9,0.013392857,1,0.001488095,6,0.008928571,8,0.011904762,0,0,34,0.050595238,20,0.029761905,0.4375,1,0.001488095,1,0.001488095,672,Unsure,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WG0021_U4,WG0021,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.570312201,0.7,11,0.196428571,5.285376855,2.520288774,0.55927601,3.050537052,0.482375984,0.267080294,0.017491028,0.151013783,0.050956522,-0.00326087,0.054217391,0.74413,0.574993604,0.628346708,-0.333923115,2.605916197,2.936418134,1.269170209,#NULL!,1,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,2,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,72.98178775,#NULL!,#NULL!,#NULL!,#NULL!,1,3,3,21,1,#NULL!,2,4.264438892,2.079441542,3.711941733,5.145869947,41,649,608,0.900740741,30,4,20,1.486141745,0,0,17,10,0.014814815,0,0,7,0.01037037,0.025185185,9,0.013333333,1,0.001481481,10,0.014814815,8,0.011851852,0,0,34,0.05037037,20,0.02962963,0.438518519,2,0.002962963,1,0.001481481,675,Unsure,No,2,Inform/Explore,Annotator2,Draft,N/A,N/A
WG0022_U1,WG0022,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.323042657,0.5625,10,0.192307692,5.26428318,2.295807652,2.559516411,2.510588704,2.549681055,0.262906461,0.034736344,0.166189575,0.01447178,-0.007850941,0.022322721,0.86664,0.542764744,0.72400166,-0.68427388,2.981479681,2.442972814,0.737327069,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,6,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,110.9832827,#NULL!,#NULL!,#NULL!,#NULL!,1,1,2,18,4,7,#NULL!,4.592229675,1.945910149,4.004342541,5.211287988,9,717,708,0.905370844,32,3,4,0.786402819,0,0,29,24,0.030690537,1,0.001278772,4,0.00511509,0.037084399,6,0.007672634,5,0.006393862,10,0.012787724,40,0.051150895,0,0,35,0.044757033,16,0.020460358,0.306905371,0,0,2,0.002557545,782,Unsure,No,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0022_U2,WG0022,English,No one helped me,Not at all,1,0,I completed the assignment on a laptop or desktop computer.,6.267222485,0.5,11,0.144736842,4.981802544,3.243924446,3.433947761,3.311909169,3.417019575,0.18136805,0.043145412,0.133829437,0.022786177,-0.013174946,0.035961123,0.77696,0.259596074,0.596460122,-0.698497011,3.040920554,2.102922397,1.570444902,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,2,28.41633897,#NULL!,#NULL!,#NULL!,#NULL!,0,1,3,13,3,6,#NULL!,3.936173466,2.197224577,3.446027935,4.655097614,54,316,262,0.504816956,16,4,4,0.939874983,0,0,19,15,0.028901734,1,0.001926782,3,0.005780347,0.036608863,14,0.026974952,8,0.015414258,8,0.015414258,61,0.117533719,0,0,30,0.057803468,10,0.019267823,0.483622351,0,0,0,0,519,Unsure,No,3,Reflect,Annotator2,Final,N/A,N/A
WG0022_U3,WG0022,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.455786676,0.685714286,6,0.086956522,4.476842621,2.36329985,1.030946987,3.309687526,1.07236937,0.281511391,0.030443238,0.171198934,0.067462687,-0.008134328,0.075597015,0.84598,0.39413724,0.64922928,-0.228860696,2.833577118,2.999064899,1.297002902,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,1,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,59.28326829,#NULL!,#NULL!,#NULL!,#NULL!,1,3,3,24,4,#NULL!,1,4.420345499,2.079441542,3.95009209,4.745864662,45,706,661,0.899319728,36,4,7,1.022172979,0,0,21,16,0.021768707,1,0.001360544,4,0.005442177,0.028571429,10,0.013605442,2,0.002721088,8,0.010884354,22,0.029931973,1,0.001360544,39,0.053061224,16,0.021768707,0.368707483,0,0,0,0,735,Unsure,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WG0023_U1,WG0023,English,No one helped me,Not at all,1,1,I completed the assignment on a laptop or desktop computer.,6.497615935,0.666666667,5,0.068493151,4.241228196,3.057950069,3.362806326,3.345211356,3.223587179,0.279755348,0.039687144,0.179547754,0.018984642,-0.010537543,0.029522184,0.89652,0.410641241,0.705206915,-0.445007859,3.25978872,3.170766392,3.340685268,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,2,51.36272327,#NULL!,#NULL!,6,#NULL!,1,2,3,26,5,3,#NULL!,4.170962609,2.197224577,3.517780743,4.56432247,54,573,519,0.799691834,32,4,7,1.071359964,0,0,37,29,0.044684129,7,0.010785824,1,0.001540832,0.057010786,11,0.016949153,1,0.001540832,7,0.010785824,64,0.098613251,0,0,43,0.066255778,20,0.030816641,0.363636364,0,0,2,0.003081664,649,Unsure,Unsure,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0023_U2,WG0023,English,No one helped me,Not at all,0,1,I completed the assignment on a laptop or desktop computer.,6.228606437,0.518518519,4,0.06557377,4.198310664,2.546497806,2.583508608,2.987810959,2.803645931,0.200483155,0.028004292,0.128245869,0.018079399,-0.00472103,0.022800429,0.77412,0.002283814,0.450958579,-0.887558396,3.075852742,1.735459038,0.945010171,#NULL!,#NULL!,2,#NULL!,1,#NULL!,#NULL!,1,1,4,#NULL!,#NULL!,3,2,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,32.59688335,#NULL!,#NULL!,#NULL!,#NULL!,1,1,3,14,4,5,#NULL!,3.946961057,2.197224577,2.865242331,3.967811159,4,491,487,0.981854839,30,4,4,0.957344626,0,0,14,13,0.026209677,0,0,1,0.002016129,0.028225806,6,0.012096774,2,0.004032258,19,0.038306452,30,0.060483871,0,0,31,0.0625,20,0.040322581,0.39516129,1,0.002016129,1,0.002016129,496,Unsure,No,3,Reflect,Annotator2,Final,N/A,N/A
WG0023_U3,WG0023,English,No one helped me,Not at all,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.565608147,0.586206897,5,0.128205128,4.861401283,2.710011677,0.905617573,3.092563717,0.869508024,0.242052239,0.020034648,0.141060768,0.037173507,-0.000559701,0.037733209,0.82482,0.252839924,0.661620829,-0.417695673,2.86191681,1.766533022,0.418917569,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,5,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,6,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,98.18225126,#NULL!,#NULL!,#NULL!,#NULL!,0,1,3,17,5,3,#NULL!,4.050818297,2.197224577,3.273881811,4.584139265,22,482,460,0.773109244,24,4,16,1.445460291,0,0,21,14,0.023529412,3,0.005042017,4,0.006722689,0.035294118,3,0.005042017,0,0,14,0.023529412,6,0.010084034,0,0,33,0.055462185,9,0.01512605,0.337815126,1,0.001680672,7,0.011764706,595,Unsure,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WG0024_U1,WG0024,English,No one helped me,A little,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.301266954,0.484848485,11,0.150684932,5.021805551,3.216887145,2.741563905,3.32630896,2.544999426,0.170304114,0.040258191,0.125410249,0.013640429,-0.023658318,0.037298748,0.97491,0.254654578,0.57595431,-0.483112163,2.92714328,1.97119764,2.270639397,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,9,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,63.19104921,1,#NULL!,#NULL!,#NULL!,1,1,3,16,8,5,#NULL!,4.123543717,2.197224577,3.880570255,4.478417266,57,564,507,0.831147541,30,4,6,1.034871624,0,0,22,15,0.024590164,3,0.004918033,4,0.006557377,0.036065574,17,0.027868852,0,0,10,0.016393443,33,0.054098361,0,0,37,0.060655738,16,0.026229508,0.357377049,1,0.001639344,0,0,610,Unsure,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WG0024_U2,WG0024,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.578598362,0.733333333,39,0.185714286,5.229579565,3.156004248,3.382716856,3.191094619,3.372620629,0.144606647,0.049181193,0.121484517,0.01258489,-0.013518676,0.026103565,0.87909,0.15220985,0.557513432,-2.470748263,3.171192951,6.023961201,3.749926179,#NULL!,1,1,#NULL!,1,#NULL!,#NULL!,#NULL!,1,1,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,81.86856394,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,3,55,12,5,#NULL!,4.989581885,2.079441542,3.728849614,4.016170213,3,1240,1237,0.967161845,76,4,13,1.047827249,0,0,32,23,0.017982799,4,0.003127443,5,0.003909304,0.025019547,28,0.021892103,0,0,10,0.007818608,183,0.143080532,0,0,79,0.061767005,43,0.033620016,0.338545739,1,0.000781861,3,0.002345582,1279,Unsure,No,3,Reflect,Annotator2,Final,N/A,N/A
WG0024_U3,WG0024,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.144326187,0.482758621,4,0.076923077,4.355722147,2.99342352,3.424141023,3.101687108,3.40904674,0.325622301,0.016488235,0.179299385,0.029742389,-0.002166276,0.031908665,0.98649,0.250604564,0.567211268,0.004103624,3.184849218,3.238786722,0.476398102,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,38.68380918,#NULL!,#NULL!,#NULL!,#NULL!,1,2,3,14,5,5,#NULL!,3.857214769,2.197224577,3.552035959,4.237089202,5,244,239,0.521834061,17,4,5,1.076168053,0,0,35,28,0.061135371,5,0.010917031,2,0.004366812,0.076419214,15,0.032751092,0,0,4,0.008733624,49,0.1069869,0,0,33,0.072052402,8,0.017467249,0.355895197,0,0,0,0,458,Unsure,No,3,Reflect,Annotator2,Final,N/A,N/A
WG0026_U1,WG0026,English,Someone else,A lot,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.51836614,0.612903226,12,0.157894737,5.068241951,3.035339015,0.959637598,2.927860232,0.815863612,0.266893104,0.030328401,0.163774953,0.008839564,-0.005919003,0.014758567,1,0.28839527,0.581732753,-0.60034491,2.847710017,3.492646546,1.772051151,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,1,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,56.93187715,#NULL!,#NULL!,#NULL!,#NULL!,0,3,3,22,#NULL!,1,2,4.275121717,2.197224577,3.884033807,4.591962906,7,347,340,0.476190476,30,0,10,1.17625343,0,0,28,13,0.018207283,6,0.008403361,9,0.012605042,0.039215686,12,0.016806723,7,0.009803922,12,0.016806723,19,0.026610644,1,0.00140056,36,0.050420168,19,0.026610644,0.37535014,1,0.00140056,0,0,714,Unsure,No,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0026_U2,WG0026,English,No one helped me,A lot,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.544131855,0.705882353,8,0.129032258,4.867782559,2.928361835,2.375189415,3.111287452,1.825787161,0.244733066,0.020408163,0.142774696,0.058068783,-0.002910053,0.060978836,1,0.289313691,0.578630866,-0.629076221,2.769074789,2.884709326,1.096659468,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,1,51.18742703,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,4,25,#NULL!,#NULL!,5,4.293878248,2.079441542,4.185275847,4.633105802,49,548,499,0.748125937,27,0,11,1.242833364,0,0,18,8,0.011994003,2,0.002998501,8,0.011994003,0.026986507,11,0.016491754,1,0.00149925,11,0.016491754,20,0.029985007,0,0,39,0.058470765,16,0.023988006,0.355322339,0,0,1,0.00149925,667,Unsure,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WG0026_U3,WG0026,English,No one helped me,A lot,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.710841497,0.75,5,0.057471264,4.068535426,3.263686381,3.618377044,3.467455085,3.607120377,0.169122759,0.023031565,0.107592945,0.016920152,-0.00769962,0.024619772,1,0.311644503,0.570985162,-0.581737808,2.84098019,6.521752123,3.003961751,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,2,1,5,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,1,#NULL!,3,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,2,109.114668,1,#NULL!,#NULL!,1,1,#NULL!,6,36,#NULL!,1,1,4.113392757,2.564949357,4.168775347,4.779874214,14,875,861,0.93485342,49,0,9,1.032295819,0,0,22,15,0.016286645,5,0.005428882,2,0.002171553,0.023887079,13,0.014115092,3,0.003257329,29,0.031487514,45,0.048859935,1,0.001085776,56,0.060803474,18,0.019543974,0.371335505,3,0.003257329,2,0.002171553,921,Unsure,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WG0027_U1,WG0027,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.42437322,0.64,4,0.075471698,4.336920713,2.873588396,0.965903195,2.964251561,1.062046884,0.253305881,0.025180023,0.151832964,0.064079823,-0.00421286,0.068292683,0.81473,0.241184181,0.632888889,-0.08413359,2.867181785,3.048030681,0.758427024,#NULL!,2,1,#NULL!,#NULL!,#NULL!,#NULL!,1,3,1,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,1,#NULL!,1,#NULL!,6,#NULL!,#NULL!,#NULL!,#NULL!,1,61.81637787,#NULL!,#NULL!,#NULL!,#NULL!,0,2,3,18,1,1,#NULL!,3.624340933,2.48490665,3.47250359,4.686666667,2,413,411,0.826961771,27,4,6,1.116356478,0,0,11,3,0.006036217,1,0.002012072,7,0.014084507,0.022132797,1,0.002012072,1,0.002012072,21,0.042253521,21,0.042253521,0,0,29,0.058350101,15,0.030181087,0.384305835,1,0.002012072,0,0,497,Unsure,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WG0027_U2,WG0027,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.300307294,0.564102564,2,0.035087719,3.585952622,3.175119367,3.442459217,3.227841795,3.541870678,0.165293979,0.042463472,0.125110462,0.016167954,-0.008928571,0.025096525,0.94736,0.128434031,0.596592118,-0.371663832,3.251296011,3.57430648,2.487100107,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,1,1,#NULL!,#NULL!,#NULL!,#NULL!,34.9351832,#NULL!,#NULL!,6,#NULL!,0,#NULL!,3,22,8,6,#NULL!,4.170533701,2.079441542,3.830748072,4.276061776,209,317,108,0.185248714,9,0,4,0.895481302,0,0,22,17,0.02915952,1,0.001715266,4,0.006861063,0.037735849,12,0.02058319,0,0,11,0.018867925,55,0.094339623,0,0,43,0.073756432,16,0.027444254,0.430531732,2,0.003430532,1,0.001715266,583,Unsure,No,3,Reflect,Annotator2,Final,N/A,N/A
WG0027_U3,WG0027,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.273222002,0.56,3,0.065217391,4.192943137,3.065587381,3.40999931,3.332406355,3.293017425,0.301819706,0.007509589,0.158419442,0.046809623,-0.000941423,0.047751046,0.83943,0.277915678,0.688001307,-0.323873999,2.905791739,2.54683216,0.926070057,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,7,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,58.11161668,#NULL!,#NULL!,#NULL!,#NULL!,0,1,4,17,#NULL!,3,#NULL!,3.600468497,2.564949357,3.447396555,4.405462185,100,183,83,0.161478599,6,0,4,0.943598436,0,0,23,20,0.038910506,1,0.001945525,2,0.003891051,0.044747082,10,0.019455253,2,0.003891051,12,0.023346304,58,0.112840467,0,0,30,0.058365759,12,0.023346304,0.408560311,1,0.001945525,1,0.001945525,514,Unsure,No,3,Reflect,Annotator2,Final,N/A,N/A
WG0028_U1,WG0028,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.65570282,0.767857143,14,0.111111111,4.719490443,3.152649578,3.43639902,3.201392129,3.437391642,0.210082683,0.03766,0.142701342,0.032181425,-0.008261339,0.040442765,0.8467,0.18892651,0.636005737,-1.022744727,3.255103798,3.793367841,2.679420308,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,1,#NULL!,5,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,3,71.46381813,#NULL!,6,6,#NULL!,0,#NULL!,3,43,4,6,#NULL!,4.74927053,2.079441542,3.699266986,4.057359307,8,673,665,0.627950897,38,4,12,1.091013962,0,0,30,21,0.019830028,4,0.003777148,5,0.004721435,0.028328612,17,0.01605288,12,0.011331445,13,0.012275732,119,0.112370161,0,0,60,0.056657224,25,0.023607177,0.400377715,1,0.000944287,0,0,1059,Unsure,No,3,Reflect,Annotator2,Final,N/A,N/A
WG0028_U2,WG0028,English,Someone else,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.596961899,0.75,9,0.125,4.836281907,3.368819162,3.252388279,3.462892257,3.050942356,0.273480434,0.028780032,0.165520249,0.028134441,-0.009403323,0.037537764,0.75876,0.338387642,0.637840523,-0.066061507,2.999743308,9.524713523,2.089634558,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,3,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,3,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,2,51.86438516,#NULL!,#NULL!,13,#NULL!,0,1,5,35,#NULL!,3,#NULL!,3.913560285,2.564949357,3.498839081,4.757296467,55,625,570,0.738341969,27,7,13,1.251379714,0,0,23,12,0.015544041,3,0.00388601,8,0.010362694,0.029792746,7,0.009067358,2,0.002590674,25,0.03238342,39,0.050518135,0,0,51,0.066062176,12,0.015544041,0.441709845,0,0,1,0.001295337,772,Unsure,Unsure,1,Persuade,Annotator2,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WG0028_U3,WG0028,English,"A parent, brother, sister or other relative",A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.485287917,0.625,4,0.083333333,4.4347772,2.530110943,2.045176229,3.200127804,1.863463265,0.226882896,0.030897716,0.144339164,0.057716837,-0.002933673,0.06065051,0.89764,0.016360841,0.591497436,-0.463282656,2.967703271,2.242988247,0.591592412,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,82.83372397,#NULL!,#NULL!,#NULL!,#NULL!,0,3,3,15,1,1,1,3.768922162,2.197224577,3.439237767,4.392307692,33,220,187,0.403887689,11,4,5,1.071850209,0,0,17,4,0.008639309,3,0.006479482,10,0.021598272,0.036717063,7,0.01511879,0,0,4,0.008639309,9,0.019438445,0,0,28,0.060475162,8,0.017278618,0.375809935,0,0,0,0,463,Unsure,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WG0029_U1,WG0029,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.602674332,0.728813559,13,0.13,4.875197323,3.323290991,3.308054101,3.48370438,3.189838211,0.204756929,0.034519912,0.136898376,0.026213282,-0.01302682,0.039240102,0.95499,0.280604655,0.535913552,-0.898361039,3.083113204,10.13554102,3.039115862,#NULL!,2,#NULL!,#NULL!,2,#NULL!,1,#NULL!,5,1,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,11,#NULL!,#NULL!,#NULL!,1,1,1,#NULL!,#NULL!,1,#NULL!,2,73.36340487,#NULL!,7,9,#NULL!,0,#NULL!,4,43,11,#NULL!,1,4.460786469,2.197224577,3.721951425,4.508344031,37,807,770,0.875995449,55,0,10,1.092600102,0,0,32,26,0.029579067,3,0.003412969,3,0.003412969,0.036405006,18,0.020477816,1,0.001137656,27,0.030716724,50,0.056882821,0,0,64,0.072810011,20,0.022753129,0.373151308,0,0,3,0.003412969,879,Unsure,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WG0029_U2,WG0029,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.233693258,0.514285714,12,0.164383562,5.108267392,3.399739715,2.006433576,3.325812519,1.77147532,0.283595571,0.052697303,0.194495088,0.020017483,-0.014772727,0.03479021,0.97796,0.222066878,0.587563035,-0.75681622,3.058926347,3.667485046,1.879527695,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,1,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,61.69547948,#NULL!,#NULL!,5,#NULL!,1,1,3,18,4,9,#NULL!,4.148411783,2.197224577,4.006738096,4.477192982,337,608,271,0.425431711,19,0,3,0.756603869,0,0,26,18,0.028257457,5,0.007849294,3,0.004709576,0.040816327,8,0.01255887,0,0,3,0.004709576,34,0.053375196,0,0,39,0.06122449,19,0.029827316,0.350078493,0,0,0,0,637,Unsure,Unsure,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0029_U3,WG0029,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.673077932,0.75,5,0.096153846,4.576295765,2.959324385,0.823191635,3.401541081,0.951060314,0.194600675,0.017945257,0.115245594,0.032047244,-0.001968504,0.034015748,0.94149,0.352381769,0.500513557,0.429290631,2.711754453,5.225142438,1.767983138,#NULL!,#NULL!,1,#NULL!,3,#NULL!,#NULL!,#NULL!,6,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,1,8,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,6,#NULL!,#NULL!,#NULL!,#NULL!,1,90.98507856,#NULL!,#NULL!,6,#NULL!,0,#NULL!,4,35,#NULL!,5,#NULL!,4.138361448,2.302585093,3.847764292,5.049441786,47,500,453,0.606425703,28,0,13,1.264887331,2,0.002677376,19,13,0.017402945,1,0.001338688,5,0.00669344,0.025435074,11,0.014725569,0,0,26,0.03480589,24,0.032128514,1,0.001338688,50,0.066934404,12,0.016064257,0.381526104,5,0.00669344,2,0.002677376,747,Unsure,Yes,2,Inform/Explore,Annotator2,Final,N/A,N/A
WG0029_U4,WG0029,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.540250554,0.671875,19,0.129251701,4.869468738,3.129107197,3.386521584,3.301069514,3.410751364,0.289253264,0.043823407,0.188450039,0.04116291,-0.012192623,0.053355533,0.92304,0.093083122,0.558144028,-2.153301004,3.247654359,5.206099427,4.310590137,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,2,97.82918626,#NULL!,8,12,#NULL!,0,4,4,44,12,#NULL!,#NULL!,4.485567314,2.397895273,3.703232563,3.93545082,106,1039,933,0.856749311,57,5,8,0.921488224,0,0,65,55,0.050505051,8,0.007346189,2,0.001836547,0.059687787,24,0.022038567,4,0.003673095,6,0.005509642,115,0.105601469,0,0,69,0.063360882,45,0.041322314,0.292011019,0,0,2,0.001836547,1089,Unsure,No,3,Reflect,Annotator2,Final,N/A,N/A
WG0030_U1,WG0030,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.507179559,0.62962963,2,0.0625,4.151039906,3.062743484,0.796627698,2.632898602,0.787632366,0.224729749,0.023008984,0.135373859,0.052575377,-0.001570352,0.054145729,0.8627,0.294776775,0.555754274,0.274879743,2.838448289,2.427325391,0.567163059,1,1,#NULL!,#NULL!,#NULL!,1,1,#NULL!,7,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,64.06074597,#NULL!,#NULL!,#NULL!,#NULL!,0,2,3,19,1,2,#NULL!,3.481240089,2.48490665,3.099740582,4.935897436,23,370,347,0.786848073,25,4,6,1.16451471,0,0,10,4,0.009070295,1,0.002267574,5,0.011337868,0.022675737,6,0.013605442,0,0,11,0.024943311,10,0.022675737,0,0,31,0.070294785,7,0.015873016,0.405895692,4,0.009070295,1,0.002267574,441,Unsure,No,2,Inform/Explore,Annotator2,Final,N/A,N/A
WG0030_U2,WG0030,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.438077711,0.64,11,0.123595506,4.825072535,3.154673578,3.413420074,3.345849128,3.44298732,0.200125025,0.066763658,0.166826171,0.023298611,-0.018645833,0.041944444,0.84098,0.123095154,0.662988896,-1.126024142,3.164462004,4.628214908,1.852535033,#NULL!,#NULL!,1,#NULL!,1,#NULL!,#NULL!,#NULL!,2,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,8,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,45.96759155,#NULL!,#NULL!,5,#NULL!,0,#NULL!,2,36,4,7,1,4.631951209,1.945910149,3.598251933,4.1418637,35,729,694,0.884076433,48,3,10,1.137950493,0,0,18,10,0.012738854,2,0.002547771,6,0.007643312,0.022929936,9,0.011464968,1,0.001273885,15,0.01910828,96,0.122292994,1,0.001273885,53,0.067515924,15,0.01910828,0.430573248,1,0.001273885,0,0,785,Unsure,No,3,Reflect,Annotator2,Final,N/A,N/A
WG0030_U3,WG0030,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.394303661,0.612903226,4,0.085106383,4.455583543,2.971606276,3.205871956,3.268613297,2.802280704,0.267203631,0.041328218,0.174930034,0.018360161,-0.002716298,0.021076459,0.87828,0.062173101,0.633945674,0.01423198,3.054299289,3.013078248,0.839338769,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,1,#NULL!,1,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,43.75914655,#NULL!,#NULL!,#NULL!,#NULL!,0,3,4,21,#NULL!,3,#NULL!,3.723683376,2.48490665,3.913078881,4.259557344,17,476,459,0.84375,30,4,4,0.921839423,0,0,29,23,0.042279412,1,0.001838235,5,0.009191176,0.053308824,8,0.014705882,0,0,5,0.009191176,14,0.025735294,0,0,35,0.064338235,12,0.022058824,0.428308824,1,0.001838235,1,0.001838235,544,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WG0031_U1,WG0031,English,No one helped me,A little,0,0,I completed the assignment on a laptop or desktop computer.,6.526153226,0.636363636,10,0.11627907,4.764556306,2.837293351,0.75530204,3.378833577,0.631342967,0.266590792,0.014877507,0.148172903,0.039366374,-0.003732748,0.043099122,0.84156,0.402355242,0.712316108,-1.548493112,2.633610356,2.363685156,2.3254268,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,15,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,5,#NULL!,#NULL!,#NULL!,#NULL!,4,90.97788842,#NULL!,#NULL!,#NULL!,#NULL!,0,1,2,22,5,3,#NULL!,4.601413137,2.079441542,3.980458566,4.846925972,161,812,651,0.737259343,26,0,9,1.048928092,0,0,16,12,0.013590034,2,0.002265006,2,0.002265006,0.018120045,18,0.020385051,1,0.001132503,30,0.033975085,27,0.030577576,0,0,37,0.041902605,29,0.032842582,0.363533409,0,0,2,0.002265006,883,Unsure,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WG0031_U2,WG0031,English,"A parent, brother, sister or other relative",A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.664009841,0.75,17,0.106918239,4.681373894,3.18368868,3.598786283,3.290068152,3.450989569,0.216554113,0.03681368,0.145090736,0.020696517,-0.010572139,0.031268657,0.92816,0.312674873,0.644362061,-1.138525951,3.137884375,3.488073369,4.075469791,#NULL!,1,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,55.27016699,#NULL!,#NULL!,#NULL!,#NULL!,0,1,4,39,#NULL!,2,2,4.42384813,2.48490665,3.479327985,4.322677323,2,887,885,0.798016231,49,5,9,0.95977665,0,0,38,25,0.022542831,5,0.004508566,8,0.007213706,0.034265104,16,0.014427412,0,0,8,0.007213706,121,0.109107304,0,0,53,0.047790803,22,0.019837692,0.404869252,0,0,2,0.001803427,1109,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WG0031_U3,WG0031,English,"A parent, brother, sister or other relative",Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.498234106,0.620689655,7,0.086419753,4.470721265,3.097411417,0.97223351,3.228044015,0.947150303,0.333711679,0.04741175,0.214252157,0.031905864,-0.007484568,0.039390432,0.91653,0.485435495,0.622004872,0.113214001,2.937741502,2.649530211,1.750732704,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,108.2115519,#NULL!,#NULL!,#NULL!,#NULL!,0,1,4,20,#NULL!,4,#NULL!,4.069803453,2.397895273,4.245616937,5.153726708,14,533,519,0.719833564,30,0,5,0.899536683,0,0,31,18,0.024965326,5,0.006934813,8,0.0110957,0.042995839,12,0.016643551,0,0,3,0.004160888,15,0.020804438,0,0,34,0.047156727,27,0.037447989,0.399445215,0,0,0,0,721,Unsure,No,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0032_U1,WG0032,English,No one helped me,Somewhat,0,0,I completed the assignment on a laptop or desktop computer.,6.462150162,0.617647059,5,0.064935065,4.188670393,3.131000376,2.242335019,3.378767337,1.779797333,0.153000104,0.030599933,0.107099985,0.01008567,-0.011292835,0.021378505,0.93822,0.200680533,0.583287364,-0.175391924,2.963004079,2.461056196,1.890109186,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,1,#NULL!,#NULL!,85.446174,#NULL!,#NULL!,#NULL!,#NULL!,0,1,3,21,4,5,#NULL!,4.253245845,2.197224577,3.07337108,4.633491311,115,628,513,0.722535211,31,4,5,0.90537776,0,0,15,12,0.016901408,1,0.001408451,2,0.002816901,0.021126761,8,0.011267606,0,0,5,0.007042254,43,0.06056338,0,0,38,0.053521127,10,0.014084507,0.343661972,3,0.004225352,1,0.001408451,710,Unsure,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WG0032_U2,WG0032,English,No one helped me,A little,1,0,I completed the assignment on a laptop or desktop computer.,6.228606437,0.518518519,4,0.06557377,4.198310664,2.546497806,2.583508608,2.987810959,2.803645931,0.200483155,0.028004292,0.128245869,0.018079399,-0.00472103,0.022800429,0.77412,0.002283814,0.450958579,-0.887558396,3.075852742,1.735459038,0.945010171,#NULL!,#NULL!,2,#NULL!,1,#NULL!,#NULL!,1,1,4,#NULL!,#NULL!,3,2,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,32.59688335,#NULL!,#NULL!,#NULL!,#NULL!,1,1,3,14,4,5,#NULL!,3.946961057,2.197224577,2.865242331,3.967811159,4,491,487,0.981854839,30,4,4,0.957344626,0,0,14,13,0.026209677,0,0,1,0.002016129,0.028225806,6,0.012096774,2,0.004032258,19,0.038306452,30,0.060483871,0,0,31,0.0625,20,0.040322581,0.39516129,1,0.002016129,1,0.002016129,496,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WG0032_U3,WG0032,English,No one helped me,A little,1,0,I completed the assignment on a laptop or desktop computer.,6.364750757,0.56,1,0.018181818,2.953962861,2.867036187,3.168024046,3.208960274,3.294028537,0.29807989,0.045469873,0.194509819,0.011637081,-0.013658777,0.025295858,0.84251,0.301756673,0.608191989,-0.289631028,3.077624473,1.249989747,1.887400491,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,60.81757548,#NULL!,#NULL!,#NULL!,#NULL!,0,3,3,14,3,2,#NULL!,4.021375542,2.197224577,4.121477403,4.43625498,3,310,307,0.558181818,26,4,6,1.07587861,0,0,34,31,0.056363636,2,0.003636364,1,0.001818182,0.061818182,15,0.027272727,0,0,2,0.003636364,30,0.054545455,0,0,29,0.052727273,13,0.023636364,0.38,4,0.007272727,4,0.007272727,550,Unsure,No,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0033_U1,WG0033,English,No one helped me,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.52497181,0.666666667,10,0.161290323,5.089386846,3.171470641,0.947273489,3.341209114,0.943186362,0.141339749,0.026054045,0.096723919,0.009519409,-0.010166359,0.019685767,0.95237,0.152787157,0.533701973,-0.094228357,2.877655394,2.361567677,0.737075236,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,5,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,1,51.63732313,#NULL!,#NULL!,#NULL!,#NULL!,0,#NULL!,4,20,#NULL!,3,#NULL!,3.985273467,2.302585093,3.155775915,4.440520446,455,461,6,0.010291595,0,0,4,0.895481302,0,0,8,4,0.006861063,2,0.003430532,2,0.003430532,0.013722127,4,0.006861063,1,0.001715266,10,0.017152659,43,0.073756432,0,0,31,0.053173242,11,0.018867925,0.397941681,2,0.003430532,0,0,583,Unsure,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WG0033_U2,WG0033,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.646082256,0.714285714,15,0.234375,5.461179987,2.983819115,2.993547656,3.125556436,3.01732259,0.251896911,0.06037037,0.186318826,0.017055556,-0.017166667,0.034222222,0.81289,0.303608588,0.61088254,-0.196968075,3.123443308,2.231355072,0.981382278,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,4,2,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,58.39787099,#NULL!,#NULL!,#NULL!,#NULL!,0,#NULL!,4,20,3,1,#NULL!,3.80666249,2.302585093,3.285788509,4.7,338,482,144,0.292089249,10,0,3,0.850351666,0,0,17,10,0.020283976,2,0.004056795,5,0.010141988,0.034482759,6,0.012170385,0,0,14,0.028397566,26,0.052738337,0,0,32,0.064908722,14,0.028397566,0.430020284,3,0.006085193,0,0,493,Unsure,No,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0033_U3,WG0033,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.422637209,0.59375,12,0.184615385,5.223676708,2.344175232,3.219914683,3.10154318,3.285727783,0.212021828,0.036031605,0.142042519,0.022084233,-0.008315335,0.030399568,0.87435,0.026103496,0.558576694,-1.182636716,3.191432379,2.6565993,2.000967752,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,8,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,36.9497457,#NULL!,#NULL!,#NULL!,#NULL!,0,#NULL!,4,21,#NULL!,6,1,3.832979798,2.302585093,2.71072961,3.961038961,411,484,73,0.144268775,5,0,5,1.03668569,0,0,18,14,0.027667984,3,0.005928854,1,0.001976285,0.035573123,8,0.015810277,0,0,13,0.0256917,71,0.140316206,0,0,36,0.071146245,16,0.031620553,0.415019763,1,0.001976285,1,0.001976285,506,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WG0034_U1,WG0034,English,,,#NULL!,#NULL!,,6.494773225,0.653846154,5,0.12195122,4.811787687,3.106622447,2.251625276,3.135606087,1.906439312,0.309213573,0.068162766,0.222769553,0.035268949,-0.022310513,0.057579462,0.73386,0.180612053,0.569855198,-0.106574122,3.133297584,2.587492771,0.444541056,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,49.2563032,#NULL!,#NULL!,#NULL!,#NULL!,0,#NULL!,3,17,5,1,#NULL!,3.926911618,2.079441542,4.198042241,4.524630542,19,380,361,0.811235955,24,4,6,1.160862911,0,0,36,22,0.049438202,1,0.002247191,13,0.029213483,0.080898876,7,0.015730337,0,0,3,0.006741573,21,0.047191011,0,0,30,0.06741573,12,0.026966292,0.395505618,0,0,1,0.002247191,445,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WG0034_U2,WG0034,English,,,#NULL!,#NULL!,,6.395386146,0.552631579,21,0.198113208,5.293873545,3.278321527,3.420255565,3.346909434,3.531848717,0.146887996,0.032511448,0.105955446,0.011384217,-0.010187581,0.021571798,0.89058,0.100208732,0.670961968,-0.466315481,3.222920136,2.067588834,2.019897605,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,2,#NULL!,#NULL!,#NULL!,#NULL!,64.79547274,#NULL!,#NULL!,#NULL!,#NULL!,0,#NULL!,3,21,9,5,#NULL!,4.565649428,2.079441542,3.309533097,4.062418726,97,772,675,0.812274368,34,4,8,1.026408861,0,0,23,17,0.02045728,4,0.004813478,2,0.002406739,0.027677497,19,0.022864019,0,0,6,0.007220217,77,0.092659446,0,0,42,0.050541516,30,0.036101083,0.335740072,0,0,0,0,831,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WG0034_U3,WG0034,English,,,#NULL!,#NULL!,,6.37654027,0.580645161,4,0.059701493,4.105968287,2.944564028,2.99448799,3.162593607,3.047828513,0.1677078,0.034632742,0.118486642,0.009926471,-0.005106209,0.01503268,0.95667,0.171216392,0.57604731,-0.735261934,2.897066476,2.101111508,1.814308401,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,7,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,74.43505573,#NULL!,#NULL!,#NULL!,#NULL!,0,1,3,18,5,4,#NULL!,4.201370357,2.197224577,3.750294282,4.522462562,115,539,424,0.646341463,32,4,4,0.851109132,0,0,29,18,0.027439024,4,0.006097561,7,0.010670732,0.044207317,8,0.012195122,0,0,20,0.030487805,33,0.050304878,0,0,37,0.056402439,29,0.044207317,0.324695122,1,0.00152439,0,0,656,Unsure,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WG0035_U1,WG0035,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.228463854,0.518518519,6,0.111111111,4.719490443,3.31500593,1.028714803,2.839134758,1.051294753,0.244868279,0.047090506,0.169524646,0.005813953,-0.011310782,0.017124736,0.97108,0.281240138,0.695520927,-0.132054226,3.019675377,2.715675398,0.789624954,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,7,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,55.20354206,#NULL!,#NULL!,#NULL!,#NULL!,0,1,3,14,5,4,#NULL!,3.959754408,2.197224577,2.917782285,4.625,327,376,49,0.097609562,2,0,3,0.843612425,0,0,12,9,0.017928287,0,0,3,0.005976096,0.023904382,9,0.017928287,0,0,15,0.029880478,40,0.079681275,0,0,31,0.061752988,17,0.033864542,0.344621514,0,0,1,0.001992032,502,Unsure,No,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0035_U2,WG0035,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.228606437,0.518518519,4,0.06557377,4.198310664,2.546497806,2.583508608,2.987810959,2.803645931,0.200483155,0.028004292,0.128245869,0.018079399,-0.00472103,0.022800429,0.77412,0.002283814,0.450958579,-0.887558396,3.075852742,1.735459038,0.945010171,#NULL!,#NULL!,2,#NULL!,1,#NULL!,#NULL!,1,1,4,#NULL!,#NULL!,3,2,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,32.59688335,#NULL!,#NULL!,#NULL!,#NULL!,1,1,3,14,4,5,#NULL!,3.946961057,2.197224577,2.865242331,3.967811159,4,491,487,0.981854839,30,4,4,0.957344626,0,0,14,13,0.026209677,0,0,1,0.002016129,0.028225806,6,0.012096774,2,0.004032258,19,0.038306452,30,0.060483871,0,0,31,0.0625,20,0.040322581,0.39516129,1,0.002016129,1,0.002016129,496,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WG0035_U3,WG0035,English,,,#NULL!,#NULL!,,6.359570496,0.555555556,2,0.045454545,3.838474317,2.981051619,2.834438489,3.203433711,3.084741629,0.147907385,0.034520716,0.108474408,0.010810811,-0.008991684,0.019802495,0.92104,0.047265358,0.538116297,-0.297532435,2.898118496,2.852329644,0.692016376,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,6,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,55.33528666,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,3,15,4,4,1,4.215297173,1.945910149,3.285417616,4.246835443,34,510,476,0.927875244,29,4,4,0.944347968,0,0,23,17,0.033138402,2,0.003898635,4,0.007797271,0.044834308,4,0.007797271,0,0,15,0.029239766,28,0.054580897,0,0,31,0.06042885,16,0.031189084,0.376218324,6,0.011695906,0,0,513,Unsure,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WG0036_U1,WG0036,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.492801382,0.666666667,9,0.094736842,4.561603199,3.367724666,3.448979687,3.447005823,3.536782764,0.295750815,0.046230455,0.194105862,0.030820896,-0.015037313,0.045858209,0.93507,0.262253964,0.570266748,-0.243354584,3.091108823,2.80197049,1.936690435,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,1,77.85796084,#NULL!,#NULL!,#NULL!,#NULL!,0,2,4,24,#NULL!,3,#NULL!,4.02087741,2.48490665,3.788539508,4.455904335,161,463,302,0.413132695,16,0,4,0.811035571,0,0,24,14,0.019151847,1,0.001367989,9,0.012311902,0.032831737,13,0.017783858,0,0,9,0.012311902,77,0.105335157,0,0,38,0.051983584,17,0.023255814,0.398084815,1,0.001367989,0,0,731,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WG0036_U2,WG0036,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.526613337,0.666666667,7,0.120689655,4.801473994,2.74849156,3.49774173,3.455727433,3.314721418,0.25054404,0.017909523,0.143181543,0.024286846,-0.000475436,0.024762282,0.8533,0.16865407,0.596155414,0.037977467,2.87204776,2.849133269,0.994218399,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,66.21288633,#NULL!,#NULL!,#NULL!,#NULL!,0,#NULL!,4,23,#NULL!,3,#NULL!,4.044644894,2.397895273,3.851352799,4.375796178,78,310,232,0.335260116,14,4,6,0.985449838,0,0,40,33,0.047687861,1,0.001445087,6,0.00867052,0.057803468,8,0.011560694,0,0,9,0.01300578,50,0.072254335,0,0,34,0.049132948,12,0.01734104,0.398843931,1,0.001445087,1,0.001445087,692,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WG0036_U3,WG0036,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.560294118,0.7,17,0.155963303,5.056012038,3.313151613,1.886339142,3.50892655,1.707935084,0.133873438,0.046959416,0.113896136,0.008111702,-0.020558511,0.028670213,0.95349,0.265704802,0.639129958,-1.986346312,2.844345095,2.584284387,3.657700233,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,3,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,117.4831641,#NULL!,#NULL!,#NULL!,#NULL!,0,#NULL!,4,31,#NULL!,5,#NULL!,4.441581165,2.397895273,4.007711155,4.487152034,60,951,891,0.871819961,38,4,6,0.837009929,0,0,27,17,0.016634051,5,0.004892368,5,0.004892368,0.026418787,12,0.011741683,1,0.000978474,14,0.01369863,63,0.061643836,0,0,44,0.043052838,25,0.02446184,0.331702544,2,0.001956947,2,0.001956947,1022,Unsure,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WG0036_U4,WG0036,English,,,#NULL!,#NULL!,,6.394303661,0.612903226,4,0.085106383,4.455583543,2.971606276,3.205871956,3.268613297,2.802280704,0.267203631,0.041328218,0.174930034,0.018360161,-0.002716298,0.021076459,0.87828,0.062173101,0.633945674,0.01423198,3.054299289,3.013078248,0.839338769,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,1,#NULL!,1,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,43.75914655,#NULL!,#NULL!,#NULL!,#NULL!,0,3,4,21,#NULL!,3,#NULL!,3.723683376,2.48490665,3.913078881,4.259557344,17,476,459,0.84375,30,4,4,0.921839423,0,0,29,23,0.042279412,1,0.001838235,5,0.009191176,0.053308824,8,0.014705882,0,0,5,0.009191176,14,0.025735294,0,0,35,0.064338235,12,0.022058824,0.428308824,1,0.001838235,1,0.001838235,544,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WG0037_U1,WG0037,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.527604962,0.666666667,16,0.19047619,5.254763469,3.309660952,0.861783746,3.437455441,0.57679815,0.166557165,0.02873155,0.112010133,0.019690265,-0.006352718,0.026042984,0.93299,0.344566511,0.676797363,-0.180142313,3.003119309,3.449986767,1.661243178,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,1,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,5,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,82.11894774,#NULL!,#NULL!,#NULL!,#NULL!,0,3,4,29,#NULL!,3,#NULL!,4.102007435,2.564949357,3.867088358,4.531806616,174,778,604,0.694252874,29,0,3,0.648191712,0,0,21,9,0.010344828,2,0.002298851,10,0.011494253,0.024137931,9,0.010344828,1,0.001149425,10,0.011494253,29,0.033333333,0,0,44,0.050574713,13,0.014942529,0.373563218,2,0.002298851,1,0.001149425,870,Unsure,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WG0037_U2,WG0037,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.228606437,0.518518519,4,0.06557377,4.198310664,2.546497806,2.583508608,2.987810959,2.803645931,0.200483155,0.028004292,0.128245869,0.018079399,-0.00472103,0.022800429,0.77412,0.002283814,0.450958579,-0.887558396,3.075852742,1.735459038,0.945010171,#NULL!,#NULL!,2,#NULL!,1,#NULL!,#NULL!,1,1,4,#NULL!,#NULL!,3,2,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,32.59688335,#NULL!,#NULL!,#NULL!,#NULL!,1,1,3,14,4,5,#NULL!,3.946961057,2.197224577,2.865242331,3.967811159,4,491,487,0.981854839,30,4,4,0.957344626,0,0,14,13,0.026209677,0,0,1,0.002016129,0.028225806,6,0.012096774,2,0.004032258,19,0.038306452,30,0.060483871,0,0,31,0.0625,20,0.040322581,0.39516129,1,0.002016129,1,0.002016129,496,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WG0037_U3,WG0037,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.473529781,0.657142857,4,0.059701493,4.105968287,2.955803316,1.514400891,3.259895816,1.00635367,0.283054121,0.02985806,0.17138512,0.034944238,-0.007109665,0.042053903,0.91127,0.273562105,0.632369431,-0.171435326,3.216966508,4.303948519,1.164892875,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,64.57360288,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,4,23,7,1,#NULL!,3.975936331,2.302585093,3.49742261,4.679174484,2,244,242,0.4013267,39,5,7,1.100667678,0,0,24,18,0.029850746,2,0.00331675,4,0.006633499,0.039800995,5,0.008291874,4,0.006633499,9,0.014925373,40,0.066334992,0,0,40,0.066334992,14,0.023217247,0.393034826,1,0.001658375,1,0.001658375,603,Unsure,No,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0038_U1,WG0038,English,No one helped me,A lot,1,0,I completed the assignment on a laptop or desktop computer.,6.296888931,0.564102564,2,0.035087719,3.585952622,3.175119367,3.442459217,3.244975128,3.541870678,0.164658233,0.042973228,0.125302344,0.016105769,-0.008894231,0.025,0.94736,0.134183602,0.602192308,-0.374746629,3.270197317,3.57430648,2.467735256,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,1,#NULL!,#NULL!,#NULL!,#NULL!,35.04112713,#NULL!,#NULL!,6,#NULL!,0,#NULL!,3,22,8,6,#NULL!,4.17438727,2.079441542,3.836362773,4.273076923,211,319,108,0.184615385,9,0,4,0.894183474,0,0,22,17,0.029059829,1,0.001709402,4,0.006837607,0.037606838,12,0.020512821,0,0,9,0.015384615,55,0.094017094,0,0,43,0.073504274,16,0.027350427,0.427350427,2,0.003418803,1,0.001709402,585,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WG0038_U2,WG0038,English,No one helped me,A lot,1,0,I completed the assignment on a laptop or desktop computer.,6.417733257,0.545454545,8,0.096385542,4.578677762,3.11192477,1.048034524,3.372948361,0.98944677,0.280915687,0.035932876,0.17639072,0.012888418,-0.004908192,0.01779661,0.85305,0.437043518,0.750490849,-0.608486391,3.027733343,2.061974935,2.338790061,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,1,#NULL!,4,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,80.36689667,#NULL!,#NULL!,#NULL!,#NULL!,0,6,3,18,6,#NULL!,#NULL!,4.474491862,2.079441542,3.443985321,4.804843305,8,741,733,0.945806452,36,4,6,0.941607597,0,0,36,23,0.029677419,5,0.006451613,8,0.010322581,0.046451613,19,0.024516129,0,0,11,0.014193548,51,0.065806452,0,0,37,0.047741935,29,0.037419355,0.352258065,2,0.002580645,0,0,775,Unsure,No,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0038_U3,WG0038,English,No one helped me,A lot,1,0,I completed the assignment on a laptop or desktop computer.,6.43908086,0.592592593,4,0.048780488,3.907623096,2.868242328,1.115982648,3.331819626,1.234324866,0.259045978,0.041754539,0.171277529,0.07270291,-0.002909648,0.075612557,0.92934,0.220879035,0.649037831,-0.715580957,3.064775066,1.837086223,0.896350563,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,82.60265442,#NULL!,#NULL!,#NULL!,#NULL!,1,4,4,19,#NULL!,#NULL!,#NULL!,4.07907709,2.397895273,4.215411345,4.438461538,106,568,462,0.623481781,21,4,5,0.889169339,0,0,35,10,0.013495277,3,0.004048583,22,0.029689609,0.047233468,14,0.018893387,0,0,4,0.005398111,25,0.033738192,0,0,31,0.041835358,22,0.029689609,0.28340081,11,0.014844804,0,0,741,Unsure,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WG0039_U1,WG0039,English,"A parent, brother, sister or other relative",Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.576867742,0.676470588,6,0.12244898,4.81582795,2.912355272,2.699317856,3.282837544,2.41758572,0.283831092,0.036080405,0.177995951,0.069872958,-0.002903811,0.07277677,0.88625,0.283921574,0.598197443,-0.274469329,2.968433571,3.072779702,1.340901962,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,5,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,1,#NULL!,#NULL!,46.3569999,#NULL!,#NULL!,#NULL!,#NULL!,0,3,4,26,#NULL!,1,#NULL!,3.744968921,2.564949357,3.292277801,4.6,98,564,466,0.752827141,27,0,8,1.143766232,0,0,29,10,0.016155089,4,0.006462036,15,0.024232633,0.046849758,12,0.019386107,4,0.006462036,9,0.01453958,20,0.032310178,0,0,38,0.061389338,13,0.021001616,0.353796446,3,0.004846527,1,0.001615509,619,Unsure,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WG0039_U2,WG0039,English,"A parent, brother, sister or other relative",Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,5.997704437,0.428571429,9,0.136363636,4.922631689,2.826631119,1.530170613,3.455230816,1.768949952,0.289322108,0.032902014,0.177563068,0.037821612,-0.005531732,0.043353345,0.86913,0.423443107,0.634435362,0.023152715,2.97927379,3.127204138,1.845988715,#NULL!,#NULL!,#NULL!,1,2,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,1,3,62.10384805,#NULL!,#NULL!,#NULL!,#NULL!,0,1,3,13,5,6,#NULL!,4.062165664,2.302585093,3.377175456,4.91394148,7,492,485,0.729323308,25,4,9,1.162380213,0,0,24,23,0.034586466,1,0.001503759,0,0,0.036090226,6,0.009022556,0,0,14,0.021052632,50,0.07518797,0,0,32,0.048120301,20,0.030075188,0.410526316,1,0.001503759,2,0.003007519,665,Unsure,No,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0039_U3,WG0039,English,"A parent, brother, sister or other relative",A little,1,1,I completed the assignment on a laptop or desktop computer.,6.505243531,0.620689655,11,0.11827957,4.781470065,3.072923642,3.433170775,3.382691866,3.327576153,0.224136894,0.032944923,0.14501337,0.019168026,-0.006688418,0.025856444,0.85125,0.11769165,0.644092335,-0.670180998,3.1975556,1.935790708,1.860545922,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,1,35.31664266,#NULL!,#NULL!,#NULL!,#NULL!,0,2,4,20,#NULL!,3,#NULL!,3.931825633,2.48490665,3.722786505,4.112745098,145,376,231,0.336734694,9,0,11,1.231341766,0,0,15,10,0.014577259,4,0.005830904,1,0.001457726,0.021865889,13,0.018950437,0,0,8,0.011661808,75,0.109329446,0,0,34,0.049562682,24,0.034985423,0.419825073,1,0.001457726,2,0.002915452,686,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WG0040_U1,WG0040,English,,,#NULL!,#NULL!,,6.26275829,0.552631579,10,0.172413793,5.155680606,2.803616802,2.68069804,3.098557456,2.541869043,0.272540258,0.019251337,0.155521466,0.056461676,-0.001782531,0.058244207,0.86362,0.28042972,0.634094571,-1.104175291,2.92447602,2.87669367,0.954276903,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,7,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,40.68127455,#NULL!,#NULL!,#NULL!,#NULL!,1,3,3,23,8,#NULL!,1,4.243123698,2.079441542,3.73379696,4.719928187,158,492,334,0.509923664,23,0,8,1.121025772,0,0,23,17,0.025954198,3,0.004580153,3,0.004580153,0.035114504,10,0.015267176,0,0,8,0.01221374,22,0.033587786,0,0,42,0.064122137,9,0.013740458,0.360305344,3,0.004580153,3,0.004580153,655,Unsure,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WG0040_U2,WG0040,English,"A parent, brother, sister or other relative",A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.301057031,0.555555556,7,0.118644068,4.784521233,3.226157869,2.067643584,3.012941273,1.898835862,0.238583494,0.039775847,0.159000027,0.013851351,-0.005011261,0.018862613,0.90004,0.353673188,0.694504195,-0.287551168,3.119248778,2.051204326,1.160810594,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,59.26854147,#NULL!,#NULL!,#NULL!,#NULL!,0,2,3,15,3,4,#NULL!,3.891820298,2.197224577,3.642698658,4.950113379,11,211,200,0.410677618,30,4,5,1.051805999,0,0,18,16,0.032854209,0,0,2,0.004106776,0.036960986,7,0.014373717,0,0,3,0.006160164,29,0.059548255,0,0,31,0.063655031,11,0.022587269,0.449691992,0,0,0,0,487,Unsure,No,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0040_U3,WG0040,English,,,#NULL!,#NULL!,,6.365640032,0.533333333,2,0.025,3.258096538,3.38240049,3.440477756,3.134926503,3.573272901,0.235367562,0.07055639,0.188240171,0.028008753,-0.019803063,0.047811816,0.85949,0.109826352,0.72336886,-0.42580122,3.328037848,2.087661801,1.970371877,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,37.76631549,#NULL!,#NULL!,#NULL!,#NULL!,0,1,3,16,5,5,#NULL!,3.918667548,2.197224577,3.863576488,4.14790287,52,315,263,0.522862823,22,4,6,1.111545769,0,0,26,12,0.023856859,4,0.007952286,10,0.019880716,0.051689861,18,0.035785288,1,0.001988072,4,0.007952286,58,0.115308151,0,0,34,0.067594433,13,0.02584493,0.437375746,2,0.003976143,2,0.003976143,503,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WG0041_U1,WG0041,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.228606437,0.518518519,4,0.06557377,4.198310664,2.546497806,2.583508608,2.987810959,2.803645931,0.200483155,0.028004292,0.128245869,0.018079399,-0.00472103,0.022800429,0.77412,0.002283814,0.450958579,-0.887558396,3.075852742,1.735459038,0.945010171,#NULL!,#NULL!,2,#NULL!,1,#NULL!,#NULL!,1,1,4,#NULL!,#NULL!,3,2,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,32.59688335,#NULL!,#NULL!,#NULL!,#NULL!,1,1,3,14,4,5,#NULL!,3.946961057,2.197224577,2.865242331,3.967811159,4,491,487,0.981854839,30,4,4,0.957344626,0,0,14,13,0.026209677,0,0,1,0.002016129,0.028225806,6,0.012096774,2,0.004032258,19,0.038306452,30,0.060483871,0,0,31,0.0625,20,0.040322581,0.39516129,1,0.002016129,1,0.002016129,496,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WG0041_U2,WG0041,English,No one helped me,A lot,0,0,I completed the assignment on a laptop or desktop computer.,6.368903195,0.571428571,7,0.125,4.836281907,3.317991561,2.928685893,3.395794449,2.628523136,0.163717477,0.043184116,0.125042855,0.017294521,-0.009246575,0.026541096,0.9436,0.141975973,0.541675964,-0.452014868,2.931076484,2.063400418,2.582455202,#NULL!,1,#NULL!,#NULL!,1,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,#NULL!,#NULL!,#NULL!,#NULL!,6,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,2,#NULL!,#NULL!,#NULL!,1,57.6215406,#NULL!,#NULL!,#NULL!,#NULL!,1,3,3,17,5,#NULL!,#NULL!,4.157145463,2.197224577,3.523657315,4.48173913,34,564,530,0.832025118,28,4,10,1.222679727,0,0,33,23,0.03610675,8,0.01255887,2,0.003139717,0.051805338,14,0.021978022,3,0.004709576,21,0.032967033,21,0.032967033,0,0,32,0.050235479,26,0.040816327,0.398744113,0,0,5,0.007849294,637,Unsure,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WG0041_U3,WG0041,English,No one helped me,A lot,0,0,I completed the assignment on a phone (such as an iPhone or Android).,6.154099541,0.5,12,0.181818182,5.208492117,2.670777901,0.956093297,3.346042324,0.983271728,0.21830042,0.03968254,0.148813142,0.016470588,-0.006323529,0.022794118,0.82245,0.475622005,0.652529412,0.007698852,2.864028888,1.263913771,2.365057292,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,1,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,1,#NULL!,1,#NULL!,1,34.79108706,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,3,12,4,5,#NULL!,4.154969184,2.079441542,4.09096596,4.860784314,305,433,128,0.228571429,7,0,7,1.130333768,0,0,16,12,0.021428571,2,0.003571429,2,0.003571429,0.028571429,6,0.010714286,2,0.003571429,10,0.017857143,18,0.032142857,0,0,28,0.05,15,0.026785714,0.4625,1,0.001785714,1,0.001785714,560,Unsure,No,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0042_U1,WG0042,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.228463854,0.518518519,6,0.111111111,4.719490443,3.31500593,1.028714803,2.839134758,1.051294753,0.244868279,0.047090506,0.169524646,0.005813953,-0.011310782,0.017124736,0.97108,0.281240138,0.695520927,-0.132054226,3.019675377,2.715675398,0.789624954,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,4,2,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,7,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,55.20354206,#NULL!,#NULL!,#NULL!,#NULL!,0,1,3,14,5,4,#NULL!,3.959754408,2.197224577,2.917782285,4.625,327,376,49,0.097609562,2,0,3,0.843612425,0,0,12,9,0.017928287,0,0,3,0.005976096,0.023904382,9,0.017928287,0,0,15,0.029880478,40,0.079681275,0,0,31,0.061752988,17,0.033864542,0.344621514,0,0,1,0.001992032,502,Unsure,No,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WG0042_U2,WG0042,English,No one helped me,A little,1,0,I completed the assignment on a laptop or desktop computer.,6.72591676,0.82,19,0.175925926,5.175731147,3.252046851,3.36389517,3.349847816,3.317924285,0.179806788,0.044543026,0.13444642,0.009266409,-0.013803089,0.023069498,0.90787,0.121138771,0.531686426,-0.877677957,3.156972523,3.564637809,2.484801348,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,6,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,51.07576394,#NULL!,4,#NULL!,#NULL!,0,2,4,43,#NULL!,1,#NULL!,4.256257247,2.397895273,3.350151466,4.006443299,202,658,456,0.544802867,28,0,6,0.912140122,0,0,32,22,0.026284349,7,0.008363202,3,0.003584229,0.03823178,15,0.017921147,0,0,9,0.010752688,100,0.119474313,0,0,55,0.065710872,32,0.03823178,0.396654719,0,0,0,0,837,Unsure,No,3,Reflect,Annotator3,Final,N/A,N/A
WG0042_U3,WG0042,English,A teacher,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.71291938,0.777777778,6,0.06,4.110873864,3.015412254,2.526407222,3.248967212,1.646500378,0.313751069,0.027313231,0.184188765,0.074550898,-0.002058383,0.076609281,0.90253,0.193971785,0.714489433,-1.160611507,2.932937798,4.221711929,1.298599338,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,6,4,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,113.5330923,#NULL!,#NULL!,#NULL!,#NULL!,1,3,4,37,#NULL!,1,#NULL!,4.106392901,2.397895273,4.143926255,4.645209581,2,670,668,0.843434343,49,5,8,1.045362498,0,0,34,15,0.018939394,8,0.01010101,11,0.013888889,0.042929293,25,0.031565657,0,0,15,0.018939394,9,0.011363636,0,0,50,0.063131313,18,0.022727273,0.268939394,1,0.001262626,1,0.001262626,792,Unsure,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WG0043_U1,WG0043,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.076521052,0.5,3,0.06,4.110873864,2.745998551,2.13693049,2.925831335,2.759266145,0.212465726,0.018030508,0.124263371,0.041232227,-0.000118483,0.041350711,0.9148,0.284503843,0.629807692,0.454899261,2.90108161,1.891418416,1.15056584,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,#NULL!,1,55.83380264,#NULL!,#NULL!,#NULL!,#NULL!,3,#NULL!,3,12,4,5,#NULL!,3.951243719,2.079441542,3.301247171,5.084134615,10,263,253,0.525987526,25,4,9,1.29470907,0,0,5,4,0.008316008,0,0,1,0.002079002,0.01039501,8,0.016632017,1,0.002079002,6,0.012474012,13,0.027027027,0,0,28,0.058212058,5,0.01039501,0.413721414,1,0.002079002,0,0,481,Unsure,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0418_U1,WS0418,English,No one helped me,A lot,1,1,I completed the assignment on a tablet (such as an iPad).,6.628205458,0.772727273,11,0.114583333,4.749991771,2.931905921,1.320623389,3.488011826,1.481520336,0.122062282,0.051065041,0.173127323,0.034115854,-0.013506098,0.047621951,0.99999,0.277516086,0.513440826,-0.604518738,2.731282031,5.388909733,4.438193057,2,1,1,0,0,0,0,0,6,0,1,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,1,77.99190074,0,0,0,0,0,0,4,37,0,2,1,4.401829262,2.302585093,4.054310257,4.790441176,71,341,270,0.291262136,37,0,7,0.932029124,0,0,57,39,0.042071197,9,0.009708738,9,0.009708738,0.061488673,21,0.022653722,5,0.005393743,15,0.01618123,51,0.055016181,1,0.001078749,51,0.055016181,40,0.043149946,0.321467098,0,0,2,0.002157497,927,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0418_U2,WS0418,English,No one helped me,Somewhat,0,1,I completed the assignment on a phone (such as an iPhone or Android).,4.69440132,0.125,0,0,0,2.399213979,1.036359192,2.810081679,0.868794704,0.077608859,0.009309309,0.086918168,0.005630631,0,0.005630631,0.78633,0.041252607,0.535045045,-0.075025523,2.912042574,0.982636562,0.145268973,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,9.36895196,0,0,0,0,0,2,0,4,0,2,0,3.32323584,1.386294361,3.19826031,4.855855856,31,44,13,0.108333333,2,0,3,1.414973348,0,0,1,1,0.008333333,0,0,0,0,0.008333333,1,0.008333333,0,0,4,0.033333333,4,0.033333333,0,0,9,0.075,6,0.05,0.566666667,0,0,0,0,120,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0418_U3,WS0418,English,No one helped me,Somewhat,0,0,I completed the assignment on a laptop or desktop computer.,0,0,1,0.076923077,4.355722147,2.024068945,1.152897227,2.30812479,1.025426432,0.141666667,0.112681159,0.254347826,0.102717391,-0.039402174,0.142119565,0,-0.014198548,0.598517391,-0.347777663,2.857295984,0.852492517,0.27384714,0,0,2,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,9.996602456,0,0,0,0,0,5,0,1,0,0,0,3.828641396,0.693147181,2.804746277,4.391304348,29,66,37,0.345794393,1,0,5,1.67878208,0,0,7,7,0.065420561,0,0,0,0,0.065420561,0,0,5,0.046728972,5,0.046728972,1,0.009345794,0,0,7,0.065420561,0,0,0.598130841,0,0,1,0.009345794,107,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0419_U1,WS0419,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,0,0,2,0.064516129,4.182296357,2.818018513,2.3696017,3.035508256,2.096846677,0.065878378,0.031475225,0.097353604,0.016385135,-0.005405405,0.021790541,0.42023,0.256372758,0.61973418,-0.400307518,2.828783737,2.002430498,1.400751204,0,1,1,0,0,0,0,1,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,37.81381001,0,0,0,0,0,1,0,4,0,9,0,4.087655574,1.609437912,3.995085008,4.899328859,47,146,99,0.28125,4,0,5,1.181973441,0,0,14,12,0.034090909,1,0.002840909,1,0.002840909,0.039772727,5,0.014204545,2,0.005681818,8,0.022727273,15,0.042613636,1,0.002840909,15,0.042613636,13,0.036931818,0.553977273,0,0,3,0.008522727,352,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0420_U1,WS0420,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.421459025,0.538461538,1,0.04,3.713572067,2.773813818,1.036914362,2.058903187,1.028721216,0.13498795,0.03649789,0.17148584,0.005168776,-0.010654008,0.015822785,0.98283,0.291783001,0.731285085,-0.239753151,3.087887631,0.811826201,0.976089803,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,41.15062964,0,0,0,0,1,2,0,11,0,0,0,3.858622229,1.609437912,3.407079717,4.801687764,2,228,226,0.872586873,13,1,8,1.503627702,0,0,14,6,0.023166023,8,0.030888031,0,0,0.054054054,4,0.015444015,0,0,4,0.015444015,9,0.034749035,0,0,14,0.054054054,17,0.065637066,0.513513514,1,0.003861004,0,0,259,,No,3,Reflect,Annotator3,Final,N/A,N/A
WS0420_U2,WS0420,English,A tutor,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.61526756,0.784313725,7,0.058823529,4.091399052,3.07286799,1.010504138,3.259752156,1.000781152,0.109669435,0.107308155,0.21697759,0.038132095,-0.060397317,0.098529412,0.98223,0.529839857,0.677253042,-1.078030209,2.888572599,5.673145318,4.922340767,0,0,0,0,2,0,1,0,1,1,0,0,2,0,0,0,0,9,0,0,0,1,0,3,0,0,0,0,3,121.4836712,0,0,6,0,4,1,4,44,0,2,0,4.225790448,2.63905733,3.593478488,4.885177453,15,926,911,0.836547291,45,0,18,1.243755298,5,0.004591368,56,47,0.043158861,6,0.005509642,3,0.002754821,0.051423324,20,0.018365473,5,0.004591368,12,0.011019284,56,0.051423324,1,0.000918274,62,0.056932966,39,0.035812672,0.347107438,0,0,3,0.002754821,1089,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0420_U3,WS0420,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,5.121977881,0.125,1,0.041666667,3.753417975,2.69030703,1.119941033,1.99599263,1.059882864,0.162708935,0.070882937,0.233591871,0.068402778,-0.020486111,0.088888889,0.74965,0.248073409,0.736958042,0.076284197,2.979584814,0.481478657,1.283311236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,19.53133614,0,0,0,0,0,3,0,4,0,1,0,3.576550269,1.386294361,1.931219456,4.685314685,13,127,114,0.703703704,5,0,4,1.409787061,0,0,8,7,0.043209877,1,0.00617284,0,0,0.049382716,2,0.012345679,0,0,2,0.012345679,6,0.037037037,0,0,9,0.055555556,8,0.049382716,0.555555556,0,0,1,0.00617284,162,,No,2,Inform/Explore,Annotator3,Draft,N/A,N/A
WS0421_U1,WS0421,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.683410026,0.79245283,7,0.0625,4.151039906,3.136152347,0.993599203,3.268647071,0.9955663,0.114707964,0.074183307,0.18888027,0.017629263,-0.02249725,0.040126513,1,0.459379195,0.579323529,0.225427053,2.723550058,8.748600366,3.818301968,0,2,1,0,1,0,3,4,6,2,0,0,1,0,1,0,0,14,0,0,0,1,1,2,0,0,0,0,1,109.9319397,0,0,5,0,1,1,5,44,0,3,0,4.2385559,2.564949357,4.351802258,5.173140954,34,944,910,0.890410959,50,0,24,1.388871124,5,0.004892368,39,30,0.029354207,5,0.004892368,4,0.003913894,0.03816047,15,0.014677104,6,0.005870841,32,0.031311155,49,0.047945205,1,0.000978474,60,0.058708415,35,0.034246575,0.386497065,1,0.000978474,1,0.000978474,1022,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WS0421_U2,WS0421,English,No one helped me,A lot,1,1,I completed the assignment on a tablet (such as an iPad).,6.108759659,0.363636364,3,0.125,4.836281907,2.378197756,1.252852249,2.116551838,1.284248836,0.119385418,0.048939248,0.168324666,0.015710383,-0.010928962,0.026639344,0.78692,0.095661473,0.506257473,0.040209439,3.173674422,1.319116903,0.587907539,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,26.92968055,0,0,0,0,0,2,0,7,0,2,0,3.823191792,1.386294361,3.404935678,4.387978142,1,142,141,0.687804878,8,1,4,1.312012139,0,0,10,8,0.03902439,0,0,2,0.009756098,0.048780488,6,0.029268293,2,0.009756098,3,0.014634146,6,0.029268293,0,0,12,0.058536585,13,0.063414634,0.497560976,0,0,0,0,205,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0421_U3,WS0421,English,No one helped me,A lot,1,1,I completed the assignment on a phone (such as an iPhone or Android).,6.608643051,0.727272727,4,0.08,4.394449155,2.512807107,3.296929169,2.91460589,3.44097172,0.104644746,0.031364469,0.136009214,0.022252747,-0.006043956,0.028296703,0.93509,0.261462834,0.715686107,-0.431175763,2.833263098,6.3114114,0.672546917,0,2,1,0,0,0,0,0,1,2,0,0,0,0,0,1,0,3,1,0,0,0,0,0,0,0,0,0,1,32.24063412,0,0,0,0,0,1,4,26,0,2,0,3.485427116,2.397895273,3.694838732,5,3,92,89,0.211904762,29,8,4,1.022172979,1,0.002380952,10,8,0.019047619,1,0.002380952,1,0.002380952,0.023809524,10,0.023809524,1,0.002380952,8,0.019047619,51,0.121428571,1,0.002380952,41,0.097619048,18,0.042857143,0.435714286,1,0.002380952,2,0.004761905,420,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WS0423_U1,WS0423,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.359292543,0.52173913,2,0.060606061,4.120760252,2.832119952,1.005494549,2.5877727,0.999189242,0.076642556,0.120566606,0.197209162,0.013924051,-0.064810127,0.078734177,0.91503,0.440565654,0.594547537,0.297551607,2.716367826,3.205135299,0.427083285,0,1,0,0,0,0,1,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,2,1,1,0,0,3,49.54188657,0,0,0,0,0,2,4,15,0,2,0,3.411401552,2.564949357,3.982355812,5.134517766,3,395,392,0.873051225,26,5,10,1.366828388,0,0,21,9,0.020044543,3,0.006681514,9,0.020044543,0.046770601,6,0.013363029,3,0.006681514,12,0.026726058,12,0.026726058,0,0,28,0.062360802,15,0.033407572,0.4922049,0,0,0,0,449,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0426_U1,WS0426,English,"A parent, brother, sister or other relative",A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.633575509,0.720430108,17,0.102409639,4.638698174,2.82686875,0.922516975,2.862750058,0.846181708,0.110569586,0.060905442,0.171475028,0.022700965,-0.019099678,0.041800643,1,0.555211781,0.637843415,-0.382935437,2.9136919,15.7501518,3.230571415,0,0,0,0,0,0,1,0,14,0,0,0,0,0,0,0,3,11,0,2,0,2,0,0,0,0,0,0,0,197.3558887,0,0,18,0,6,2,7,74,0,8,2,4.451759973,2.890371758,4.399619348,4.956606218,95,1093,998,0.573563218,51,0,16,1.008404367,7,0.004022989,57,42,0.024137931,8,0.004597701,7,0.004022989,0.032758621,34,0.01954023,2,0.001149425,15,0.00862069,63,0.036206897,1,0.000574713,110,0.063218391,45,0.025862069,0.314367816,5,0.002873563,6,0.003448276,1740,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0426_U2,WS0426,English,,,#NULL!,#NULL!,,6.61034488,0.808823529,19,0.231707317,5.449781514,2.91453885,1.146049972,3.246072902,1.115874225,0.100971019,0.044229507,0.145190446,0.011063508,-0.005796371,0.016859879,1,0.643934992,0.789231368,-0.602669899,3.005394779,15.85764641,4.017627184,0,1,0,0,0,0,0,1,7,0,0,0,2,0,0,0,1,7,0,5,1,1,0,2,0,0,0,0,8,153.4707205,0,0,23,0,4,2,5,58,0,2,1,4.253584312,2.63905733,4.15087732,5.409137056,5,921,916,0.79721497,79,0,45,1.603842266,0,0,23,18,0.015665796,4,0.003481288,1,0.000870322,0.020017406,15,0.01305483,3,0.002610966,51,0.044386423,18,0.015665796,0,0,84,0.07310705,21,0.018276762,0.374238468,1,0.000870322,0,0,1149,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0426_U3,WS0426,English,,,#NULL!,#NULL!,,6.489120497,0.634146341,5,0.069444444,4.254824377,3.216211183,1.123531863,3.474193056,1.3318966,0.115690455,0.04785545,0.163545904,0.024334898,-0.014397496,0.038732394,0.93555,0.408000956,0.6774755,-0.588629025,2.970848314,5.314663457,2.689351641,0,0,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,1,58.38906398,0,0,0,0,1,0,3,29,0,9,0,4.248495242,2.197224577,4.003931477,4.825396825,19,674,655,0.909722222,42,0,19,1.437574414,0,0,23,14,0.019444444,5,0.006944444,4,0.005555556,0.031944444,12,0.016666667,2,0.002777778,9,0.0125,28,0.038888889,0,0,46,0.063888889,15,0.020833333,0.416666667,3,0.004166667,2,0.002777778,720,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0428_U1,WS0428,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.391818213,0.541666667,6,0.077922078,4.36846101,3.060893248,0.971914315,3.289980668,0.91546542,0.067647324,0.047088438,0.114735762,0.005338809,-0.020225873,0.025564682,0.61025,0.340351393,0.537635594,-0.483404402,2.802780202,1.655291243,1.830188414,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,2,41.8761392,0,0,0,0,1,0,2,16,0,6,0,4.223700583,1.945910149,3.934366285,4.874476987,38,541,503,0.92804428,24,0,17,1.51007982,0,0,13,11,0.020295203,1,0.001845018,1,0.001845018,0.02398524,7,0.012915129,2,0.003690037,8,0.014760148,49,0.090405904,0,0,27,0.049815498,18,0.033210332,0.446494465,0,0,0,0,542,,Yes,2,Inform/Explore,Annotator3,Draft,N/A,N/A
WS0428_U2,WS0428,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.75967365,0.772727273,6,0.065934066,4.203708044,3.422475486,1.382504838,3.46736131,1.322946578,0.095352546,0.122944151,0.218296697,0.009890511,-0.072992701,0.082883212,0.89231,0.36628194,0.621952394,-0.329231263,3.081949751,6.198642444,2.897766039,0,5,0,0,0,0,1,1,2,3,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,5,71.57035141,0,0,0,0,1,0,3,37,0,4,0,4.318968499,2.197224577,4.228518559,4.924556213,2,670,668,0.857509628,45,6,21,1.446500477,0,0,37,22,0.028241335,5,0.006418485,10,0.01283697,0.047496791,11,0.014120668,9,0.011553273,22,0.028241335,54,0.069319641,0,0,50,0.064184852,25,0.032092426,0.367137356,0,0,5,0.006418485,779,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0428_U3,WS0428,English,A teacher,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.703034468,0.75,5,0.096153846,4.576295765,3.286768533,1.351238973,3.342144397,1.116857869,0.108319157,0.02917444,0.137493598,0.025886194,-0.004337687,0.030223881,0.99188,0.104899799,0.738878883,-0.329231462,3.000026972,4.792677907,1.051107817,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,11,0,0,0,0,0,4,0,0,0,0,1,69.45101132,0,0,7,0,0,0,5,32,0,3,0,3.793614774,2.48490665,4.653681526,4.551594747,68,467,399,0.675126904,34,0,11,1.292533425,0,0,13,11,0.018612521,1,0.001692047,1,0.001692047,0.021996616,7,0.011844332,3,0.005076142,18,0.030456853,25,0.042301184,1,0.001692047,47,0.079526227,18,0.030456853,0.387478849,0,0,0,0,591,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0429_U1,WS0429,English,,,#NULL!,#NULL!,,0,0,1,0.04,3.713572067,2.477288928,0.68549211,1.92616345,0.523232988,0.093194793,0.061919404,0.155114197,0.012865497,-0.019152047,0.032017544,0,0.264365201,0.591780952,0.127202054,2.943462055,0.808877978,0.900111398,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,19.86385251,0,0,0,0,0,4,0,1,0,1,0,4.025351691,1.098612289,3.61945162,4.791666667,93,191,98,0.497461929,2,0,7,1.562685277,0,0,14,12,0.060913706,1,0.005076142,1,0.005076142,0.07106599,2,0.010152284,1,0.005076142,2,0.010152284,3,0.015228426,0,0,7,0.035532995,8,0.040609137,0.538071066,0,0,0,0,197,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0429_U2,WS0429,English,,,#NULL!,#NULL!,,6.467476874,0.565217391,11,0.234042553,5.459766575,3.095269982,1.131260086,2.951573367,1.354664078,0.091206918,0.166800633,0.258007551,0.029475703,-0.084462916,0.113938619,0.95082,0.379613832,0.627621964,-0.37610496,2.914783776,2.374761389,1.224809592,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56.66212805,0,0,0,0,0,3,4,15,0,1,0,3.56052942,2.397895273,3.729511382,4.84754522,22,427,405,0.904017857,25,0,10,1.36775515,0,0,23,11,0.024553571,4,0.008928571,8,0.017857143,0.051339286,5,0.011160714,4,0.008928571,6,0.013392857,6,0.013392857,0,0,28,0.0625,9,0.020089286,0.453125,1,0.002232143,2,0.004464286,448,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0429_U3,WS0429,English,,,#NULL!,#NULL!,,6.703807408,0.806451613,15,0.105633803,4.669400561,3.046145366,0.819289219,2.789717916,0.868794704,0.132181677,0.065306427,0.197488104,0.017354865,-0.020645953,0.038000818,0.8862,0.617554617,0.604538987,-0.475722431,2.839461268,11.13980744,4.803473274,0,0,0,0,3,0,1,0,7,0,0,0,1,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,4,172.2400337,0,0,9,0,0,0,5,53,0,4,0,4.535077809,2.564949357,4.761337267,5.423267327,17,1244,1227,0.854456825,51,0,39,1.449613748,4,0.002785515,42,29,0.020194986,10,0.006963788,3,0.002089136,0.029247911,29,0.020194986,5,0.003481894,18,0.012534819,49,0.034122563,1,0.000696379,78,0.054317549,30,0.020891365,0.36908078,0,0,3,0.002089136,1436,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0430_U1,WS0430,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.650010397,0.755102041,7,0.069306931,4.252870381,3.279537826,3.639587859,3.486156022,3.496779326,0.085306666,0.046354357,0.131661024,0.016065389,-0.009075536,0.025140924,0.94543,0.192510544,0.671941297,-0.299774064,2.844428534,8.624282449,4.947281409,0,3,0,0,1,0,1,1,5,0,0,0,0,0,0,0,0,3,1,3,0,1,0,1,1,0,0,0,1,96.82802608,0,0,6,0,2,0,4,40,0,3,2,4.475061501,2.302585093,4.119129813,4.461275626,5,964,959,0.93927522,56,8,19,1.292460024,2,0.001958864,35,26,0.02546523,2,0.001958864,7,0.006856024,0.034280118,15,0.014691479,1,0.000979432,19,0.018609207,94,0.092066601,1,0.000979432,57,0.05582762,25,0.024485798,0.354554358,2,0.001958864,2,0.001958864,1021,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WS0430_U3,WS0430,English,,,#NULL!,#NULL!,,6.762120135,0.835443038,22,0.144736842,4.981802544,2.794589566,2.726645227,3.030459332,2.479684986,0.115703988,0.065485229,0.181189217,0.021443228,-0.019784542,0.04122777,1,0.45300199,0.598254127,-0.067510172,2.793678778,13.35544004,5.908124271,1,1,4,0,0,1,4,0,11,1,0,0,1,0,0,0,0,10,1,2,0,2,1,5,0,0,0,1,2,160.8608841,0,0,14,0,2,1,6,70,0,2,0,4.386184645,2.890371758,4.423855652,4.998616874,26,1012,986,0.590772918,85,0,20,1.113382533,6,0.003594967,62,47,0.028160575,8,0.004793289,7,0.004194128,0.037147993,26,0.015578191,4,0.002396645,43,0.02576393,58,0.034751348,1,0.000599161,93,0.055721989,49,0.029358898,0.317555422,0,0,6,0.003594967,1669,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0431_U1,WS0431,English,Someone else,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.477302554,0.666666667,8,0.133333333,4.900324273,3.223679783,2.390503741,3.300317349,1.936408754,0.096053568,0.089886746,0.185748743,0.012021073,-0.049042146,0.061063218,0.90707,0.42329943,0.648644292,0.285208122,2.844029901,2.154435585,1.460328372,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,46.68712002,0,0,0,0,0,2,4,20,0,1,0,3.846271628,2.397895273,4.020724873,4.916504854,2,510,508,0.886561955,28,5,8,1.174978202,0,0,15,9,0.015706806,0,0,6,0.010471204,0.02617801,2,0.003490401,2,0.003490401,5,0.008726003,23,0.040139616,0,0,32,0.055846422,15,0.02617801,0.471204188,0,0,1,0.001745201,573,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0431_U2,WS0431,English,No one helped me,A little,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",0,0,9,0.391304348,5.972037936,1.948107674,1.320608054,2.368822742,1.284248836,0.140841967,0.098444554,0.23928652,0.053053435,-0.016412214,0.069465649,0.92122,0.021814428,0.704259615,0.424642557,3.08327702,0.560534348,0.16788305,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14.09930301,0,0,0,0,0,3,0,4,0,2,0,3.075774981,1.791759469,2.73446245,4.407692308,62,93,31,0.216783217,1,0,2,1.175686134,0,0,12,12,0.083916084,0,0,0,0,0.083916084,1,0.006993007,2,0.013986014,0,0,9,0.062937063,0,0,10,0.06993007,4,0.027972028,0.552447552,1,0.006993007,0,0,143,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0432_U1,WS0432,English,Someone else,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,0,0,3,0.142857143,4.968820744,3.059177886,0.660463255,1.925441565,0.479299524,0.104681571,0.028053725,0.132735295,0.013059701,-0.008955224,0.022014925,0,0.26153933,0.606214756,-0.067688119,2.878133678,1.105531164,0.723769334,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,13.58788739,0,0,0,0,0,2,0,4,0,1,0,3.496507561,1.791759469,3.842377988,4.929292929,7,168,161,0.71875,6,1,4,1.275475891,0,0,7,6,0.026785714,0,0,1,0.004464286,0.03125,1,0.004464286,2,0.008928571,7,0.03125,2,0.008928571,0,0,8,0.035714286,7,0.03125,0.625,0,0,1,0.004464286,224,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0432_U3,WS0432,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.483251779,0.760869565,7,0.047945205,3.890701417,3.296285458,1.098369793,3.237798673,1.032390768,0.110026598,0.089584533,0.199611131,0.011606335,-0.023846154,0.035452489,1,0.46977799,0.639332276,-0.672858326,2.92225925,5.598551427,4.523129128,0,2,1,0,1,0,0,0,6,0,1,0,0,0,0,0,0,6,0,1,0,0,0,4,0,0,0,0,0,144.8817651,0,0,7,0,1,1,5,36,3,1,0,4.442651256,2.564949357,4.081341693,4.939366516,53,1216,1163,0.947068404,50,6,21,1.257702021,0,0,83,62,0.050488599,10,0.008143322,11,0.008957655,0.067589577,27,0.021986971,8,0.006514658,26,0.021172638,60,0.048859935,0,0,52,0.042345277,42,0.034201954,0.323289902,1,0.000814332,8,0.006514658,1228,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0433_U1,WS0433,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.248563011,0.523809524,6,0.117647059,4.776153194,3.30105032,3.332246283,2.995571572,3.49445862,0.130309085,0.018276673,0.148585758,0.045454545,-0.00495338,0.050407925,0.83997,0.117656591,0.521888117,-0.219526414,2.796302664,2.628832457,1.328690353,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,2,49.59064491,0,0,0,0,0,0,5,13,0,3,0,3.574216546,2.48490665,3.425463658,4.478971963,1,349,348,0.754880694,25,6,7,1.209096115,0,0,17,13,0.028199566,3,0.006507592,1,0.002169197,0.036876356,10,0.021691974,3,0.006507592,13,0.028199566,30,0.065075922,0,0,27,0.05856833,27,0.05856833,0.455531453,1,0.002169197,3,0.006507592,461,,Unsure,3,Reflect,Annotator3,Final,N/A,N/A
WS0434_U1,WS0434,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.373580572,0.565217391,6,0.066666667,4.21459369,3.193494282,0.950911751,3.151157449,0.874215624,0.115204333,0.112746825,0.227951158,0.038308458,-0.053358209,0.091666667,1,0.301572617,0.598183052,-1.030333099,2.994093431,4.038952455,2.432919861,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,65.8181503,0,0,12,0,1,6,3,27,10,0,0,4.201370357,2.197224577,3.455037724,4.708818636,20,649,629,0.915574964,47,4,9,1.149232563,0,0,44,27,0.03930131,9,0.013100437,8,0.011644833,0.064046579,10,0.014556041,10,0.014556041,7,0.010189229,23,0.033478894,0,0,50,0.072780204,13,0.018922853,0.369723435,1,0.001455604,3,0.004366812,687,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0437_U1,WS0437,English,Someone else,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.32616924,0.653846154,4,0.055555556,4.035223439,3.050698693,1.137802218,3.266299925,1.291250132,0.142979801,0.081070689,0.22405049,0.046480331,-0.03115942,0.077639752,0.8488,0.282418202,0.560842155,-0.422311376,2.880053176,2.334240544,2.088349385,0,1,2,0,2,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,43.25995695,0,0,0,0,0,3,3,17,3,0,0,4.090169191,2.079441542,3.750999389,4.709205021,9,390,381,0.701657459,24,4,10,1.288164377,0,0,41,30,0.055248619,4,0.007366483,7,0.012891344,0.075506446,15,0.027624309,2,0.003683241,10,0.018416206,12,0.022099448,0,0,30,0.055248619,14,0.025782689,0.418047882,3,0.005524862,5,0.009208103,543,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0437_U4,WS0437,English,,,#NULL!,#NULL!,,6.588937956,0.6875,7,0.094594595,4.560116277,3.391984803,2.281622186,3.362261196,1.745880276,0.107420359,0.074281833,0.181702191,0.015061633,-0.011171032,0.026232666,0.76276,0.46460437,0.552506125,-0.816603008,3.04127591,3.441351433,2.403397519,0,4,0,0,0,0,0,0,2,1,0,0,2,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,61.93071404,0,0,0,0,1,2,5,24,0,1,0,3.902749369,2.564949357,4.172921729,4.891304348,1,517,516,0.717663421,36,7,14,1.311149415,0,0,50,34,0.0472879,3,0.004172462,13,0.018080668,0.069541029,14,0.019471488,5,0.006954103,16,0.022253129,42,0.058414465,0,0,39,0.054242003,19,0.026425591,0.408901252,0,0,7,0.009735744,719,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0438_U1,WS0438,English,No one helped me,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.443884346,0.56,5,0.06097561,4.126740917,3.345349268,3.532504797,3.42831849,3.568701395,0.116431574,0.062519219,0.178950794,0.027011494,-0.018211207,0.045222701,1,0.099013076,0.566401683,-0.104280067,2.811220111,1.282493866,2.933555593,0,0,0,0,1,0,0,0,3,3,0,0,1,0,0,0,0,1,0,0,0,0,0,7,0,1,0,1,0,52.44888836,0,0,0,0,0,0,3,14,5,3,0,4.465908119,2.079441542,3.442860366,4.015804598,143,404,261,0.34939759,9,0,6,0.955790108,0,0,34,26,0.03480589,7,0.009370817,1,0.001338688,0.045515395,7,0.009370817,7,0.009370817,19,0.025435074,58,0.077643909,0,0,29,0.038821954,13,0.017402945,0.374832664,3,0.004016064,2,0.002677376,747,,No,3,Reflect,Annotator3,Final,N/A,N/A
WS0439_U1,WS0439,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.450278552,0.709677419,8,0.119402985,4.790844326,3.019596002,1.124387458,3.219267984,1.291555117,0.122752194,0.029976668,0.152728861,0.042316258,-0.008407572,0.050723831,0.9443,0.220693785,0.636035714,-0.337819264,3.054727811,5.024225631,1.029301022,0,0,1,1,1,0,0,0,6,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,2,37.88283903,0,0,0,0,0,1,4,24,0,2,0,3.70689796,2.397895273,4.458107623,4.790178571,11,203,192,0.365019011,11,0,8,1.209759584,0,0,19,11,0.020912548,5,0.009505703,3,0.005703422,0.036121673,13,0.024714829,10,0.019011407,12,0.022813688,26,0.049429658,1,0.001901141,38,0.072243346,19,0.036121673,0.463878327,0,0,0,0,526,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0439_U2,WS0439,English,No one helped me,Not at all,0,1,I completed the assignment on a laptop or desktop computer.,5.925262305,0.333333333,3,0.081081081,4.407707552,2.85905289,3.286749847,2.947221886,3.363012264,0.127108327,0.036101499,0.163209826,0.01366782,-0.006574394,0.020242215,0.53625,0.320818477,0.69058042,-0.17159938,3.031900566,1.326695337,0.269403921,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.78992111,0,0,0,0,0,5,1,6,0,0,0,4.26969745,1.386294361,3.273231518,4.545454545,5,281,276,0.896103896,11,0,10,1.524623693,0,0,10,6,0.019480519,2,0.006493506,2,0.006493506,0.032467532,6,0.019480519,0,0,1,0.003246753,27,0.087662338,1,0.003246753,14,0.045454545,8,0.025974026,0.535714286,1,0.003246753,0,0,308,,No,3,Reflect,Annotator3,Final,N/A,N/A
WS0439_U3,WS0439,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.688384646,0.797619048,11,0.064327485,4.179412857,3.162901676,1.075554108,2.998990685,0.950317488,0.111328835,0.084874145,0.19619576,0.019729242,-0.018700361,0.038429603,1,0.514766418,0.582654469,-1.692887473,2.835615884,19.85873653,6.834816757,0,2,0,0,1,0,0,0,4,0,0,0,0,0,0,0,3,15,1,2,0,14,0,5,0,0,0,0,2,129.2197822,0,0,22,1,1,0,7,72,0,4,1,4.515245478,2.708050201,4.35150156,5.014587892,6,1151,1145,0.724683544,82,18,33,1.340167902,4,0.002531646,62,40,0.025316456,6,0.003797468,16,0.010126582,0.039240506,24,0.015189873,4,0.002531646,23,0.014556962,97,0.061392405,5,0.003164557,102,0.064556962,42,0.026582278,0.346202532,1,0.000632911,4,0.002531646,1580,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0441_U1,WS0441,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.432156539,0.545454545,13,0.185714286,5.229579565,2.569597376,0.844823126,2.65840049,0.973127576,0.107297846,0.116250245,0.223548091,0.031532922,-0.072067901,0.103600823,0.98765,0.357201121,0.675206368,-0.012233962,3.092746849,3.706419404,0.920683989,0,0,0,0,2,0,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,101.8384656,0,0,15,0,0,0,3,27,0,14,0,3.980719537,2.197224577,3.6178271,5.058091286,22,477,455,0.777777778,44,0,5,0.979867311,0,0,28,23,0.039316239,1,0.001709402,4,0.006837607,0.047863248,8,0.013675214,5,0.008547009,4,0.006837607,13,0.022222222,0,0,49,0.083760684,13,0.022222222,0.352136752,0,0,2,0.003418803,585,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0441_U2,WS0441,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,5.648369417,0.333333333,7,0.636363636,6.45734035,2.736413442,0.542306452,1.696043057,0.514375773,0.15485396,0.045183361,0.199922378,0.020114943,-0.006896552,0.027011494,0.93121,0.790571505,0.278689922,0.103519032,2.832520065,1.474592796,0.238288028,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.94293491,0,0,8,0,0,1,0,7,0,4,0,3.068052935,1.386294361,1.915565921,5.418604651,13,81,68,0.686868687,7,0,6,1.789623439,0,0,4,2,0.02020202,0,0,2,0.02020202,0.04040404,1,0.01010101,0,0,1,0.01010101,0,0,0,0,13,0.131313131,1,0.01010101,0.454545455,0,0,0,0,99,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0441_U3,WS0441,English,A teacher,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.328035204,0.533333333,11,0.134146341,4.906358202,3.208153022,0.737984221,3.155170004,0.960788281,0.109547877,0.075987607,0.185535484,0.017140825,-0.024573257,0.041714083,0.99822,0.603812396,0.72647694,0.618907004,2.853911283,7.111407285,1.077756149,0,1,0,0,1,0,1,0,6,1,0,0,0,0,0,0,0,4,0,0,0,5,0,3,0,0,0,0,1,71.73544757,0,0,8,0,1,0,9,29,3,3,1,3.493617386,3.044522438,4.252459486,5.282199711,2,758,756,0.992125984,69,25,18,1.39132416,0,0,30,22,0.028871391,3,0.003937008,5,0.00656168,0.039370079,10,0.01312336,0,0,20,0.026246719,15,0.019685039,1,0.001312336,70,0.091863517,17,0.022309711,0.472440945,1,0.001312336,1,0.001312336,762,,Unsure,1,Persuade,Annotator3,Final,N/A,N/A
WS0442_U1,WS0442,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.460425967,0.625,10,0.169491525,5.138685591,3.197407309,0.896453739,3.245368859,0.875467003,0.094494585,0.037955024,0.132449609,0.018456679,-0.006949458,0.025406137,1,0.22751882,0.756523836,-0.212039486,2.847843696,2.929028829,0.788315382,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,4,1,0,0,0,1,75.74126386,0,0,0,0,0,1,4,24,0,3,0,3.739499445,2.564949357,4.0415645,4.647166362,271,480,209,0.348333333,14,0,7,1.102662342,0,0,15,11,0.018333333,0,0,4,0.006666667,0.025,7,0.011666667,5,0.008333333,14,0.023333333,31,0.051666667,0,0,37,0.061666667,16,0.026666667,0.378333333,0,0,0,0,600,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0442_U2,WS0442,English,Someone else,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.451201098,0.571428571,11,0.177419355,5.184136706,2.573868107,1.856679785,3.190406158,1.939853346,0.122318323,0.05720928,0.179527603,0.035303688,-0.01654013,0.051843818,0.81944,0.260910901,0.663763657,0.053730618,2.80017149,2.951770305,2.51191999,0,3,2,0,0,0,2,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,46.94965166,0,0,0,1,0,3,4,19,0,2,0,3.423176288,2.708050201,3.633856269,4.810869565,22,404,382,0.711359404,22,0,15,1.46139288,0,0,30,19,0.03538175,3,0.005586592,8,0.014897579,0.055865922,6,0.011173184,8,0.014897579,15,0.027932961,20,0.037243948,0,0,34,0.063314711,12,0.022346369,0.448789572,1,0.001862197,2,0.003724395,537,,Yes,1,Persuade,Annotator3,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0442_U3,WS0442,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.402316613,0.608695652,5,0.094339623,4.557445492,2.546281718,0.91039245,3.06018429,0.641946704,0.065451853,0.051666667,0.11711852,0.009765625,-0.023046875,0.0328125,0.85928,0.293940253,0.636495262,-0.436526972,2.696709228,2.921020078,1.295837896,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,2,1,2,0,0,0,2,0,0,0,0,0,36.03160201,0,0,0,0,0,1,2,17,0,2,1,3.669951444,2.079441542,3.409566416,4.968152866,33,340,307,0.859943978,22,0,15,1.633638168,0,0,6,5,0.014005602,0,0,1,0.00280112,0.016806723,3,0.008403361,0,0,10,0.028011204,16,0.044817927,0,0,26,0.072829132,7,0.019607843,0.535014006,0,0,0,0,357,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0444_U1,WS0444,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.555994258,0.676470588,11,0.196428571,5.285376855,2.768518515,1.655505375,2.962473512,1.555337577,0.099308692,0.152110207,0.2514189,0.012153518,-0.096108742,0.10826226,0.97735,0.501996902,0.748190349,-0.168624527,2.908380802,4.75260569,0.825937018,0,0,0,0,1,0,0,0,1,2,0,0,2,0,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,45.06049558,0,0,0,0,0,0,4,25,0,4,1,3.843744165,2.302585093,3.466590896,4.937901499,10,367,357,0.672316384,34,0,14,1.437200982,0,0,26,19,0.035781544,2,0.003766478,5,0.009416196,0.048964218,9,0.016949153,2,0.003766478,10,0.018832392,28,0.052730697,0,0,39,0.073446328,13,0.024482109,0.455743879,2,0.003766478,5,0.009416196,531,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0444_U2,WS0444,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.026404815,0.416666667,4,0.129032258,4.867782559,2.423528858,2.00858529,2.904265887,2.279271683,0.093014129,0.054697071,0.1477112,0.00528169,-0.02241784,0.027699531,0.90305,0.202968246,0.531761792,-0.227071597,2.752140038,2.121994015,0.526630683,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,30.41588301,0,0,0,0,0,0,3,8,0,1,0,3.159361697,2.197224577,2.824934853,4.773584906,10,170,160,0.661157025,11,0,10,1.626569406,0,0,9,8,0.033057851,0,0,1,0.004132231,0.037190083,6,0.024793388,4,0.016528926,2,0.008264463,23,0.095041322,0,0,18,0.074380165,7,0.02892562,0.566115702,1,0.004132231,1,0.004132231,242,,No,2,Inform/Explore,Annotator3,Draft,N/A,N/A
WS0444_U3,WS0444,English,"A parent, brother, sister or other relative",A lot,1,0,I completed the assignment on a laptop or desktop computer.,6.64040967,0.743589744,5,0.053191489,3.992523873,3.301359973,2.779472936,3.331357965,2.341059928,0.110866324,0.071741887,0.182608211,0.017013498,-0.024578178,0.041591676,0.89388,0.35731261,0.558350294,-0.21383715,2.824900174,4.984900667,4.216964023,0,1,3,0,1,0,0,1,2,1,0,0,1,0,0,1,1,1,1,0,0,0,0,4,0,0,0,0,0,87.69475382,0,0,0,0,0,0,5,31,0,3,0,4.289317237,2.48490665,4.479871652,5.061714286,1,391,390,0.390781563,41,11,17,1.256093706,0,0,49,31,0.031062124,8,0.008016032,10,0.01002004,0.049098196,21,0.021042084,8,0.008016032,19,0.019038076,56,0.056112224,1,0.001002004,56,0.056112224,23,0.023046092,0.358717435,4,0.004008016,3,0.003006012,998,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0445_U1,WS0445,English,A teacher,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.529418838,0.64516129,6,0.069767442,4.259399034,3.369612971,3.429241626,3.316665995,3.120343622,0.128231461,0.034983648,0.163215109,0.043486172,-0.006331878,0.049818049,0.99812,0.124176813,0.655671438,-0.503767686,2.93134643,2.622214742,1.765268522,0,4,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,90.01601788,0,0,0,0,0,3,4,22,0,2,0,4.047427642,2.48490665,3.562060974,4.420669578,1,736,735,0.98,35,5,7,1.014240439,0,0,54,33,0.044,2,0.002666667,19,0.025333333,0.072,24,0.032,10,0.013333333,23,0.030666667,54,0.072,0,0,36,0.048,36,0.048,0.352,1,0.001333333,7,0.009333333,750,,No,1,Persuade,Annotator3,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0445_U2,WS0445,English,A teacher,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.5737122,0.722891566,13,0.075144509,4.332632965,2.804068764,3.261455453,2.973364026,3.116360036,0.096099744,0.067946448,0.164046192,0.014016872,-0.024123945,0.038140818,1,0.473278904,0.546009911,-0.738201082,2.817447782,16.21901064,6.281547972,0,0,2,0,0,0,0,1,6,3,0,0,5,0,0,0,1,11,0,2,0,3,0,3,0,0,1,0,5,177.6514277,0,0,21,1,2,1,10,66,2,4,0,4.030628748,3.295836866,4.230137631,4.8875,4,946,942,0.540447504,102,22,21,1.115550364,0,0,43,22,0.012621916,13,0.007458405,8,0.004589788,0.024670109,20,0.011474469,5,0.002868617,18,0.010327022,52,0.02983362,1,0.000573723,105,0.060240964,37,0.021227768,0.328169822,0,0,1,0.000573723,1743,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0445_U3,WS0445,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,0,0,1,0.04,3.713572067,3.004089943,3.252461754,1.766590416,3.562879707,0.090278446,0.053455529,0.143733974,0.0125,-0.008774038,0.021274038,0.27317,0.099960982,0.551974359,-0.068741191,2.955971449,2.025558863,1.388495226,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,12.62542219,0,0,0,0,0,0,0,4,0,3,3,4.644390899,0.693147181,3.489925876,4.596153846,50,155,105,0.460526316,7,0,4,1.268200132,0,0,8,6,0.026315789,0,0,2,0.00877193,0.035087719,6,0.026315789,3,0.013157895,3,0.013157895,13,0.057017544,1,0.004385965,17,0.074561404,7,0.030701754,0.557017544,0,0,0,0,228,,Unsure,2,Inform/Explore,Annotator3,Draft,N/A,N/A
WS0446_U1,WS0446,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.781487338,0.831775701,45,0.183673469,5.218589235,2.79888998,2.580691129,3.016746487,2.718463301,0.106845339,0.095387341,0.20221785,0.015991102,-0.036826495,0.052817598,0.85829,0.644514215,0.688046587,-0.205167383,2.798315951,15.2985096,6.903253638,0,0,1,0,2,0,0,0,8,2,0,0,1,0,1,0,0,36,0,8,0,6,0,1,0,0,0,0,6,214.6301232,0,0,16,1,3,0,6,96,0,3,2,4.890850256,2.708050201,4.636826672,5.330661323,4,2029,2025,0.871342513,108,15,27,1.100987087,5,0.002151463,87,66,0.028399312,6,0.002581756,15,0.006454389,0.037435456,39,0.016781411,18,0.007745267,50,0.02151463,52,0.022375215,1,0.000430293,120,0.051635112,48,0.020654045,0.311101549,3,0.001290878,7,0.003012048,2324,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0446_U2,WS0446,English,Someone else,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.594122356,0.733333333,28,0.264150943,5.580299262,3.178261381,0.850343088,3.284799276,0.666663928,0.078212127,0.02808203,0.106294157,0.01411902,-0.005280047,0.019399067,0.96138,0.45970761,0.611547743,-0.706509513,2.707703858,4.345634598,1.497200583,0,1,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,10,0,0,0,1,0,1,0,0,0,0,2,156.9245953,0,0,0,0,0,0,4,33,7,0,1,4.531404036,2.197224577,4.117848217,5.007177033,37,921,884,0.940425532,47,0,9,1.024258531,0,0,28,11,0.011702128,14,0.014893617,3,0.003191489,0.029787234,16,0.017021277,4,0.004255319,19,0.020212766,46,0.04893617,0,0,50,0.053191489,15,0.015957447,0.296808511,0,0,0,0,940,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0446_U3,WS0446,English,Someone else,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.822262763,0.918604651,15,0.090361446,4.514823571,3.292160563,0.969881195,3.223430676,0.673836252,0.059213234,0.064035438,0.123241188,0.007428892,-0.025916916,0.033345808,0.97432,0.431868912,0.601351326,-0.979706909,2.750710196,7.423075353,4.831233814,0,2,0,0,1,0,1,0,7,2,0,0,0,0,0,0,0,26,0,0,0,0,0,1,0,0,1,0,0,142.984625,0,0,0,0,5,1,2,82,0,1,0,5.091446937,2.079441542,4.094773807,4.915449654,32,1420,1388,0.935940661,85,0,23,1.217723482,0,0,34,26,0.01753203,5,0.003371544,3,0.002022927,0.0229265,25,0.016857721,12,0.008091706,41,0.027646662,79,0.053270398,0,0,89,0.060013486,42,0.028320971,0.320971005,0,0,4,0.002697235,1483,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0448_U1,WS0448,English,A teacher,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.381968442,0.607142857,28,0.314606742,5.75449695,3.223335015,2.91856329,3.422217554,2.149853727,0.109035202,0.035680841,0.144716043,0.030304276,-0.015625,0.045929276,0.78313,0.358929989,0.61038089,-1.068873118,2.555965844,1.483980684,3.895849648,0,0,0,0,1,0,0,1,1,1,0,0,0,0,0,0,0,30,0,0,0,0,0,2,0,0,0,0,0,55.85141946,0,0,0,0,1,2,3,18,5,0,0,4.201370357,2.197224577,4.071255812,4.778702163,19,639,620,0.930930931,30,4,11,1.243447743,0,0,16,10,0.015015015,5,0.007507508,1,0.001501502,0.024024024,14,0.021021021,1,0.001501502,38,0.057057057,70,0.105105105,0,0,32,0.048048048,23,0.034534535,0.426426426,0,0,2,0.003003003,666,,Unsure,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0448_U2,WS0448,English,A teacher,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.472506863,0.583333333,1,0.038461538,3.675326488,2.761809689,0.878266,2.260269952,0.85004553,0.058532997,0.025608333,0.084141331,0.0121,-0.0052,0.0173,1,0.474757949,0.584185185,0.295936795,2.641124481,9.397012539,1.068585104,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,4,0,3,0,0,0,0,0,0,0,0,0,30.41128509,0,0,10,0,0,0,4,17,0,3,0,3.198673118,2.302585093,4.046571695,5.746938776,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0.006493506,0,0,0,0,1,0.003246753,29,0.094155844,0,0,0.477272727,1,0.003246753,0,0,308,,Yes,2,Inform/Explore,Annotator3,Draft,N/A,N/A
WS0448_U3,WS0448,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.529418838,0.64516129,6,0.069767442,4.259399034,3.369612971,3.429241626,3.316665995,3.120343622,0.128231461,0.034983648,0.163215109,0.043486172,-0.006331878,0.049818049,0.99812,0.124176813,0.655671438,-0.503767686,2.93134643,2.622214742,1.765268522,0,4,0,0,0,0,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,1,0,90.01601788,0,0,0,0,0,3,4,22,0,2,0,4.047427642,2.48490665,3.562060974,4.420669578,1,736,735,0.98,35,5,7,1.014240439,0,0,54,33,0.044,2,0.002666667,19,0.025333333,0.072,24,0.032,10,0.013333333,23,0.030666667,54,0.072,0,0,36,0.048,36,0.048,0.352,1,0.001333333,7,0.009333333,750,,No,1,Persuade,Annotator3,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0452_U1,WS0452,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.289372518,0.580645161,16,0.195121951,5.278736666,3.190910327,1.480791601,3.120479383,1.296351405,0.062971653,0.130030818,0.193002471,0.008993902,-0.073894817,0.08288872,0.93282,0.562565353,0.594778634,0.27842115,2.808106874,3.335684655,0.724816593,0,0,0,0,0,0,0,0,2,1,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,61.66515874,0,0,0,1,1,1,4,21,0,5,0,3.990526067,2.48490665,3.782341549,5.026194145,3,706,703,0.984593838,35,5,10,1.17625343,0,0,29,14,0.019607843,1,0.00140056,14,0.019607843,0.040616246,7,0.009803922,5,0.007002801,8,0.011204482,23,0.032212885,0,0,36,0.050420168,18,0.025210084,0.421568627,0,0,1,0.00140056,714,,Yes,2,Inform/Explore,Annotator3,Draft,N/A,N/A
WS0452_U2,WS0452,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.810418046,0.88372093,15,0.098684211,4.602007295,3.164439154,2.223494124,2.919458038,1.790709352,0.111008034,0.067180874,0.178188908,0.019118774,-0.021934866,0.04105364,1,0.52296242,0.614831976,0.386042208,2.810326488,15.89259992,2.196886512,0,1,1,0,1,0,1,0,11,4,0,0,0,0,0,0,0,7,0,1,0,1,0,4,0,0,0,0,3,176.7082302,0,0,19,0,3,2,4,79,0,1,0,4.59744814,2.564949357,4.430476062,5.158914729,2,947,945,0.642857143,56,14,30,1.330579408,0,0,13,12,0.008163265,0,0,1,0.000680272,0.008843537,6,0.004081633,10,0.006802721,14,0.00952381,21,0.014285714,1,0.000680272,100,0.068027211,10,0.006802721,0.321088435,0,0,1,0.000680272,1470,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0454_U1,WS0454,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.697345133,0.829545455,19,0.098958333,4.604753432,2.883742731,2.292409486,2.953814684,1.821477763,0.101155029,0.064188913,0.165343942,0.014583333,-0.017345328,0.031928662,0.96602,0.550841361,0.622550203,-1.153590435,2.931669782,12.10027588,3.721641449,0,3,0,0,1,0,1,1,7,1,0,0,0,0,0,0,0,9,0,3,1,2,0,6,0,0,0,0,5,187.7402666,0,0,17,2,0,0,5,76,0,7,0,4.791330519,2.564949357,4.217464476,5.022349936,7,892,885,0.505136986,66,16,21,1.113485477,0,0,51,35,0.019977169,6,0.003424658,10,0.005707763,0.029109589,25,0.014269406,6,0.003424658,14,0.007990868,70,0.039954338,1,0.000570776,104,0.059360731,26,0.014840183,0.319634703,5,0.002853881,0,0,1752,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0454_U2,WS0454,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.509065182,0.769230769,6,0.111111111,4.719490443,2.866964213,0.543176172,3.239723521,0.664372556,0.082530614,0.093177943,0.175494577,0.015121255,-0.04732525,0.062446505,0.71768,0.639551826,0.666877329,0.890533517,2.669288736,9.604149972,1.002606148,0,0,0,0,0,0,1,0,6,0,0,0,0,0,0,0,0,10,0,1,0,4,0,3,0,0,0,0,1,81.04453766,0,0,6,1,1,0,4,32,0,3,0,4.235554731,2.302585093,3.878409409,5.244573082,1,637,636,0.842384106,42,16,11,1.192275682,0,0,14,10,0.013245033,1,0.001324503,3,0.00397351,0.018543046,5,0.006622517,2,0.002649007,20,0.026490066,13,0.017218543,9,0.01192053,55,0.072847682,15,0.01986755,0.434437086,0,0,0,0,755,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0454_U3,WS0454,English,Someone else,A lot,0,0,I completed the assignment on a laptop or desktop computer.,0,0,3,0.1875,5.239098007,1.761014407,1.081866916,2.090989414,0.828080385,0.102695641,0.017892157,0.120514268,0.010110294,0,0.010110294,0.13649,0.291858453,0.57,-0.631426136,2.964222263,1.026485201,1.19151353,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.767572917,0,0,0,0,1,4,0,2,0,1,0,3.526360525,1.386294361,2.508030767,4.816176471,9,124,115,0.782312925,5,0,4,1.450416701,0,0,4,4,0.027210884,0,0,0,0,0.027210884,2,0.013605442,0,0,3,0.020408163,3,0.020408163,0,0,8,0.054421769,5,0.034013605,0.544217687,0,0,1,0.006802721,147,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0455_U1,WS0455,English,No one helped me,A lot,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.570336554,0.692307692,7,0.078651685,4.377663196,3.181106741,3.323995795,3.473017814,2.798903741,0.084485968,0.105626438,0.190112406,0.010695876,-0.056357388,0.067053265,0.95191,0.259545488,0.607539524,-0.637196128,3.009331842,5.742280306,2.799844467,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,1,60.70018563,0,0,0,0,0,0,3,32,0,0,4,4.566082797,1.791759469,3.953963836,4.714038128,16,286,270,0.395894428,38,0,9,1.152180704,0,0,35,25,0.036656891,5,0.007331378,5,0.007331378,0.051319648,12,0.017595308,15,0.021994135,10,0.014662757,29,0.042521994,0,0,45,0.065982405,18,0.026392962,0.397360704,1,0.001466276,7,0.01026393,682,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0455_U2,WS0455,English,A teacher,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.674329454,0.763157895,9,0.103448276,4.648691981,3.250952087,2.65609792,3.378163516,2.435106341,0.119753508,0.022438447,0.142191955,0.031676136,-0.00546875,0.037144886,1,0.377115593,0.596337468,-0.685027318,2.554608585,7.457429588,3.870378484,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,42,0,0,0,1,0,1,0,0,0,0,1,87.50870498,0,0,0,0,1,1,5,31,0,1,0,3.977522603,2.564949357,3.941520246,5.070605187,16,624,608,0.775510204,27,0,13,1.245059202,0,0,13,10,0.012755102,1,0.00127551,2,0.00255102,0.016581633,7,0.008928571,5,0.006377551,51,0.06505102,54,0.068877551,1,0.00127551,48,0.06122449,15,0.019132653,0.428571429,1,0.00127551,1,0.00127551,784,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0457_U1,WS0457,English,A tutor,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.703738015,0.732824427,20,0.086956522,4.476842621,2.981976052,1.294196366,3.134400907,1.122240232,0.101412281,0.067388048,0.168800329,0.02,-0.018620219,0.038620219,1,0.527772467,0.558504541,-0.834069328,2.857083803,24.45218441,8.901766738,0,0,0,0,0,0,1,0,7,0,0,0,1,0,0,0,0,6,0,4,0,28,0,6,0,0,0,0,1,190.7725902,0,0,32,0,0,0,5,105,18,3,0,4.368897343,3.135494216,4.171533465,4.969713656,8,1054,1046,0.517309594,158,0,24,1.109559521,4,0.001978239,47,34,0.016815035,4,0.001978239,9,0.004451039,0.023244313,35,0.017309594,3,0.00148368,15,0.007418398,66,0.03264095,8,0.003956479,173,0.085558853,46,0.022749753,0.263105836,4,0.001978239,2,0.00098912,2022,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0457_U2,WS0457,English,"A parent, brother, sister or other relative",Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.689971703,0.777777778,13,0.134020619,4.905427497,3.343567527,2.327941045,3.534413385,2.138078686,0.119851391,0.050056692,0.169908083,0.024748201,-0.005791367,0.030539568,0.78488,0.241675252,0.62006404,-0.297499545,2.80386133,5.770352392,1.704858153,0,2,1,1,0,0,1,0,2,0,0,0,0,0,0,0,0,1,0,0,0,1,0,6,0,0,1,0,1,84.80886476,0,0,5,0,0,0,4,39,0,1,1,4.238444906,2.302585093,3.624690435,4.483405483,50,722,672,0.852791878,41,7,7,0.994899725,0,0,34,17,0.021573604,7,0.008883249,10,0.012690355,0.043147208,19,0.024111675,3,0.003807107,14,0.017766497,46,0.058375635,1,0.001269036,52,0.065989848,31,0.039340102,0.383248731,2,0.002538071,1,0.001269036,788,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0458_U1,WS0458,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.613585226,0.675675676,7,0.102941176,4.643825128,2.981534895,2.006123735,3.387239502,1.80503992,0.110871879,0.085940807,0.196795325,0.029904514,-0.043315972,0.073220486,0.93884,0.450796121,0.603902701,-0.737729212,2.877916254,4.887642334,1.303947181,0,0,1,1,0,0,0,0,2,2,0,0,1,0,0,0,0,1,0,0,0,0,1,3,0,0,0,0,1,38.70602095,0,0,0,0,1,1,4,28,0,4,0,3.864232342,2.48490665,4.295101809,4.751748252,41,612,571,0.890795632,36,0,12,1.294923402,0,0,32,16,0.024960998,3,0.004680187,13,0.020280811,0.049921997,14,0.021840874,1,0.001560062,14,0.021840874,31,0.048361934,0,0,42,0.065522621,16,0.024960998,0.48673947,5,0.007800312,4,0.00624025,641,,Unsure,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0459_U1,WS0459,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.476940965,0.607142857,13,0.209677419,5.350328145,3.157970827,2.590352991,3.075505396,2.26620112,0.102626592,0.1391784,0.241804992,0.048262712,-0.070550847,0.118813559,1,0.429115298,0.644308308,0.390505079,2.907971827,11.80724789,3.40258516,0,2,0,0,0,0,0,0,4,1,0,0,1,0,0,0,1,2,0,3,0,2,0,0,0,0,0,0,4,61.97736434,0,0,13,0,1,1,4,44,0,2,5,4.080921542,2.302585093,3.820197223,5.0625,79,452,373,0.50473613,30,0,11,1.200986664,0,0,38,20,0.027063599,4,0.00541272,14,0.01894452,0.051420839,6,0.00811908,4,0.00541272,13,0.01759134,15,0.0202977,1,0.00135318,78,0.105548038,5,0.0067659,0.405953992,0,0,1,0.00135318,739,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0459_U3,WS0459,English,A teacher,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.472606541,0.666666667,1,0.009615385,2.362304328,3.217248099,1.779788804,3.279984125,1.654736398,0.117223119,0.067187895,0.184411015,0.017986185,-0.017853348,0.035839532,0.90617,0.353672607,0.632467346,-0.293076016,2.663808261,12.15872698,2.947900568,0,2,2,0,3,0,3,1,5,2,0,1,1,0,0,0,0,9,0,2,0,6,0,2,1,0,0,0,2,90.92639947,0,0,13,0,0,0,8,45,0,4,0,3.792810377,3.044522438,4.198706686,4.986051502,24,757,733,0.692162417,41,0,26,1.407415783,4,0.003777148,46,35,0.033050047,7,0.006610009,4,0.003777148,0.043437205,14,0.013220019,2,0.001888574,28,0.026440038,46,0.043437205,1,0.000944287,74,0.069877243,25,0.023607177,0.364494806,0,0,0,0,1059,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0460_U1,WS0460,English,Someone else,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.541848665,0.692307692,5,0.086206897,4.468283417,3.311243091,2.000848784,3.0377379,1.749706004,0.064227799,0.11425562,0.178483419,0.007897287,-0.063129845,0.071027132,0.93671,0.445448653,0.620569328,-0.501497194,3.000655439,9.517928743,2.011412151,0,2,0,0,1,0,0,0,1,2,0,0,0,0,0,0,0,0,0,3,0,1,0,0,0,0,0,0,4,49.41929858,0,0,8,0,1,0,5,30,0,4,0,3.669461368,2.564949357,3.93753246,4.984313725,4,173,169,0.285472973,31,9,7,1.108034493,0,0,19,7,0.011824324,2,0.003378378,10,0.016891892,0.032094595,11,0.018581081,2,0.003378378,6,0.010135135,18,0.030405405,1,0.001689189,47,0.079391892,15,0.025337838,0.469594595,0,0,2,0.003378378,592,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0461_U1,WS0461,English,,,#NULL!,#NULL!,,6.539545814,0.678571429,6,0.096774194,4.582660673,3.150878781,1.058849872,2.88805611,0.911860593,0.128983684,0.050469577,0.17945326,0.018799603,-0.009325397,0.028125,0.77362,0.330753471,0.658701754,0.164651577,2.493565853,2.582149026,1.556859597,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,0,31,0,0,0,0,0,3,0,0,0,0,0,74.24933511,0,0,0,0,0,0,4,21,0,3,0,3.899950424,2.302585093,3.797929167,5.172064777,3,336,333,0.595706619,30,5,4,0.911457784,0,0,24,12,0.021466905,3,0.005366726,9,0.016100179,0.04293381,13,0.023255814,5,0.008944544,6,0.010733453,44,0.078711986,0,0,33,0.059033989,22,0.039355993,0.39177102,0,0,0,0,559,,No,1,Persuade,Annotator3,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0462_U1,WS0462,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.619100858,0.675,5,0.111111111,4.719490443,3.249338062,0.97929201,3.375362462,0.989915473,0.124313873,0.045893151,0.170207024,0.02607084,-0.010131796,0.036202636,0.87221,0.333500801,0.602606254,-0.1051155,2.968191779,9.171774801,1.385194077,0,0,2,0,1,0,0,1,1,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,1,0,4,65.09846598,0,0,8,0,0,4,5,30,0,1,0,3.629328474,2.772588722,4.700224115,4.995024876,1,526,525,0.726141079,32,9,12,1.24545123,0,0,43,21,0.029045643,3,0.004149378,19,0.026279391,0.059474412,16,0.022130014,2,0.002766252,23,0.031811895,10,0.013831259,1,0.001383126,51,0.070539419,27,0.037344398,0.405255878,0,0,1,0.001383126,723,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0462_U2,WS0462,English,,,#NULL!,#NULL!,,4.914015615,0.134615385,4,0.030534351,3.451077464,2.967696979,1.084979919,3.19795537,1.072577673,0.101723774,0.043520786,0.145237281,0.015866084,-0.010480349,0.026346434,1,0.439791147,0.559793762,-0.62075633,2.904486269,49.69961998,6.134048462,0,0,0,0,7,0,0,1,6,0,0,0,1,1,1,0,0,20,0,67,1,82,0,1,0,0,0,0,9,182.352161,0,0,67,0,1,0,26,64,60,0,6,2.59421974,4.615120517,4.158488766,5.236686391,20,1403,1383,0.853703704,209,0,30,1.290446851,3,0.001851852,58,38,0.02345679,8,0.004938272,12,0.007407407,0.035802469,27,0.016666667,6,0.003703704,190,0.117283951,39,0.024074074,7,0.004320988,253,0.15617284,41,0.025308642,0.311111111,8,0.004938272,7,0.004320988,1620,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0463_U1,WS0463,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.703738015,0.732824427,20,0.086956522,4.476842621,2.981976052,1.294196366,3.134400907,1.122240232,0.101412281,0.067388048,0.168800329,0.02,-0.018620219,0.038620219,1,0.527772467,0.558504541,-0.834069328,2.857083803,24.45218441,8.901766738,0,0,0,0,0,0,1,0,7,0,0,0,1,0,0,0,0,6,0,4,0,28,0,6,0,0,0,0,1,190.7725902,0,0,32,0,0,0,5,105,18,3,0,4.368897343,3.135494216,4.171533465,4.969713656,8,1054,1046,0.517309594,158,0,24,1.109559521,4,0.001978239,47,34,0.016815035,4,0.001978239,9,0.004451039,0.023244313,35,0.017309594,3,0.00148368,15,0.007418398,66,0.03264095,8,0.003956479,173,0.085558853,46,0.022749753,0.263105836,4,0.001978239,2,0.00098912,2022,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0463_U2,WS0463,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.391624653,0.5625,9,0.1875,5.239098007,2.843243162,3.426007411,3.26086674,3.382183254,0.108874645,0.030874636,0.139749281,0.021428571,-0.006938776,0.028367347,0.82467,0.02860502,0.685337474,-0.283638542,3.127015422,2.378043925,2.215929593,0,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,4,1,0,0,0,0,42.63777073,0,0,5,0,0,1,3,18,6,4,0,3.982792076,2.197224577,3.117092401,4.109730849,1,410,409,0.776091082,35,4,22,1.630892744,0,0,25,19,0.036053131,2,0.003795066,4,0.007590133,0.04743833,10,0.018975332,1,0.001897533,11,0.020872865,57,0.108159393,0,0,36,0.068311195,14,0.026565465,0.387096774,4,0.007590133,0,0,527,,No,3,Reflect,Annotator3,Final,N/A,N/A
WS0464_U1,WS0464,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.654655776,0.75,10,0.120481928,4.799765509,2.943651294,0.89541793,3.179565996,0.923046542,0.084630176,0.12135179,0.205981966,0.014442568,-0.060388514,0.074831081,1,0.574363875,0.622798106,0.109407155,2.90898146,9.066230108,1.643622321,0,2,0,0,1,0,1,1,2,1,0,0,2,0,0,0,0,0,0,0,0,2,0,4,0,0,1,0,1,119.7391027,0,0,5,0,3,1,5,46,0,4,0,4.138589264,2.63905733,4.385710822,5.182232346,99,846,747,0.730205279,56,0,24,1.388463742,3,0.002932551,43,15,0.014662757,9,0.008797654,19,0.018572825,0.042033236,21,0.020527859,0,0,14,0.013685239,24,0.023460411,1,0.000977517,66,0.064516129,45,0.04398827,0.356793744,1,0.000977517,2,0.001955034,1023,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0464_U3,WS0464,English,Someone else,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.692705116,0.804347826,14,0.09929078,4.608073768,3.294741044,1.066097432,3.116534863,1.074158259,0.11187291,0.053659995,0.165518035,0.016933086,-0.014814126,0.031747212,1,0.479392057,0.534290606,0.840120006,2.766002968,24.45798834,2.797393785,0,4,0,0,0,0,0,2,6,3,0,0,3,0,0,0,1,6,4,6,0,11,0,6,0,0,0,0,0,188.7669787,0,6,29,0,7,0,6,81,0,3,2,4.484131858,2.708050201,4.348164905,5.230248307,30,1216,1186,0.776686313,84,0,19,1.128486445,5,0.003274394,49,38,0.024885396,8,0.005239031,3,0.001964637,0.032089064,26,0.01702685,3,0.001964637,36,0.023575639,55,0.036018337,1,0.000654879,108,0.070726916,35,0.02292076,0.356908972,2,0.001309758,3,0.001964637,1527,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0465_U1,WS0465,English,No one helped me,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.56708962,0.710526316,7,0.083333333,4.4347772,3.393326214,1.286932786,3.074706958,1.273772971,0.109864818,0.106692106,0.216556924,0.032105809,-0.041493776,0.073599585,0.94538,0.342645362,0.597921053,-0.287864721,3.05245084,4.8914438,2.276493554,0,1,1,0,0,0,0,0,1,1,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,2,42.38350739,0,0,0,0,0,3,4,30,0,1,0,3.678408154,2.48490665,3.577172531,4.978947368,6,539,533,0.930191972,37,0,10,1.26604361,0,0,35,20,0.034904014,5,0.008726003,10,0.017452007,0.061082024,10,0.017452007,16,0.027923211,10,0.017452007,24,0.041884817,0,0,43,0.07504363,11,0.019197208,0.420593368,0,0,4,0.006980803,573,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0465_U2,WS0465,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.658413087,0.764705882,12,0.114285714,4.747413519,3.380615127,1.116191473,3.44546419,0.91397824,0.083399691,0.053255492,0.136655184,0.014242627,-0.015717158,0.029959786,0.90361,0.272739478,0.6265672,-1.018699163,2.929788613,4.097103918,2.249532697,0,0,0,0,0,0,1,0,2,2,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,1,0,1,83.0391903,0,0,0,0,1,1,4,42,0,4,0,4.123093976,2.48490665,3.642770681,4.379217274,35,589,554,0.66746988,39,0,17,1.332073251,0,0,25,18,0.021686747,4,0.004819277,3,0.003614458,0.030120482,18,0.021686747,5,0.006024096,12,0.014457831,73,0.087951807,0,0,56,0.06746988,28,0.03373494,0.392771084,0,0,1,0.001204819,830,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0466_U1,WS0466,English,,,#NULL!,#NULL!,,6.279398211,0.552631579,5,0.089285714,4.502979245,2.842250057,2.945561518,3.468301731,2.768847566,0.097447467,0.045508658,0.142956125,0.025284091,-0.007224026,0.032508117,0.7888,0.282047828,0.630835891,-0.75572937,2.997448125,3.474875968,1.388981806,0,2,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,1,49.81507262,0,0,0,0,0,2,4,27,0,4,1,3.851782925,2.564949357,4.613762598,4.535947712,36,614,578,0.834054834,35,0,10,1.188366332,0,0,49,20,0.028860029,3,0.004329004,26,0.037518038,0.070707071,12,0.017316017,2,0.002886003,9,0.012987013,38,0.054834055,0,0,43,0.062049062,13,0.018759019,0.375180375,1,0.001443001,2,0.002886003,693,,No,1,Persuade,Annotator3,Final,N/A,N/A
WS0467_U1,WS0467,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.646022366,0.819672131,8,0.109589041,4.705820998,3.193153796,1.13920238,3.420162208,1.068575726,0.11635516,0.111871795,0.228226955,0.035615385,-0.055653846,0.091269231,0.98604,0.397169769,0.542290022,-0.13522837,3.041825462,13.51319557,2.0659614,0,0,1,0,1,0,0,0,0,0,0,0,1,0,0,0,0,4,0,2,0,2,0,2,0,0,0,0,1,60.27968881,0,0,13,0,0,1,4,53,0,1,2,4.160444364,2.302585093,3.758823175,4.75975039,1,451,450,0.601604278,56,11,9,1.115013923,0,0,37,23,0.030748663,3,0.004010695,11,0.014705882,0.049465241,8,0.010695187,2,0.002673797,10,0.013368984,24,0.032085561,1,0.001336898,73,0.097593583,21,0.028074866,0.375668449,2,0.002673797,2,0.002673797,748,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0467_U3,WS0467,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.703807408,0.806451613,15,0.105633803,4.669400561,3.046145366,0.819289219,2.789717916,0.868794704,0.132181677,0.065306427,0.197488104,0.017354865,-0.020645953,0.038000818,0.8862,0.617554617,0.604538987,-0.475722431,2.839461268,11.13980744,4.803473274,0,0,0,0,3,0,1,0,7,0,0,0,1,0,0,0,0,9,1,0,0,1,0,0,0,0,0,0,4,172.2400337,0,0,9,0,0,0,5,53,0,4,0,4.535077809,2.564949357,4.761337267,5.423267327,17,1244,1227,0.854456825,51,0,39,1.449613748,4,0.002785515,42,29,0.020194986,10,0.006963788,3,0.002089136,0.029247911,29,0.020194986,5,0.003481894,18,0.012534819,49,0.034122563,1,0.000696379,78,0.054317549,30,0.020891365,0.36908078,0,0,3,0.002089136,1436,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0468_U1,WS0468,English,,,#NULL!,#NULL!,,6.639887103,0.811881188,32,0.143497758,4.973263991,3.069872925,2.187741225,3.115791813,1.748604654,0.095573968,0.055870881,0.151444849,0.015319549,-0.020316416,0.035635965,1,0.508286693,0.626864708,-0.634981178,2.785196439,17.79622594,5.551138597,1,0,2,0,2,0,0,1,11,2,0,0,0,0,0,1,1,32,0,9,1,8,0,3,0,0,0,0,4,198.8536338,0,0,21,0,5,0,9,87,1,4,0,4.23284547,3.135494216,4.346666122,5.049842271,113,1823,1710,0.921336207,93,0,18,1.029313792,0,0,69,42,0.02262931,11,0.005926724,16,0.00862069,0.037176724,33,0.017780172,22,0.011853448,86,0.046336207,96,0.051724138,1,0.000538793,106,0.057112069,36,0.019396552,0.314655172,3,0.001616379,4,0.002155172,1856,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0468_U2,WS0468,English,,,#NULL!,#NULL!,,6.451683527,0.555555556,1,0.0625,4.151039906,2.456957815,1.136322917,2.713080309,1.044414346,0.161147832,0.031358025,0.192505857,0.025308642,0,0.025308642,0.44682,0.147356764,0.583277453,0.039682023,2.893919002,1.108110064,0.2680788,0,0,0,0,0,0,1,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,12.94960444,0,0,0,0,0,0,1,7,0,1,0,3.701301974,1.386294361,2.983851391,4.759259259,77,99,22,0.124293785,3,0,6,1.542804335,0,0,6,4,0.02259887,2,0.011299435,0,0,0.033898305,3,0.016949153,0,0,5,0.028248588,7,0.039548023,0,0,10,0.056497175,4,0.02259887,0.615819209,2,0.011299435,0,0,177,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0469_U1,WS0469,English,A teacher,A lot,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.710434036,0.774193548,9,0.071428571,4.282600855,3.353219157,2.886969281,3.340635682,2.861705029,0.14180229,0.077710075,0.219512365,0.022165992,-0.022241903,0.044407895,0.86541,0.427842599,0.576452933,-0.60012336,2.966108972,10.67177034,3.289749826,0,4,1,0,0,0,0,0,5,1,1,0,2,0,0,0,1,8,0,1,0,1,0,11,0,0,1,0,1,96.65569148,0,0,15,0,0,1,5,52,0,3,1,4.327692284,2.564949357,4.349239286,4.723857868,48,988,940,0.858447489,52,0,7,0.868802734,0,0,48,29,0.026484018,8,0.007305936,11,0.010045662,0.043835616,26,0.023744292,1,0.000913242,32,0.029223744,54,0.049315068,1,0.000913242,75,0.068493151,45,0.04109589,0.410958904,1,0.000913242,4,0.003652968,1095,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0469_U2,WS0469,English,A teacher,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",5.001601322,0.153846154,1,0.029411765,3.41482953,3.042815165,0.84631027,2.831274898,0.641946704,0.105600594,0.02868666,0.134287254,0.017244526,-0.004835766,0.022080292,0.78346,0.149441958,0.570307012,-0.143846678,2.901702107,1.100336264,0.383471371,0,1,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,5,0,0,0,0,0,3,0,0,0,0,0,29.00515074,0,0,0,0,0,0,3,5,2,3,0,3.415903529,2.197224577,3.315260883,4.718978102,28,67,39,0.130872483,10,4,3,1.044034387,0,0,6,3,0.010067114,1,0.003355705,2,0.006711409,0.020134228,5,0.016778523,1,0.003355705,11,0.036912752,20,0.067114094,0,0,17,0.05704698,13,0.043624161,0.560402685,1,0.003355705,1,0.003355705,298,,Unsure,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0469_U3,WS0469,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.605487913,0.678571429,5,0.094339623,4.557445492,3.006496357,1.072226268,3.218678903,1.086612825,0.105923519,0.047026381,0.1529499,0.032293869,-0.008773784,0.041067653,0.84239,0.240143763,0.65886476,-0.521489239,2.830932847,3.922358579,1.590390742,0,3,0,0,0,0,1,0,3,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,1,50.03626613,0,0,6,0,0,0,5,19,3,1,0,3.672072336,2.48490665,3.74784238,4.644067797,5,481,476,0.903225806,28,7,10,1.300494008,0,0,30,22,0.041745731,4,0.007590133,4,0.007590133,0.056925996,11,0.020872865,0,0,10,0.018975332,23,0.043643264,1,0.001897533,35,0.066413662,18,0.034155598,0.421252372,1,0.001897533,2,0.003795066,527,,Yes,1,Persuade,Annotator3,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0470_U1,WS0470,English,,,#NULL!,#NULL!,,6.557226951,0.696969697,10,0.166666667,5.121977881,3.014331106,1.009836199,3.306093298,0.847729337,0.090943949,0.050239966,0.141183915,0.0296875,-0.010644531,0.040332031,0.91739,0.194979336,0.618438212,-0.029754964,2.871660839,3.026130195,1.544146714,0,2,0,0,1,0,3,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,1,67.48171288,0,0,0,0,0,1,4,25,0,3,0,3.836515453,2.397895273,3.982585596,4.574509804,95,547,452,0.788830716,29,0,8,1.174978202,0,0,31,15,0.02617801,3,0.005235602,13,0.022687609,0.054101222,7,0.012216405,4,0.006980803,12,0.020942408,34,0.059336824,0,0,39,0.068062827,17,0.029668412,0.410122164,0,0,2,0.003490401,573,,No,1,Persuade,Annotator3,Final,N/A,N/A
WS0471_U1,WS0471,English,A teacher,A little,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.568719363,0.694444444,10,0.102040816,4.635125185,3.232598797,3.469165861,3.405507163,3.604040519,0.16740802,0.016291941,0.183699961,0.032732372,-0.002924679,0.035657051,0.99242,0.380570975,0.653762533,-0.361542561,2.88679736,2.848531822,1.90821004,0,0,2,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,2,74.13921777,0,0,0,0,2,3,4,27,0,2,0,3.949639869,2.48490665,3.693263789,4.855537721,100,671,571,0.807637907,34,0,6,0.977108893,0,0,7,2,0.002828854,2,0.002828854,3,0.004243281,0.00990099,19,0.026874116,0,0,10,0.014144272,49,0.069306931,0,0,42,0.059405941,26,0.036775106,0.38330976,0,0,0,0,707,,No,3,Reflect,Annotator3,Final,N/A,N/A
WS0471_U2,WS0471,English,A tutor,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.770402262,0.896226415,19,0.137681159,4.932177481,2.81595684,1.003057232,2.803799901,0.945420365,0.116222953,0.066767511,0.182975638,0.017031134,-0.017846553,0.034877687,1,0.682906282,0.654007196,-0.100846234,2.847863917,24.93689176,3.519503411,0,0,0,0,2,0,3,0,6,1,1,0,2,0,0,0,0,22,0,0,0,1,0,2,1,0,0,0,5,163.7969201,0,0,6,0,2,0,5,98,0,3,0,4.631737213,2.564949357,4.469915692,5.477902622,5,1251,1246,0.785624212,80,18,38,1.397238437,7,0.004413619,80,62,0.039092055,9,0.005674653,9,0.005674653,0.050441362,32,0.020176545,6,0.003783102,24,0.015132409,43,0.027112232,1,0.000630517,124,0.078184111,40,0.025220681,0.37074401,1,0.000630517,4,0.002522068,1586,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0471_U3,WS0471,English,A tutor,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.435619105,0.578947368,11,0.15942029,5.077797183,2.954942346,1.27430315,2.96899611,1.530321505,0.081401715,0.133082707,0.214484422,0.024671053,-0.078042763,0.102713816,0.99999,0.497788801,0.723492561,0.288105289,3.01260558,3.394060668,1.860664152,0,0,1,4,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,51.63650254,0,0,6,0,0,3,3,23,8,1,0,4.091005661,2.302585093,3.621666805,4.988294314,7,373,366,0.525107604,25,4,15,1.35258388,0,0,22,11,0.015781923,3,0.004304161,8,0.011477762,0.031563845,10,0.014347202,0,0,12,0.017216643,15,0.021520803,0,0,42,0.06025825,36,0.051649928,0.381635581,0,0,2,0.00286944,697,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0473_U1,WS0473,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.53940564,0.628571429,14,0.29787234,5.700016527,2.439641602,1.006427246,2.901533322,1.018106369,0.10239005,0.074847478,0.17687812,0.01384778,-0.066331924,0.080179704,0.71242,0.440966734,0.56874837,-0.28699349,2.773724577,7.289136956,1.171286247,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,4,0,0,0,0,3,44.27583036,0,0,0,0,2,0,6,26,0,3,0,3.448928784,2.708050201,4.149962774,5.190677966,1,479,478,0.883548983,38,9,10,1.289684548,0,0,12,9,0.01663586,1,0.001848429,2,0.003696858,0.022181146,7,0.012939002,2,0.003696858,19,0.035120148,15,0.027726433,0,0,48,0.088724584,10,0.018484288,0.512014787,0,0,0,0,541,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0473_U2,WS0473,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,#NULL!,#NULL!,2,0.181818182,5.208492117,1.777250922,1.623135215,2.258188839,1.273772971,0.213777125,0.082218204,0.295995329,0.073417722,-0.028797468,0.10221519,0,0,0.404432911,0.314825263,2.909320393,1.806012025,0.124905813,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.649072515,0,0,0,0,0,3,0,2,0,2,0,2.76000994,1.609437912,2.472643149,4.189873418,0,0,0,0,0,0,0,0,0,0,5,4,0.04494382,1,0.011235955,0,0,0.056179775,1,0.011235955,2,0.02247191,3,0.033707865,4,0.04494382,0,0,8,0.08988764,4,0.04494382,0.629213483,0,0,0,0,89,,No,1,Persuade,Annotator3,Final,N/A,N/A
WS0473_U3,WS0473,English,Someone else,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.611790894,0.725,3,0.046875,3.868593448,2.925064892,0.931120524,3.20903979,1.003937972,0.101060003,0.078203692,0.179263695,0.018050847,-0.025084746,0.043135593,0.95887,0.53400372,0.655795081,0.13943462,2.959904356,4.287632264,1.274693776,0,0,1,0,0,0,1,0,3,0,0,0,0,0,0,0,0,7,0,1,0,1,0,0,0,0,0,0,0,54.85720659,0,0,5,0,0,0,5,31,0,4,0,3.891820298,2.48490665,4.622128714,5.103741497,16,513,497,0.751891074,42,0,13,1.315281032,0,0,25,18,0.027231467,2,0.003025719,5,0.007564297,0.037821483,12,0.018154312,1,0.001512859,12,0.018154312,21,0.031770045,0,0,47,0.071104387,17,0.025718608,0.479576399,0,0,1,0.001512859,661,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WS0474_U1,WS0474,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.450450797,0.761904762,7,0.102941176,4.643825128,2.432333384,0.786099638,3.120114612,0.936369455,0.111957294,0.085580048,0.197519324,0.027702703,-0.047567568,0.07527027,0.99999,0.502187026,0.630326227,0.206993766,3.051079808,7.98564542,2.58601149,0,2,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,2,0,1,0,0,0,2,0,0,0,0,0,74.96845693,0,0,8,0,1,2,4,34,0,2,0,3.917462729,2.397895273,3.651176716,5.110307414,21,242,221,0.343167702,32,0,7,1.074434811,2,0.00310559,28,23,0.035714286,3,0.004658385,2,0.00310559,0.043478261,5,0.007763975,7,0.010869565,9,0.013975155,24,0.037267081,1,0.001552795,50,0.077639752,11,0.017080745,0.425465839,0,0,1,0.001552795,644,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0474_U2,WS0474,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.668061502,0.797101449,14,0.103703704,4.651134492,3.19855412,3.239922731,2.853273374,3.024728161,0.113087121,0.056069315,0.169156437,0.01676397,-0.014762302,0.031526272,0.99976,0.559163236,0.632336437,-0.150632422,2.818527516,15.6507428,3.504540433,0,0,1,0,2,0,0,0,4,1,0,0,1,0,0,0,0,16,0,1,0,5,0,1,0,0,0,0,2,162.7016132,0,0,11,0,1,0,5,58,0,6,0,4.44096917,2.63905733,4.276858119,5.169191919,7,1140,1133,0.816870944,74,12,24,1.262534922,9,0.006488825,50,41,0.029560202,5,0.003604903,4,0.002883922,0.036049027,23,0.016582552,7,0.005046864,18,0.01297765,45,0.032444124,1,0.000720981,81,0.058399423,41,0.029560202,0.394376352,0,0,8,0.005767844,1387,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0474_U3,WS0474,English,No one helped me,A little,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.558002977,0.75,6,0.171428571,5.149983072,2.434089001,3.243047183,2.866098143,3.224276231,0.085862564,0.06798691,0.153849474,0.017772512,-0.024881517,0.042654028,0.24307,0.39414911,0.77146872,-0.413277189,3.025898453,1.043616447,0.495330217,0,0,1,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,19.30866222,0,0,0,0,0,1,0,11,0,0,0,4.658710953,0.693147181,4.421177388,4.668246445,13,201,188,0.806866953,10,0,11,1.683139838,0,0,8,7,0.030042918,0,0,1,0.004291845,0.034334764,3,0.012875536,0,0,3,0.012875536,23,0.098712446,0,0,12,0.051502146,5,0.021459227,0.630901288,0,0,2,0.008583691,233,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0475_U1,WS0475,English,,,#NULL!,#NULL!,,5.765069356,0.3125,6,0.2,5.303304908,3.242468612,3.008114345,3.027890522,3.174040049,0.073523089,0.091810802,0.16533389,0.014332461,-0.054057592,0.068390052,0.78358,0.295702666,0.521227454,-0.185747479,2.927619389,1.909190245,1.378425708,0,0,1,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,12,0,0,0,0,0,46.18004275,0,0,0,0,0,2,1,8,0,5,0,3.996889226,1.945910149,3.816897614,4.763779528,2,332,330,0.800970874,17,2,11,1.442464547,0,0,14,11,0.026699029,2,0.004854369,1,0.002427184,0.033980583,5,0.012135922,3,0.007281553,18,0.04368932,8,0.019417476,3,0.007281553,18,0.04368932,16,0.038834951,0.533980583,2,0.004854369,0,0,412,,No,1,Persuade,Annotator3,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0475_U2,WS0475,English,"A parent, brother, sister or other relative",A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.687759975,0.842105263,16,0.080808081,4.404376026,3.01772946,2.160220456,3.002244969,1.816987938,0.10486463,0.068068633,0.172933263,0.014025138,-0.021551196,0.035576334,1,0.458931775,0.624347816,-0.336171772,2.749863769,12.95652239,3.883104253,0,1,0,0,3,0,0,0,14,2,0,0,0,0,0,0,0,15,1,1,0,2,0,3,0,0,0,0,5,213.7998313,0,8,8,1,1,1,7,67,0,1,0,4.49980967,2.890371758,4.605576358,4.95,102,1443,1341,0.729200653,54,0,37,1.32468631,4,0.002175095,71,57,0.030995106,2,0.001087548,12,0.006525285,0.038607939,34,0.018488309,3,0.001631321,34,0.018488309,55,0.029907558,1,0.000543774,90,0.048939641,47,0.025557368,0.330070691,2,0.001087548,6,0.003262643,1839,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0477_U1,WS0477,English,"A parent, brother, sister or other relative",Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.612734142,0.744186047,15,0.241935484,5.49279591,2.787836496,1.273518612,3.147453074,1.310946578,0.096265195,0.045266642,0.141531837,0.036227045,-0.008055092,0.044282137,0.94441,0.419937674,0.685283822,0.295423416,2.874926147,7.64491778,1.110082742,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,93.42395609,0,0,5,0,0,0,4,34,0,4,1,4.100989105,2.302585093,4.074868014,5.160596026,3,524,521,0.750720461,46,8,14,1.325780565,0,0,26,22,0.031700288,0,0,4,0.005763689,0.037463977,10,0.014409222,4,0.005763689,1,0.001440922,40,0.057636888,1,0.001440922,51,0.073487032,15,0.021613833,0.371757925,0,0,1,0.001440922,694,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0477_U2,WS0477,English,A teacher,A lot,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.747661442,0.84375,10,0.102040816,4.635125185,2.976252902,0.86822324,2.989955475,0.888334934,0.11077836,0.09372722,0.20450558,0.015432406,-0.028454274,0.04388668,0.99006,0.62736955,0.66672332,1.518438325,2.802939758,13.37535713,2.378043113,0,0,1,0,1,0,0,1,6,2,0,0,1,0,0,0,0,7,1,3,0,1,0,3,0,0,0,0,1,179.2805509,0,0,15,0,0,2,5,56,0,1,0,4.354734492,2.564949357,4.582592748,5.579051383,83,967,884,0.752981261,56,0,25,1.348202001,0,0,38,32,0.02725724,2,0.001703578,4,0.003407155,0.032367973,14,0.011925043,0,0,18,0.015332198,33,0.028109029,1,0.000851789,76,0.064735945,27,0.022998296,0.334752981,0,0,1,0.000851789,1174,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0477_U3,WS0477,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,5.299557199,0.277777778,2,0.064516129,4.182296357,2.69629629,3.222117659,1.816199641,3.560577408,0.135825654,0.07538036,0.211206014,0.020539419,-0.016286307,0.036825726,0.79278,0.495532994,0.53643114,0.043014267,2.936155544,2.8532351,0.435239433,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,34.41415485,0,0,0,0,0,0,1,7,3,6,1,3.875359021,1.609437912,3.591505143,5.049792531,21,139,118,0.443609023,19,4,7,1.436413757,0,0,13,9,0.033834586,3,0.011278195,1,0.003759398,0.04887218,5,0.018796992,0,0,3,0.011278195,14,0.052631579,3,0.011278195,22,0.082706767,3,0.011278195,0.469924812,2,0.007518797,1,0.003759398,266,,Unsure,1,Persuade,Annotator3,Draft,N/A,N/A
WS0478_U1,WS0478,English,A teacher,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.089044875,0.451612903,11,0.148648649,5.008290204,3.36049288,2.017221228,3.558839942,1.879809144,0.108566993,0.029812744,0.13834415,0.023354093,-0.003914591,0.027268683,0.79179,0.274610015,0.578719634,-1.170649272,3.000183778,2.299939711,1.63354736,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.15181416,0,0,0,0,0,1,3,15,6,6,0,4.030694535,2.302585093,3.864465861,4.523978686,30,607,577,0.9232,32,4,11,1.269512944,0,0,20,16,0.0256,1,0.0016,3,0.0048,0.032,16,0.0256,0,0,2,0.0032,56,0.0896,0,0,35,0.056,21,0.0336,0.4432,3,0.0048,2,0.0032,625,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WS0478_U2,WS0478,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.408821345,0.75,2,0.083333333,4.4347772,2.569768796,1.388828732,2.330939767,0.978722159,0.121734081,0.097023727,0.218757808,0.051180258,-0.050536481,0.101716738,0.79279,0.317960721,0.558620228,0.137566476,2.789007337,1.089117744,0.327262774,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,32.79998249,0,0,0,0,1,1,0,11,0,0,0,4.740574823,0.693147181,3.898292351,4.829694323,46,218,172,0.664092664,9,0,9,1.55326432,0,0,15,9,0.034749035,0,0,6,0.023166023,0.057915058,2,0.007722008,5,0.019305019,4,0.015444015,3,0.011583012,0,0,12,0.046332046,7,0.027027027,0.548262548,0,0,0,0,259,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0478_U3,WS0478,English,,,#NULL!,#NULL!,,6.75099976,0.852631579,19,0.098958333,4.604753432,2.726160776,2.128124116,3.231133679,1.986680517,0.086120301,0.053872506,0.139992807,0.010608553,-0.040279605,0.050888158,0.89439,0.50305114,0.621285275,-1.501033244,2.953614621,18.93161389,5.263475878,0,3,1,0,0,0,1,2,5,0,0,0,0,0,0,0,1,16,0,2,0,1,0,1,0,0,0,0,0,181.113064,0,0,10,0,3,0,6,85,0,4,0,4.471974871,2.833213344,4.253298554,5.159274194,4,1496,1492,0.864927536,90,16,21,1.119714792,0,0,70,53,0.030724638,12,0.006956522,5,0.002898551,0.04057971,33,0.019130435,32,0.018550725,19,0.011014493,57,0.033043478,1,0.00057971,112,0.064927536,64,0.037101449,0.301449275,2,0.00115942,1,0.00057971,1725,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0480_U1,WS0480,English,No one helped me,Somewhat,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.516052449,0.676470588,2,0.033333333,3.5361167,3.435485546,3.229984389,3.150278847,3.24118075,0.138622598,0.028033626,0.166656224,0.040789474,-0.009155702,0.049945175,0.73309,0.378663345,0.670333234,-0.441903413,2.909632049,3.679882752,1.325235499,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,1,1,64.35523417,0,0,0,0,0,1,4,26,0,3,0,3.635390769,2.48490665,4.021698874,5.030769231,1,525,524,0.996197719,38,5,13,1.410183639,0,0,26,15,0.02851711,5,0.009505703,6,0.011406844,0.049429658,10,0.019011407,9,0.017110266,12,0.022813688,21,0.039923954,0,0,39,0.074144487,17,0.032319392,0.475285171,1,0.001901141,4,0.007604563,526,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0480_U2,WS0480,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",5.963732806,0.411764706,2,0.083333333,4.4347772,2.901740479,1.011656874,2.317449342,0.92746542,0.076415956,0.029161952,0.105577908,0.003137652,-0.013360324,0.016497976,0.99999,0.195872538,0.748453441,-0.182745999,2.791280914,3.847766309,0.639759909,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,5,0,0,0,4,0,0,0,0,0,0,0,36.93452066,0,0,0,0,0,0,1,13,0,1,2,4.123093976,1.386294361,2.975984857,4.647773279,2,205,203,0.757462687,26,16,16,1.78319937,0,0,9,8,0.029850746,1,0.003731343,0,0,0.03358209,7,0.026119403,2,0.007462687,6,0.02238806,20,0.074626866,4,0.014925373,33,0.123134328,11,0.041044776,0.507462687,1,0.003731343,2,0.007462687,268,,Unsure,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0480_U3,WS0480,English,Someone else,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.655927872,0.82278481,14,0.078651685,4.377663196,2.968265193,2.906103144,2.894720694,2.849331447,0.129111449,0.064331641,0.19344309,0.024948383,-0.021851342,0.046799725,1,0.614091086,0.568662358,0.417999733,2.756421119,20.76120317,4.870623096,0,0,1,0,1,0,0,0,3,0,0,0,2,0,0,0,0,25,0,0,0,2,0,2,0,0,0,0,1,157.6241642,0,0,8,1,2,2,6,69,0,2,0,4.375757022,2.890371758,4.13176301,5.277428372,1,1197,1196,0.716167665,62,14,30,1.277931592,5,0.002994012,55,40,0.023952096,10,0.005988024,5,0.002994012,0.032934132,21,0.01257485,12,0.007185629,17,0.010179641,67,0.04011976,1,0.000598802,93,0.055688623,33,0.019760479,0.377844311,0,0,2,0.001197605,1670,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0481_U1,WS0481,English,A teacher,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.552275146,0.64516129,4,0.0625,4.151039906,2.949930369,3.016764457,3.105711993,3.076127211,0.130093356,0.031335555,0.161428912,0.02896679,-0.00945572,0.038422509,0.90583,0.234456441,0.627137291,0.047585096,2.801919097,3.368572947,0.898792929,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,49.93672043,0,0,0,0,0,1,4,23,0,2,1,3.804808921,2.48490665,3.277640718,4.80148423,74,439,365,0.5954323,28,0,9,1.195398468,0,0,29,25,0.040783034,2,0.003262643,2,0.003262643,0.04730832,13,0.021207178,14,0.022838499,7,0.01141925,24,0.039151713,0,0,36,0.058727569,22,0.03588907,0.388254486,3,0.004893964,6,0.009787928,613,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0481_U2,WS0481,English,A teacher,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",0,0,3,0.142857143,4.968820744,3.059177886,0.660463255,1.928934355,0.479299524,0.104681571,0.028053725,0.132735295,0.013059701,-0.008955224,0.022014925,0,0.260909059,0.606214756,-0.073865592,2.852796041,1.296357397,0.734189543,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,13.5331553,0,0,0,0,0,2,0,4,0,1,0,3.496507561,1.791759469,3.860358383,4.924242424,6,167,161,0.721973094,6,1,4,1.277316218,0,0,7,6,0.02690583,0,0,1,0.004484305,0.031390135,1,0.004484305,2,0.00896861,8,0.035874439,2,0.00896861,0,0,8,0.035874439,7,0.031390135,0.627802691,0,0,1,0.004484305,223,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WS0481_U3,WS0481,English,A teacher,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.58346002,0.746666667,11,0.088,4.48863637,3.256312661,2.136719194,3.120170713,1.931256153,0.095341382,0.085997538,0.18133892,0.017846751,-0.024272551,0.042119302,0.90922,0.447894662,0.654213963,0.218848686,2.924986336,18.28381336,2.753766335,0,0,0,0,3,0,0,0,6,1,0,0,1,0,0,0,0,10,2,2,0,1,0,7,1,0,0,0,3,144.2925696,0,0,0,0,0,0,5,63,0,5,2,4.285555066,2.63905733,4.620955366,5.096361849,33,946,913,0.762740184,50,0,9,0.930378269,2,0.001670844,43,33,0.027568922,5,0.004177109,5,0.004177109,0.035923141,25,0.020885547,16,0.01336675,24,0.020050125,42,0.035087719,1,0.000835422,86,0.071846282,36,0.030075188,0.355054302,1,0.000835422,7,0.005847953,1197,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0482_U1,WS0482,English,No one helped me,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.588824582,0.6875,14,0.16091954,5.087099547,3.339865655,1.098072393,3.514496012,0.973494137,0.09780849,0.046767046,0.144575536,0.012879834,-0.01336326,0.026243094,0.75478,0.283787631,0.590753076,0.240475145,2.868686127,6.868365493,3.467096659,0,1,1,0,2,0,0,0,5,0,0,0,1,0,0,0,0,4,0,2,0,7,0,3,0,0,1,1,1,72.72766158,0,5,7,2,1,2,4,25,0,1,0,4.084574771,2.48490665,4.18624162,4.587657784,1,746,745,0.920889988,28,13,24,1.486660737,0,0,29,20,0.024721879,1,0.001236094,8,0.009888752,0.035846724,13,0.016069221,11,0.013597033,26,0.032138443,44,0.054388133,5,0.00618047,45,0.055624227,33,0.0407911,0.365883807,0,0,0,0,809,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0482_U2,WS0482,English,No one helped me,Somewhat,0,1,I completed the assignment on a phone (such as an iPhone or Android).,6.583631839,0.642857143,13,0.121495327,4.808072883,3.101152216,1.021320835,3.466398332,0.836449018,0.123827598,0.073833177,0.197660775,0.04244403,-0.029695274,0.072139303,0.77447,0.356811128,0.530793726,-1.108931688,2.777685362,2.323121744,3.258197238,0,0,1,0,0,1,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,3,73.07194748,0,0,0,1,1,3,4,20,0,1,0,4.277927949,2.397895273,4.077680649,4.756620429,3,657,654,0.721058434,30,6,9,1.038334876,0,0,60,46,0.050716648,3,0.003307607,11,0.012127894,0.06615215,14,0.015435502,10,0.011025358,12,0.01323043,39,0.042998897,0,0,34,0.037486218,20,0.022050717,0.350606395,0,0,2,0.002205072,907,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0482_U3,WS0482,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.763950516,0.804878049,22,0.148648649,5.008290204,3.255219423,1.185118881,3.254104387,1.089017652,0.119370947,0.062116012,0.181486959,0.022785315,-0.023104549,0.045889864,0.66243,0.473496941,0.629569904,-0.797578628,2.851631671,7.653666466,6.286614998,0,1,0,1,1,0,1,0,2,0,0,0,3,0,0,0,0,18,0,0,0,1,0,5,0,0,1,0,1,121.1630781,0,0,8,4,2,0,6,34,0,1,0,4.562744342,2.564949357,4.49355578,4.830658106,71,1317,1246,0.883687943,35,0,14,1.038583526,0,0,57,37,0.026241135,11,0.007801418,9,0.006382979,0.040425532,17,0.012056738,3,0.00212766,38,0.026950355,61,0.043262411,1,0.00070922,50,0.035460993,35,0.024822695,0.378723404,0,0,4,0.002836879,1410,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0483_U1,WS0483,English,Someone else,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.804553914,0.82,20,0.084033613,4.443046631,2.709054352,0.759795205,2.929697247,0.607558658,0.12141588,0.080700883,0.202112301,0.01427934,-0.021352075,0.035631415,0.96362,0.558702388,0.570645164,-1.183876636,2.706249701,15.53589621,2.593126335,0,0,1,0,2,0,0,1,26,1,0,0,1,0,0,0,0,7,1,2,0,6,0,9,0,0,0,0,0,221.972737,0,0,11,1,6,0,5,84,10,1,0,5.142562837,2.564949357,4.215283008,5.022921348,6,2269,2263,0.930127415,98,12,24,1.036004347,2,0.00082203,99,70,0.028771065,22,0.009042335,7,0.002877106,0.040690506,40,0.016440608,0,0,52,0.021372791,79,0.032470201,8,0.003288122,112,0.046033703,42,0.017262639,0.260172626,2,0.00082203,0,0,2433,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0483_U2,WS0483,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.608574728,0.666666667,3,0.130434783,4.878510779,2.742523304,2.533133896,2.921986696,3.093426596,0.093377976,0.113839286,0.207217262,0.009375,-0.036830357,0.046205357,0.41279,0.13647375,0.609021451,-0.108701386,3.046648223,0.383198506,0.767188055,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,16.39387406,0,0,0,0,0,1,0,8,0,0,0,4.705015521,0.693147181,3.938985172,4.479638009,7,85,78,0.331914894,8,0,4,1.255785552,0,0,14,11,0.046808511,1,0.004255319,2,0.008510638,0.059574468,5,0.021276596,0,0,2,0.008510638,10,0.042553191,1,0.004255319,9,0.038297872,7,0.029787234,0.536170213,0,0,1,0.004255319,235,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0483_U3,WS0483,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.524377767,0.648648649,8,0.125,4.836281907,3.327243898,1.389689026,3.381270616,1.387602199,0.100538474,0.053485033,0.154023507,0.015247019,-0.016908007,0.032155026,0.91188,0.189669451,0.593792184,-0.803194886,3.117506544,3.995193026,2.657407703,0,1,0,0,1,0,0,0,4,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,59.90083648,0,0,0,0,1,1,4,28,0,4,0,3.881563798,2.48490665,4.057371977,4.302405498,13,424,411,0.634259259,24,0,26,1.614089614,0,0,27,21,0.032407407,5,0.007716049,1,0.00154321,0.041666667,13,0.020061728,0,0,10,0.015432099,61,0.094135802,1,0.00154321,43,0.066358025,18,0.027777778,0.37962963,2,0.00308642,1,0.00154321,648,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0485_U1,WS0485,English,,,#NULL!,#NULL!,,6.68245805,0.736842105,17,0.11409396,4.745748836,2.799522505,2.431942906,3.032115882,1.941329251,0.089562232,0.108309314,0.197871546,0.015997749,-0.056395349,0.072393098,0.97972,0.590712115,0.601718052,-1.08486478,2.870831622,12.59821556,3.614275498,0,1,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,4,0,5,0,2,0,1,0,0,2,0,2,138.2546366,0,0,12,0,1,2,5,63,2,2,2,4.339978398,2.833213344,4.638027399,5.013803681,18,1325,1307,0.889115646,67,11,21,1.184285738,0,0,57,36,0.024489796,10,0.006802721,11,0.007482993,0.03877551,32,0.021768707,4,0.002721088,12,0.008163265,38,0.02585034,1,0.000680272,86,0.058503401,51,0.034693878,0.376870748,0,0,4,0.002721088,1470,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0485_U2,WS0485,English,,,#NULL!,#NULL!,,6.730944632,0.787234043,14,0.118644068,4.784521233,3.17141941,2.250754566,3.432156948,1.891849981,0.099365181,0.030734778,0.130099959,0.018821966,-0.01091674,0.029738707,0.85612,0.346976338,0.555661871,-0.989919748,2.77735863,6.103504621,3.247645678,0,0,1,0,2,0,1,1,0,2,0,0,1,0,0,0,0,3,0,0,0,1,0,11,0,0,0,0,0,106.4495237,0,6,0,0,1,0,5,37,4,0,1,4.616020202,2.397895273,3.737405273,4.57823741,63,1171,1108,0.921797005,49,0,11,1.006526553,0,0,27,21,0.017470882,4,0.003327787,2,0.001663894,0.022462562,29,0.024126456,7,0.005823627,21,0.017470882,104,0.086522463,0,0,53,0.044093178,36,0.029950083,0.326955075,3,0.00249584,3,0.00249584,1202,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0485_U3,WS0485,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.747537059,0.85840708,25,0.102880658,4.643242725,2.837208394,2.352155282,3.078539394,1.835479056,0.101176742,0.077549997,0.178722452,0.013582762,-0.02030446,0.033887221,0.99741,0.681362366,0.581604119,0.773610103,2.725569188,20.57084376,6.227286139,0,1,1,0,2,0,0,0,6,0,0,0,2,0,0,0,0,20,3,1,1,3,0,9,0,0,0,0,1,253.8709912,0,0,12,0,4,1,7,103,0,1,1,4.856793209,2.890371758,4.327522844,5.296328294,13,1846,1833,0.700688073,87,0,35,1.157734872,4,0.001529052,54,38,0.014525994,7,0.002675841,9,0.003440367,0.020642202,31,0.011850153,6,0.002293578,36,0.013761468,81,0.030963303,1,0.000382263,137,0.052370031,44,0.016819572,0.319571865,1,0.000382263,3,0.001146789,2616,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0487_U1,WS0487,English,A tutor,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.762774149,0.828125,9,0.064285714,4.178773242,3.327238405,0.91785378,3.320487032,0.956702835,0.122248084,0.06433943,0.186587513,0.012555953,-0.016114593,0.028670546,0.99999,0.350683296,0.611556561,0.048646451,2.829534668,12.91493093,4.753687279,0,2,0,0,1,0,5,0,3,3,0,0,0,0,0,0,0,4,0,0,1,2,0,6,0,0,0,0,2,172.7699083,0,0,5,0,0,0,5,56,0,3,0,4.442651256,2.564949357,4.516682255,4.842533937,5,861,856,0.688656476,53,0,15,1.116195116,0,0,53,40,0.032180209,5,0.004022526,8,0.006436042,0.042638777,22,0.017699115,5,0.004022526,24,0.019308126,42,0.03378922,1,0.000804505,77,0.061946903,34,0.027353178,0.305711987,2,0.00160901,3,0.002413516,1243,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0487_U2,WS0487,English,A tutor,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.507038333,0.657142857,11,0.123595506,4.825072535,3.168153652,3.130708226,3.527817988,2.680268659,0.147762611,0.037121678,0.184884289,0.041355811,-0.006384505,0.047740316,0.97517,0.252564259,0.665253119,-0.46423896,2.864115918,4.930094466,4.214974534,0,3,1,0,0,0,0,0,1,7,0,0,0,0,0,0,0,1,0,0,1,0,0,6,0,0,0,0,0,57.65436541,0,0,0,0,0,4,4,25,0,2,0,3.976080642,2.564949357,3.92320316,4.594516595,1,590,589,0.767926988,31,8,8,1.058055643,0,0,23,14,0.018252934,3,0.003911343,6,0.007822686,0.029986962,15,0.019556714,3,0.003911343,20,0.026075619,42,0.054758801,1,0.001303781,43,0.056062581,24,0.031290743,0.408083442,0,0,2,0.002607562,767,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0487_U3,WS0487,English,A tutor,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.674329454,0.763157895,9,0.103448276,4.648691981,3.250952087,2.65609792,3.378163516,2.435106341,0.119753508,0.022438447,0.142191955,0.031676136,-0.00546875,0.037144886,1,0.377115593,0.596337468,-0.685027318,2.554608585,7.457429588,3.870378484,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,42,0,0,0,1,0,1,0,0,0,0,1,87.50870498,0,0,0,0,1,1,5,31,0,1,0,3.977522603,2.564949357,3.941520246,5.070605187,16,624,608,0.775510204,27,0,13,1.245059202,0,0,13,10,0.012755102,1,0.00127551,2,0.00255102,0.016581633,7,0.008928571,5,0.006377551,51,0.06505102,54,0.068877551,1,0.00127551,48,0.06122449,15,0.019132653,0.428571429,1,0.00127551,1,0.00127551,784,,Yes,1,Persuade,Annotator3,Final,N/A,N/A
WS0488_U1,WS0488,English,"A parent, brother, sister or other relative",Somewhat,0,1,I completed the assignment on a tablet (such as an iPad).,6.491391409,0.693877551,5,0.066666667,4.21459369,3.317517566,1.250171341,3.065060488,1.248984058,0.155671634,0.077361377,0.233021961,0.02378453,-0.01878453,0.042569061,0.99999,0.629667216,0.603645586,-0.107510271,2.93495854,8.522777748,2.614295078,0,0,0,0,0,0,1,0,5,0,0,0,0,0,0,0,0,6,0,2,0,5,0,3,0,0,0,0,4,97.54872276,0,0,9,1,0,0,4,40,0,4,1,4.234106505,2.564949357,4.63562311,5.273132664,1,766,765,0.75443787,49,12,21,1.336661007,1,0.000986193,48,24,0.023668639,11,0.010848126,13,0.012820513,0.047337278,18,0.017751479,0,0,18,0.017751479,21,0.020710059,1,0.000986193,63,0.062130178,25,0.024654832,0.387573964,0,0,2,0.001972387,1014,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0488_U2,WS0488,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,0,0,3,0.142857143,4.968820744,3.059177886,0.660463255,1.928934355,0.479299524,0.104681571,0.028053725,0.132735295,0.013059701,-0.008955224,0.022014925,0,0.260909059,0.606214756,-0.073865592,2.852796041,1.296357397,0.734189543,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,13.5331553,0,0,0,0,0,2,0,4,0,1,0,3.496507561,1.791759469,3.860358383,4.924242424,6,167,161,0.721973094,6,1,4,1.277316218,0,0,7,6,0.02690583,0,0,1,0.004484305,0.031390135,1,0.004484305,2,0.00896861,8,0.035874439,2,0.00896861,0,0,8,0.035874439,7,0.031390135,0.627802691,0,0,1,0.004484305,223,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0488_U3,WS0488,English,"A parent, brother, sister or other relative",Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.559459967,0.682926829,6,0.113207547,4.738017382,2.999129581,0.971908009,2.926533894,0.960269178,0.108272478,0.14459345,0.252865928,0.016600791,-0.08013834,0.09673913,1,0.58270385,0.755380439,0.163097392,3.036737836,7.729946917,1.302520926,0,0,0,0,0,0,0,1,1,1,0,0,0,0,0,0,0,9,0,2,0,1,0,1,0,0,0,0,4,51.02550772,0,0,10,0,1,1,4,32,0,4,0,3.731699451,2.48490665,4.502803848,5.427145709,60,471,411,0.693086003,30,0,13,1.360260624,0,0,26,11,0.018549747,4,0.006745363,11,0.018549747,0.043844857,10,0.016863406,0,0,11,0.018549747,9,0.015177066,1,0.001686341,50,0.084317032,21,0.035413153,0.462057336,1,0.001686341,1,0.001686341,593,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0490_U1,WS0490,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,0,0,3,0.142857143,4.968820744,3.059177886,0.660463255,1.923712349,0.479299524,0.105204978,0.028193994,0.133398972,0.013125,-0.009,0.022125,0,0.262825808,0.606522401,-0.07529426,2.859514576,1.212474935,0.7228464,0,0,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,13.49313382,0,0,0,0,0,2,0,4,0,1,0,3.49144426,1.791759469,3.859565287,4.934010152,1,209,208,0.936936937,7,1,5,1.371483893,0,0,7,6,0.027027027,0,0,1,0.004504505,0.031531532,1,0.004504505,2,0.009009009,8,0.036036036,2,0.009009009,0,0,8,0.036036036,7,0.031531532,0.630630631,0,0,1,0.004504505,222,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0490_U2,WS0490,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.411041088,0.65,7,0.21875,5.392490537,2.078716008,0.737194058,2.819964976,0.51538765,0.070017347,0.044880218,0.114897565,0.010373134,-0.02119403,0.031567164,0.81571,0.474614229,0.763123607,-0.297443074,2.664827005,1.776853291,1.453174371,0,0,0,0,1,0,0,0,3,0,0,0,0,0,0,0,0,8,0,0,0,1,0,2,0,0,0,0,0,33.07987424,0,0,0,0,1,1,1,14,0,4,0,4.40976339,1.386294361,4.016620978,5.039513678,104,281,177,0.475806452,12,2,6,1.233732827,0,0,9,8,0.021505376,0,0,1,0.002688172,0.024193548,7,0.018817204,0,0,17,0.045698925,10,0.02688172,0,0,22,0.059139785,7,0.018817204,0.532258065,1,0.002688172,2,0.005376344,372,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0490_U3,WS0490,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.496379019,0.666666667,5,0.071428571,4.282600855,3.044281353,0.964806983,2.838110468,0.980322867,0.138704415,0.03450099,0.173205405,0.038935282,-0.004331942,0.043267223,0.9469,0.490816876,0.728612313,-0.5250258,2.893486768,3.145133992,1.201638063,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,57.05096446,0,0,7,0,0,1,4,25,0,3,0,3.684704083,2.48490665,3.810716696,5.140167364,6,249,243,0.449168207,36,5,10,1.289684548,0,0,17,11,0.020332717,2,0.003696858,4,0.007393715,0.03142329,15,0.027726433,9,0.01663586,6,0.011090573,13,0.024029575,0,0,38,0.070240296,19,0.035120148,0.458410351,1,0.001848429,1,0.001848429,541,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0492_U1,WS0492,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.396672287,0.627906977,6,0.105263158,4.665918639,3.155473865,3.314245079,3.392620844,3.176618401,0.120885569,0.014814644,0.135700213,0.047292724,-0.00143824,0.048730964,1,0.367224673,0.674406714,-0.727709469,2.835925646,6.268667875,1.704903371,0,0,0,0,1,0,0,0,4,0,0,0,1,0,0,0,0,0,0,3,0,1,0,1,0,0,0,0,1,65.07107161,0,0,8,0,0,1,4,31,0,7,0,3.729129857,2.63905733,3.832278687,4.95025729,11,575,564,0.813852814,44,0,10,1.188366332,0,0,20,16,0.023088023,1,0.001443001,3,0.004329004,0.028860029,7,0.01010101,2,0.002886003,12,0.017316017,70,0.101010101,0,0,49,0.070707071,13,0.018759019,0.37950938,0,0,3,0.004329004,693,,Yes,3,Reflect,Annotator3,Final,N/A,N/A
WS0493_U1,WS0493,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.498906404,0.638888889,12,0.226415094,5.426776957,2.809993725,0.912700825,2.973965873,0.847762217,0.092619743,0.122494073,0.215113816,0.021487985,-0.064833641,0.086321627,0.97992,0.419988702,0.699256219,-0.139262171,3.005327464,4.600030187,0.998824123,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,1,57.19920891,0,0,0,0,0,3,4,26,2,0,1,3.799227511,2.48490665,4.201355706,4.884328358,1,569,568,0.923577236,33,6,10,1.237044883,0,0,35,17,0.027642276,3,0.004878049,15,0.024390244,0.056910569,7,0.011382114,2,0.003252033,5,0.008130081,14,0.022764228,1,0.001626016,41,0.066666667,11,0.017886179,0.417886179,0,0,1,0.001626016,615,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0493_U2,WS0493,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.530701648,0.555555556,11,0.134146341,4.906358202,3.216100393,0.87338324,3.48392805,0.852274515,0.070121686,0.035107527,0.105229213,0.006926864,-0.008790436,0.0157173,0.99999,0.330042969,0.684200293,-0.19420626,2.906045127,15.61718681,1.420849122,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,8,0,1,0,19,0,1,0,0,0,0,3,89.5680318,0,0,17,0,1,0,4,36,9,4,1,4.161719965,2.397895273,3.28252935,4.73796034,140,537,397,0.504447268,19,0,8,1.047865894,1,0.001270648,16,9,0.011435832,0,0,7,0.008894536,0.020330368,7,0.008894536,0,0,9,0.011435832,20,0.025412961,1,0.001270648,83,0.105463787,17,0.021601017,0.34815756,2,0.002541296,0,0,787,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0494_U1,WS0494,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.740952338,0.863157895,32,0.143497758,4.973263991,3.064710913,2.187741225,3.115791813,1.748604654,0.095573968,0.055870881,0.151444849,0.015319549,-0.020316416,0.035635965,1,0.507772445,0.626883458,-0.550312413,2.779863337,15.29623096,6.078318241,1,0,2,0,2,0,0,1,11,2,0,0,0,0,0,1,1,32,0,10,0,3,0,4,0,0,0,0,5,198.8536338,0,0,18,0,5,0,6,85,0,4,0,4.660289485,2.708050201,4.354789255,5.049842271,113,1823,1710,0.921336207,93,0,18,1.029313792,0,0,69,42,0.02262931,11,0.005926724,16,0.00862069,0.037176724,33,0.017780172,22,0.011853448,86,0.046336207,96,0.051724138,1,0.000538793,106,0.057112069,36,0.019396552,0.314655172,3,0.001616379,4,0.002155172,1856,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0494_U2,WS0494,English,No one helped me,A lot,1,0,I completed the assignment on a laptop or desktop computer.,5.608201917,0.357142857,6,0.214285714,5.37196605,1.891014349,3.202684222,1.860222606,3.478308681,0.118657635,0.07217775,0.190835386,0.015517241,-0.005711207,0.021228448,0.75907,0.450996066,0.574551168,-0.282430346,2.89993624,2.886176036,0.624801281,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,27.73595954,0,0,0,0,0,4,1,7,1,0,1,3.641962534,1.791759469,3.329510628,5.362445415,13,254,241,0.948818898,14,2,6,1.39132416,0,0,9,8,0.031496063,0,0,1,0.003937008,0.035433071,6,0.023622047,1,0.003937008,6,0.023622047,14,0.05511811,3,0.011811024,16,0.062992126,1,0.003937008,0.566929134,0,0,0,0,254,,Unsure,1,Persuade,Annotator3,Draft,N/A,N/A
WS0494_U3,WS0494,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.324614946,0.583333333,5,0.142857143,4.968820744,2.987377325,3.188123731,2.384341899,3.269932546,0.109697889,0.097236084,0.206933973,0.023045822,-0.024191375,0.047237197,0.7234,0.610321876,0.669539935,0.440521013,2.700911382,6.962818558,0.575980625,0,0,0,1,0,0,1,1,5,1,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,31.09019182,0,0,5,0,1,1,3,17,0,3,0,3.970291914,1.945910149,3.801071796,5.811320755,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0.002392344,28,0.066985646,0,0,0.511961722,0,0,0,0,418,,Yes,1,Persuade,Annotator3,Draft,N/A,N/A
WS0495_U1,WS0495,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.484253483,0.583333333,16,0.197530864,5.290944575,3.314522658,3.564144263,3.520964011,3.405533897,0.119410446,0.042240178,0.161636849,0.02834022,-0.013774105,0.042114325,0.97586,0.299552565,0.659291642,-0.259608868,3.030445645,3.499131466,1.886199847,0,0,1,0,3,1,0,1,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,69.14878774,0,0,0,0,0,1,4,26,0,3,2,4.101265005,2.48490665,4.171202388,4.626206897,21,765,744,0.93,36,0,21,1.435366507,0,0,28,21,0.02625,2,0.0025,5,0.00625,0.035,13,0.01625,3,0.00375,11,0.01375,44,0.055,0,0,41,0.05125,24,0.03,0.42,2,0.0025,0,0,800,,No,3,Reflect,Annotator3,Final,N/A,N/A
WS0495_U2,WS0495,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.691559368,0.688888889,13,0.110169492,4.711055987,2.961446059,1.087833787,3.093063013,1.064088008,0.116493496,0.065338882,0.181832378,0.022168441,-0.018514037,0.040682478,0.94702,0.583070911,0.679790623,-0.312986631,2.900127743,5.956169116,2.476229815,0,0,3,0,1,0,0,0,6,0,0,0,0,0,0,0,0,1,0,2,0,2,0,1,0,0,0,0,1,131.2286095,0,0,6,4,0,0,5,36,0,2,2,4.455315819,2.48490665,4.245085685,4.977734753,14,593,579,0.509683099,50,0,25,1.36186079,0,0,69,52,0.045774648,11,0.009683099,6,0.00528169,0.060739437,19,0.016725352,3,0.002640845,17,0.014964789,48,0.042253521,1,0.000880282,54,0.047535211,33,0.029049296,0.365316901,1,0.000880282,5,0.004401408,1136,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0497_U1,WS0497,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.584976366,0.685714286,20,0.114942529,4.753094626,2.747808185,2.050674461,3.033212994,1.833925477,0.130685076,0.064564109,0.195208345,0.01594224,-0.020653442,0.036595683,0.82506,0.526363929,0.652727623,-1.013421236,2.870001773,8.316524444,6.714953839,0,1,0,0,2,1,2,0,5,2,0,0,5,0,0,1,0,14,0,3,0,1,0,14,0,5,0,0,4,198.3553149,0,0,0,1,1,0,6,57,0,4,3,4.728567064,2.708050201,4.174970477,4.911608721,17,1685,1668,0.883006882,70,0,19,1.043685692,2,0.001058761,84,54,0.028586554,19,0.010058232,11,0.005823187,0.044467972,26,0.013763896,3,0.001588142,59,0.031233457,33,0.017469561,1,0.000529381,83,0.043938592,59,0.031233457,0.312334569,2,0.001058761,1,0.000529381,1889,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0497_U2,WS0497,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.078401657,0.428571429,6,0.162162162,5.094744566,2.490810294,1.093769921,2.913945399,1.061207188,0.153343326,0.113633994,0.26697732,0.068521898,-0.043156934,0.111678832,0.80222,0.242929352,0.600259259,0.049945813,2.959165128,1.495879429,0.935125101,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,33.99750004,0,0,0,0,0,3,1,7,2,1,0,3.80666249,1.791759469,3.239475856,4.574074074,8,289,281,0.886435331,14,2,4,1.134122786,0,0,11,6,0.018927445,3,0.009463722,2,0.006309148,0.034700315,4,0.012618297,1,0.003154574,6,0.018927445,5,0.015772871,0,0,16,0.050473186,21,0.066246057,0.447949527,1,0.003154574,0,0,317,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0497_U3,WS0497,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.515021006,0.648648649,12,0.171428571,5.149983072,2.932419834,1.048549732,3.104982408,1.020058515,0.078987763,0.101919051,0.180523625,0.011032138,-0.059672435,0.070704574,0.7523,0.340492187,0.611058415,-0.551645364,2.866807438,5.200525736,2.568640873,0,0,1,0,0,0,1,0,9,2,0,0,3,0,0,0,0,1,0,1,0,0,0,0,0,0,1,0,3,60.37455964,0,0,0,0,1,0,4,26,1,6,0,4.202201958,2.48490665,3.604075461,4.639650873,3,849,846,0.957013575,40,5,14,1.226267396,0,0,20,16,0.018099548,2,0.002262443,2,0.002262443,0.022624434,6,0.00678733,0,0,22,0.024886878,29,0.03280543,0,0,42,0.047511312,22,0.024886878,0.363122172,2,0.002262443,1,0.001131222,884,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0498_U1,WS0498,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.431012159,0.633333333,11,0.215686275,5.378450568,3.144445736,0.578022091,2.738054916,0.857293325,0.176799509,0.025575692,0.202375201,0.043764045,-0.008089888,0.051853933,1,0.553312875,0.664420455,-0.373612328,2.873308823,8.286053757,0.6291766,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,0,0,0,1,35.88922011,0,0,0,0,1,2,4,23,0,1,0,3.601868077,2.48490665,3.74955845,5.297727273,4,357,353,0.699009901,36,8,7,1.172059318,3,0.005940594,17,9,0.017821782,6,0.011881188,2,0.003960396,0.033663366,12,0.023762376,1,0.001980198,5,0.00990099,21,0.041584158,1,0.001980198,38,0.075247525,11,0.021782178,0.499009901,0,0,1,0.001980198,505,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0498_U2,WS0498,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.382012748,0.566666667,14,0.157303371,5.06451326,3.300583556,3.559567332,3.529495843,3.403234157,0.12166258,0.057037685,0.178700265,0.018599034,-0.012238325,0.030837359,0.89451,0.354146243,0.695043463,-1.363417122,3.06366355,2.740094316,1.756468721,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,43.94264894,0,0,0,0,0,2,4,21,0,3,0,3.859919666,2.564949357,3.899704441,4.589951378,145,340,195,0.283430233,27,0,6,0.987707826,0,0,27,21,0.030523256,2,0.002906977,4,0.005813953,0.039244186,11,0.015988372,7,0.010174419,4,0.005813953,78,0.113372093,0,0,35,0.050872093,23,0.033430233,0.441860465,0,0,2,0.002906977,688,,No,3,Reflect,Annotator3,Final,N/A,N/A
WS0498_U3,WS0498,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.602945679,0.653846154,10,0.151515152,5.027263945,2.755326418,1.034872473,2.800236882,1.163774603,0.13168153,0.022799279,0.154440969,0.022709163,-0.00313745,0.025846614,0.92538,0.409271162,0.650576962,-0.236737023,2.815894293,2.699166329,0.674166182,0,0,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,48.63927268,0,0,0,0,0,0,4,17,4,1,0,3.906004933,2.302585093,3.704935677,5.124748491,2,535,533,0.976190476,30,5,13,1.394618429,0,0,20,12,0.021978022,3,0.005494505,5,0.009157509,0.036630037,10,0.018315018,3,0.005494505,4,0.007326007,24,0.043956044,0,0,31,0.056776557,11,0.02014652,0.463369963,1,0.001831502,2,0.003663004,546,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0502_U1,WS0502,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.400539118,0.594594595,15,0.157894737,5.068241951,3.124301133,2.32935412,3.473259795,1.837765891,0.08536714,0.075723921,0.161078006,0.010443864,-0.026436031,0.036879896,0.86129,0.409910381,0.616947917,-0.738966637,2.805007938,4.364253266,2.708947087,0,2,1,0,1,0,1,0,2,1,0,0,0,0,0,0,0,2,0,1,0,0,1,1,0,0,0,2,4,95.39278799,0,0,0,0,1,3,6,27,0,0,1,3.935739532,2.708050201,4.360282038,4.8828125,100,782,682,0.797660819,34,0,10,1.103663713,0,0,25,20,0.023391813,2,0.002339181,3,0.003508772,0.029239766,16,0.01871345,2,0.002339181,18,0.021052632,49,0.057309942,0,0,44,0.051461988,31,0.03625731,0.391812865,2,0.002339181,1,0.001169591,855,,Yes,1,Persuade,Annotator3,Draft,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0502_U3,WS0502,English,,,#NULL!,#NULL!,,6.331532008,0.52,11,0.169230769,5.137154983,3.18243435,2.678999749,3.229850792,2.381971495,0.108203698,0.033187448,0.141391145,0.03240038,-0.007495256,0.039895636,0.99999,0.165626219,0.770575332,-0.002934415,2.738128465,1.544990077,0.943643201,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,0,0,0,2,46.71322888,0,0,0,0,1,3,3,13,4,2,0,4.069975971,2.197224577,3.887059702,4.679316888,113,471,358,0.606779661,17,0,4,0.890960674,0,0,27,23,0.038983051,2,0.003389831,2,0.003389831,0.045762712,18,0.030508475,7,0.011864407,5,0.008474576,15,0.025423729,0,0,29,0.049152542,20,0.033898305,0.377966102,1,0.001694915,2,0.003389831,590,,Unsure,1,Persuade,Annotator3,Final,N/A,N/A
WS0503_U1,WS0503,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.122106528,0.451612903,13,0.136842105,4.926108865,3.282238495,1.194127702,3.537148927,1.074581122,0.097977434,0.088644435,0.186621869,0.024748322,-0.043330537,0.068078859,0.74501,0.392066628,0.56322959,-0.224776834,3.036405567,5.141230375,1.870747201,0,1,0,1,2,0,1,0,1,1,0,0,0,0,0,0,0,1,0,2,0,0,0,4,0,0,0,1,2,52.30415552,0,0,0,0,0,3,3,21,0,2,2,3.896909368,2.48490665,4.624527477,4.648054146,112,509,397,0.607963247,28,0,10,1.212558746,0,0,30,14,0.02143951,6,0.009188361,10,0.015313936,0.045941807,8,0.012251149,6,0.009188361,18,0.027565084,26,0.039816233,0,0,36,0.055130168,20,0.030627871,0.422664625,3,0.004594181,0,0,653,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0503_U3,WS0503,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.762774149,0.828125,9,0.064285714,4.178773242,3.327238405,0.91785378,3.320487032,0.956702835,0.122248084,0.06433943,0.186587513,0.012555953,-0.016114593,0.028670546,0.99999,0.350683296,0.611556561,0.048646451,2.829534668,12.91493093,4.753687279,0,2,0,0,1,0,5,0,3,3,0,0,0,0,0,0,0,4,0,0,1,2,0,6,0,0,0,0,2,172.7699083,0,0,5,0,0,0,5,56,0,3,0,4.442651256,2.564949357,4.516682255,4.842533937,5,861,856,0.688656476,53,0,15,1.116195116,0,0,53,40,0.032180209,5,0.004022526,8,0.006436042,0.042638777,22,0.017699115,5,0.004022526,24,0.019308126,42,0.03378922,1,0.000804505,77,0.061946903,34,0.027353178,0.305711987,2,0.00160901,3,0.002413516,1243,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0505_U1,WS0505,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.467476874,0.565217391,11,0.234042553,5.459766575,3.095269982,1.131260086,2.951573367,1.354664078,0.091206918,0.166800633,0.258007551,0.029475703,-0.084462916,0.113938619,0.95082,0.379613832,0.627621964,-0.37610496,2.914783776,2.374761389,1.224809592,0,0,0,0,0,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,56.66212805,0,0,0,0,0,3,4,15,0,1,0,3.56052942,2.397895273,3.729511382,4.84754522,22,427,405,0.904017857,25,0,10,1.36775515,0,0,23,11,0.024553571,4,0.008928571,8,0.017857143,0.051339286,5,0.011160714,4,0.008928571,6,0.013392857,6,0.013392857,0,0,28,0.0625,9,0.020089286,0.453125,1,0.002232143,2,0.004464286,448,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0505_U3,WS0505,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.521775493,0.476635514,37,0.232704403,5.45405708,3.15593035,0.649253268,2.76784369,0.613858114,0.124575239,0.025412011,0.14998725,0.022734843,-0.002348434,0.025083278,1,0.836942587,0.659258618,-0.701127728,2.810835679,29.17941189,3.410080076,0,2,0,0,1,0,0,0,18,1,0,0,3,0,0,0,0,2,0,0,0,38,1,10,0,0,0,0,1,190.3376514,0,0,38,0,4,0,10,57,37,3,0,4.220175931,3.091042453,4.073653191,5.931863727,1,1637,1636,0.974970203,163,59,36,1.351295885,0,0,50,32,0.019070322,11,0.006555423,7,0.004171633,0.029797378,27,0.016090584,2,0.001191895,55,0.032777116,22,0.013110846,28,0.016686532,166,0.098927294,28,0.016686532,0.348629321,4,0.00238379,8,0.00476758,1678,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0506_U1,WS0506,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.388222608,0.542857143,4,0.050632911,3.944159287,3.20238209,3.182550744,3.311876958,2.880567336,0.102155209,0.093440668,0.195595877,0.020348837,-0.056618962,0.0769678,0.96621,0.402946825,0.618699528,0.262521857,3.02545683,4.233749346,2.561197511,0,3,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,1,0,0,62.290212,0,0,0,0,0,1,3,19,7,5,0,4.119940109,2.197224577,4.127339477,4.880866426,8,388,380,0.589147287,38,4,7,1.073817775,0,0,28,20,0.031007752,2,0.003100775,6,0.009302326,0.043410853,8,0.012403101,4,0.00620155,14,0.021705426,31,0.048062016,0,0,39,0.060465116,17,0.026356589,0.431007752,0,0,2,0.003100775,645,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0506_U2,WS0506,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.5853496,0.765957447,5,0.113636364,4.741765063,3.196339708,0.864865892,2.59683208,0.980515181,0.072625621,0.140524032,0.213149653,0.008366534,-0.069023904,0.077390438,0.99999,0.663543498,0.67652,0.725360468,2.868488948,12.10677298,0.847089467,0,0,0,0,1,0,0,0,7,1,0,0,1,0,0,0,0,2,0,6,0,6,0,3,0,0,1,0,0,54.94591291,0,0,16,0,3,0,4,39,0,4,0,3.775890831,2.397895273,4.001005618,5.597916667,48,402,354,0.627659574,26,0,33,1.774594608,0,0,15,7,0.012411348,0,0,8,0.014184397,0.026595745,5,0.008865248,0,0,29,0.05141844,9,0.015957447,3,0.005319149,59,0.104609929,12,0.021276596,0.512411348,0,0,0,0,564,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0507_U1,WS0507,English,A teacher,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.75099976,0.852631579,19,0.098958333,4.604753432,2.726160776,2.128124116,3.231133679,1.986680517,0.086120301,0.053872506,0.139992807,0.010608553,-0.040279605,0.050888158,0.89439,0.50305114,0.621285275,-1.501033244,2.953614621,18.93161389,5.263475878,0,3,1,0,0,0,1,2,5,0,0,0,0,0,0,0,1,16,0,2,0,1,0,1,0,0,0,0,0,181.113064,0,0,10,0,3,0,6,85,0,4,0,4.471974871,2.833213344,4.253298554,5.159274194,4,1496,1492,0.864927536,90,16,21,1.119714792,0,0,70,53,0.030724638,12,0.006956522,5,0.002898551,0.04057971,33,0.019130435,32,0.018550725,19,0.011014493,57,0.033043478,1,0.00057971,112,0.064927536,64,0.037101449,0.301449275,2,0.00115942,1,0.00057971,1725,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0508_U1,WS0508,English,No one helped me,A lot,1,0,I completed the assignment on a laptop or desktop computer.,6.60009019,0.72972973,10,0.111111111,4.719490443,3.071357389,1.930952126,2.940628448,2.049913702,0.088679072,0.118297266,0.206976338,0.019844633,-0.06105226,0.080896893,0.98331,0.429784955,0.519658797,-0.729419303,2.888452164,2.731430731,1.446016862,0,2,1,0,0,0,2,0,3,1,0,0,0,0,0,0,0,1,0,1,0,0,0,3,0,0,0,0,0,102.3250429,0,0,0,0,2,3,4,29,0,1,0,4.163135393,2.397895273,3.914705889,4.779349364,17,600,583,0.724223602,33,0,8,1.03893348,0,0,59,38,0.047204969,3,0.003726708,18,0.022360248,0.073291925,14,0.017391304,2,0.002484472,12,0.014906832,25,0.031055901,0,0,42,0.052173913,22,0.027329193,0.331677019,1,0.001242236,2,0.002484472,805,,Yes,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0508_U2,WS0508,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.75599091,0.82,2,0.024691358,3.246154672,3.377101532,0.939773761,2.997899101,0.992498564,0.105220186,0.095989758,0.201196113,0.013139696,-0.022268326,0.035408022,0.98001,0.534324286,0.624142027,-0.152578847,2.965014686,8.168534934,2.955882524,1,4,1,0,0,0,0,1,6,1,0,0,2,0,0,0,0,3,1,1,0,1,0,2,0,0,0,1,0,96.53961047,0,0,11,0,0,0,6,41,2,1,0,3.936018511,2.63905733,4.478822289,5.320781032,1,586,585,0.715158924,47,11,16,1.313021044,2,0.002444988,28,24,0.029339853,1,0.001222494,3,0.003667482,0.034229829,16,0.019559902,3,0.003667482,22,0.026894866,41,0.050122249,1,0.001222494,61,0.074572127,21,0.025672372,0.380195599,0,0,3,0.003667482,818,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0510_U1,WS0510,English,,,#NULL!,#NULL!,,6.669271802,0.785714286,10,0.2,5.303304908,3.268663539,2.62272958,3.027351457,2.433756486,0.118449378,0.027925926,0.146375303,0.045444444,-0.011166667,0.056611111,0.83729,0.369322416,0.643310858,-0.642144782,2.931809664,2.724722296,2.496177024,0,1,1,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,54.17534368,0,0,0,0,0,0,3,24,0,0,1,4.308559483,1.791759469,3.748296925,4.923766816,23,443,420,0.813953488,23,0,6,1.101331374,0,0,16,14,0.027131783,0,0,2,0.003875969,0.031007752,9,0.01744186,10,0.019379845,8,0.015503876,24,0.046511628,0,0,32,0.062015504,21,0.040697674,0.436046512,4,0.007751938,0,0,516,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0510_U3,WS0510,English,Someone else,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.256511581,0.529411765,2,0.023255814,3.188656339,3.305819641,1.997377213,3.328338838,2.017537239,0.122666995,0.0721162,0.194783195,0.01879771,-0.017748092,0.036545802,0.91413,0.337730411,0.609464744,0.060566355,2.747874263,12.95379018,3.288618851,0,2,3,0,2,0,2,1,4,0,0,1,1,0,0,0,0,10,0,6,0,1,0,2,0,0,0,0,1,90.08328959,0,0,7,0,0,0,6,39,0,1,5,4.094344562,2.564949357,4.145529535,5.019230769,16,592,576,0.635060639,47,0,16,1.270459266,4,0.004410143,39,28,0.030871003,6,0.006615215,5,0.005512679,0.042998897,7,0.007717751,2,0.002205072,24,0.02646086,37,0.040793826,1,0.001102536,63,0.069459757,21,0.023153252,0.361631753,0,0,0,0,907,,Yes,1,Persuade,Annotator3,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0511_U1,WS0511,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.667475392,0.782608696,13,0.156626506,5.060228349,3.237639472,3.225908158,2.980401716,2.928713155,0.14827774,0.051690642,0.199968381,0.036067708,-0.015842014,0.051909722,0.99999,0.418320676,0.697582198,0.173306722,2.734684296,11.50574316,2.108331038,0,0,0,0,0,0,0,0,2,1,0,0,2,0,0,0,0,1,1,3,0,1,0,2,0,0,0,0,1,98.4375114,0,0,7,0,1,2,2,38,0,4,0,4.406719247,1.945910149,4.209154533,5.165505226,102,367,265,0.379113019,28,0,9,1.142249784,5,0.007153076,32,25,0.035765379,4,0.005722461,3,0.004291845,0.045779685,10,0.014306152,0,0,12,0.017167382,47,0.067238913,1,0.001430615,55,0.078683834,18,0.025751073,0.391988555,0,0,4,0.005722461,699,,Yes,1,Persuade,Annotator3,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0514_U1,WS0514,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.249749574,0.526315789,3,0.12,4.795790546,3.3639279,3.103804574,2.692326077,3.208490132,0.144584216,0.046121884,0.1907061,0.02867036,-0.011149584,0.039819945,0.77711,-0.065787289,0.616085665,-0.376773756,2.931271955,2.151675931,0.899588381,1,0,0,0,1,0,0,0,6,3,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,53.38561373,0,0,0,0,0,2,3,11,0,2,1,3.586292865,2.302585093,2.848921349,4.069252078,70,370,300,0.779220779,17,0,4,1.056508868,0,0,25,18,0.046753247,2,0.005194805,5,0.012987013,0.064935065,11,0.028571429,2,0.005194805,14,0.036363636,31,0.080519481,0,0,23,0.05974026,17,0.044155844,0.366233766,0,0,0,0,385,,No,1,Persuade,Annotator3,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0514_U2,WS0514,English,No one helped me,Not at all,1,1,I completed the assignment on a laptop or desktop computer.,6.348832169,0.576923077,11,0.164179104,5.107030367,3.076728166,3.511132597,2.97269243,3.595604035,0.182119836,0.043603471,0.225723307,0.057852194,-0.004214781,0.062066975,0.82588,-0.035872924,0.496617998,-0.02724491,3.039335038,2.025775003,1.000581226,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.85822968,0,0,0,0,0,4,4,16,0,1,1,3.763522997,2.302585093,3.231861511,4.013921114,12,422,410,0.866807611,28,0,6,1.136244466,0,0,36,25,0.052854123,2,0.00422833,9,0.019027484,0.076109937,10,0.021141649,4,0.00845666,1,0.002114165,39,0.082452431,0,0,31,0.065539112,17,0.035940803,0.369978858,1,0.002114165,1,0.002114165,473,,No,2,Inform/Explore,Annotator3,Final,N/A,N/A
WS0514_U3,WS0514,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.545254714,0.631578947,23,0.194915254,5.277682189,3.275064179,3.215470683,3.475991038,3.084365349,0.128833294,0.09203386,0.220867154,0.02192029,-0.030827295,0.052747585,0.84568,0.24439186,0.560123166,-0.746974535,2.937192673,4.318060335,1.418013721,1,1,1,0,1,0,0,0,3,0,0,0,2,0,0,0,0,6,0,1,0,0,0,2,0,0,0,0,0,100.382105,0,0,0,0,2,1,5,28,0,3,1,4.146791038,2.564949357,3.928863319,4.54622871,77,346,269,0.29495614,38,0,4,0.73126352,0,0,54,31,0.033991228,4,0.004385965,19,0.020833333,0.059210526,29,0.031798246,2,0.002192982,17,0.018640351,36,0.039473684,0,0,45,0.049342105,24,0.026315789,0.347587719,3,0.003289474,5,0.005482456,912,,Yes,1,Persuade,Annotator3,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0515_U1,WS0515,English,A tutor,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.397038684,0.666666667,21,0.196261682,5.284531184,3.187092572,2.841665337,3.319192827,2.659414121,0.124941778,0.030769011,0.155710789,0.020020964,-0.003590147,0.023611111,0.90462,0.383781177,0.50714078,-0.485660143,2.713749233,7.653795842,4.866290122,0,0,0,0,1,0,2,0,11,0,0,0,1,0,0,0,1,2,0,0,0,1,0,3,0,0,0,0,2,110.7479306,0,0,0,1,0,0,5,29,0,3,2,4.370502149,2.48490665,3.900743215,5,58,652,594,0.555659495,23,0,8,0.928581697,8,0.00748363,52,32,0.029934518,5,0.004677268,15,0.014031805,0.048643592,17,0.015902713,4,0.003741815,17,0.015902713,17,0.015902713,1,0.000935454,48,0.044901777,25,0.023386342,0.360149673,5,0.004677268,3,0.002806361,1069,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0517_U2,WS0517,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.311734809,0.558139535,17,0.123188406,4.821799814,3.273459277,3.300482122,3.166574934,3.101323858,0.081754374,0.072610639,0.154354921,0.010368315,-0.057416751,0.067785066,0.99999,0.545749349,0.635530462,0.219092674,2.930633761,6.094802319,5.116231783,0,0,0,0,1,0,0,1,3,4,1,0,2,0,0,0,0,1,0,3,0,0,0,2,0,0,0,0,3,110.6499531,0,0,0,1,1,3,9,29,0,2,0,3.748992436,3.135494216,4.264285323,5.230296827,95,1010,915,0.802631579,43,0,16,1.177105966,0,0,29,16,0.014035088,2,0.001754386,11,0.009649123,0.025438596,12,0.010526316,8,0.007017544,25,0.021929825,43,0.037719298,0,0,60,0.052631579,22,0.019298246,0.412280702,1,0.000877193,4,0.003508772,1140,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0519_U1,WS0519,History,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.785261423,0.876190476,32,0.117647059,4.776153194,2.966506408,2.698274869,3.330127275,2.85687555,0.102474425,0.065049315,0.16752374,0.016703152,-0.023697461,0.040400613,1,0.460460347,0.636854001,-2.354573643,2.961978568,15.27934463,5.704738781,0,2,0,0,1,0,1,1,15,0,0,0,0,0,0,0,1,6,1,3,0,13,0,19,2,0,0,0,2,271.9109709,1,0,17,3,2,1,5,95,0,3,1,5.158613115,2.564949357,4.231535,4.542237948,16,2286,2270,0.936082474,100,0,14,0.830793635,0,0,147,123,0.050721649,14,0.005773196,10,0.004123711,0.060618557,62,0.02556701,3,0.001237113,40,0.016494845,148,0.061030928,1,0.000412371,130,0.053608247,67,0.027628866,0.268041237,4,0.001649485,10,0.004123711,2425,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0522_U1,WS0522,English,A teacher,A lot,1,1,I completed the assignment on a tablet (such as an iPad).,6.63433967,0.767857143,20,0.108695652,4.697709733,3.10726324,1.493678721,3.381721273,1.110838746,0.084164896,0.051299782,0.135464678,0.011492087,-0.022287114,0.033779201,0.95823,0.258550859,0.586018482,-2.406270188,2.7474102,5.620203795,3.818955248,1,7,0,0,3,2,2,4,5,7,5,0,3,0,0,1,0,9,2,2,0,0,2,7,0,0,0,1,0,181.8136651,1,0,5,1,3,1,6,47,0,2,0,4.353687676,2.833213344,3.69957196,4.577912254,88,999,911,0.63661775,51,0,7,0.770239456,0,0,109,71,0.049615653,9,0.006289308,29,0.020265549,0.07617051,34,0.023759609,12,0.008385744,66,0.046121593,119,0.08315863,0,0,66,0.046121593,46,0.032145353,0.284416492,1,0.000698812,17,0.011879804,1431,Yes,Yes,2,Inform/Explore,Annotator1,Final,DUP,Duplicates
WS0522_U2,WS0522,English,A teacher,A lot,1,1,I completed the assignment on a tablet (such as an iPad).,6.699977936,0.761904762,16,0.115942029,4.761678333,3.047705208,2.883004727,3.192745166,2.608554598,0.079065879,0.030919091,0.109984969,0.01231737,-0.003713474,0.016030844,0.92464,0.377359168,0.57454101,-0.018949267,2.822847213,7.493847274,2.752307598,0,2,1,0,1,0,1,0,4,4,0,0,2,1,0,0,0,6,1,3,0,2,0,9,1,0,0,0,1,131.4210166,0,5,0,0,2,0,4,52,3,4,0,4.536726614,2.564949357,4.165396087,4.900329489,7,1206,1199,0.853988604,63,6,49,1.555097895,3,0.002136752,42,30,0.021367521,4,0.002849003,8,0.005698006,0.02991453,22,0.015669516,14,0.00997151,35,0.024928775,33,0.023504274,1,0.000712251,69,0.049145299,50,0.035612536,0.36039886,3,0.002136752,2,0.001424501,1404,Unsure,Yes,1,Persuade,Annotator1,Final,N/A,N/A
WS0524_U1,WS0524,English,Someone else,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.772755609,0.819277108,36,0.166666667,5.121977881,3.033907671,2.695719384,3.361861514,2.721922299,0.087358688,0.037971014,0.125329702,0.016605351,-0.00687291,0.023478261,0.96585,0.232941904,0.494398682,-2.896753701,2.972099078,9.261514893,5.469087588,0,1,3,1,1,0,0,0,4,2,0,0,2,0,0,0,2,5,1,1,0,4,1,14,0,0,0,0,1,158.2490617,1,0,7,0,0,0,4,75,0,3,1,4.744263008,2.564949357,4.038772207,4.404953146,225,1583,1358,0.826536823,69,0,11,0.886212575,0,0,94,65,0.039561777,10,0.006086427,19,0.011564212,0.057212416,40,0.024345709,35,0.021302495,38,0.023128424,91,0.055386488,1,0.000608643,97,0.059038344,71,0.043213634,0.265976872,1,0.000608643,5,0.003043214,1643,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0524_U2,WS0524,English,A tutor,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.659860166,0.803030303,16,0.082051282,4.419458273,2.770765191,3.116856288,3.299164164,3.083181676,0.093853592,0.067689381,0.161535155,0.009128225,-0.019136044,0.028264269,0.86388,0.299412003,0.605468295,-1.981224021,2.970179836,11.54607692,6.819623639,0,0,1,0,0,0,0,0,3,5,0,0,1,1,0,0,0,5,3,0,1,4,0,7,0,0,0,0,2,134.4472191,0,0,7,0,1,0,6,55,0,5,0,4.512428134,2.63905733,4.524648809,4.662225705,1,1022,1021,0.691734417,87,17,13,0.991562217,2,0.001355014,79,55,0.037262873,13,0.008807588,11,0.007452575,0.053523035,32,0.021680217,17,0.011517615,27,0.018292683,98,0.066395664,1,0.000677507,91,0.061653117,52,0.035230352,0.301490515,2,0.001355014,7,0.004742547,1476,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0526_U1,WS0526,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.63433967,0.767857143,20,0.108695652,4.697709733,3.10726324,1.493678721,3.381721273,1.110838746,0.084164896,0.051299782,0.135464678,0.011492087,-0.022287114,0.033779201,0.95823,0.258550859,0.586018482,-2.406270188,2.7474102,5.620203795,3.818955248,1,7,0,0,3,2,2,4,5,7,5,0,3,0,0,1,0,9,2,2,0,0,2,7,0,0,0,1,0,181.8136651,1,0,5,1,3,1,6,47,0,2,0,4.353687676,2.833213344,3.69957196,4.577912254,88,999,911,0.63661775,51,0,7,0.770239456,0,0,109,71,0.049615653,9,0.006289308,29,0.020265549,0.07617051,34,0.023759609,12,0.008385744,66,0.046121593,119,0.08315863,0,0,66,0.046121593,46,0.032145353,0.284416492,1,0.000698812,17,0.011879804,1431,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0526_U2,WS0526,English,A teacher,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.699977936,0.761904762,16,0.115942029,4.761678333,3.047705208,2.883004727,3.192745166,2.608554598,0.079065879,0.030919091,0.109984969,0.01231737,-0.003713474,0.016030844,0.92464,0.377359168,0.57454101,-0.018949267,2.822847213,7.493847274,2.752307598,0,2,1,0,1,0,1,0,4,4,0,0,2,1,0,0,0,6,1,3,0,2,0,9,1,0,0,0,1,131.4210166,0,5,0,0,2,0,4,52,3,4,0,4.536726614,2.564949357,4.165396087,4.900329489,7,1206,1199,0.853988604,63,6,49,1.555097895,3,0.002136752,42,30,0.021367521,4,0.002849003,8,0.005698006,0.02991453,22,0.015669516,14,0.00997151,35,0.024928775,33,0.023504274,1,0.000712251,69,0.049145299,50,0.035612536,0.36039886,3,0.002136752,2,0.001424501,1404,Unsure,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0526_U3,WS0526,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.740952338,0.863157895,32,0.143497758,4.973263991,3.064710913,2.187741225,3.115791813,1.748604654,0.095573968,0.055870881,0.151444849,0.015319549,-0.020316416,0.035635965,1,0.507772445,0.626883458,-0.550312413,2.779863337,15.29623096,6.078318241,1,0,2,0,2,0,0,1,11,2,0,0,0,0,0,1,1,32,0,10,0,3,0,4,0,0,0,0,5,198.8536338,0,0,18,0,5,0,6,85,0,4,0,4.660289485,2.708050201,4.354789255,5.049842271,113,1823,1710,0.921336207,93,0,18,1.029313792,0,0,69,42,0.02262931,11,0.005926724,16,0.00862069,0.037176724,33,0.017780172,22,0.011853448,86,0.046336207,96,0.051724138,1,0.000538793,106,0.057112069,36,0.019396552,0.314655172,3,0.001616379,4,0.002155172,1856,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0527_U1,WS0527,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.672807452,0.651685393,25,0.155279503,5.051646091,3.258122779,1.204171077,3.113252053,1.516388227,0.099817645,0.040691996,0.140509641,0.013876571,-0.019493718,0.033370288,0.93721,0.40199875,0.565893236,-0.142450858,2.680830706,17.95002267,3.877292107,1,3,0,0,2,0,0,0,9,11,0,0,0,0,0,0,0,7,1,10,1,13,0,7,1,0,0,0,2,161.5235781,0,0,19,0,1,0,13,68,7,0,1,3.678531986,3.526360525,3.76716553,4.984398217,34,1347,1313,0.859855927,84,0,11,0.91400804,4,0.002619515,31,24,0.015717092,4,0.002619515,3,0.001964637,0.020301244,21,0.013752456,2,0.001309758,63,0.041257367,28,0.018336608,1,0.000654879,112,0.073346431,27,0.017681729,0.324165029,4,0.002619515,4,0.002619515,1527,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0527_U2,WS0527,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.655396828,0.802325581,11,0.080882353,4.405283497,2.944142642,2.665796769,3.100418162,2.649041914,0.066723861,0.117175972,0.183899834,0.006095467,-0.02814217,0.034237637,1,0.512040788,0.687446962,0.648335911,3.075399247,15.30831617,3.476410631,0,2,1,0,5,1,1,4,14,3,0,0,2,0,0,0,0,13,0,0,0,2,1,10,2,0,0,0,4,211.0932792,0,0,18,1,1,1,5,69,1,9,1,4.701179422,2.564949357,4.493906802,5.00698812,21,1425,1404,0.847826087,92,10,50,1.494060441,0,0,42,18,0.010869565,8,0.004830918,16,0.009661836,0.025362319,32,0.019323671,3,0.001811594,65,0.039251208,37,0.022342995,1,0.000603865,96,0.057971014,48,0.028985507,0.322463768,9,0.005434783,0,0,1656,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0529_U1,WS0529,English,No one helped me,A little,0,0,I completed the assignment on a laptop or desktop computer.,6.733897077,0.783333333,13,0.081761006,4.415957012,3.147479097,3.000505118,3.396790357,2.804539289,0.112047385,0.025924107,0.137962334,0.008630952,-0.002541209,0.011172161,0.97933,0.307821654,0.544718001,-1.220312405,2.876765253,7.800153122,4.767823197,0,0,0,0,2,0,1,0,9,3,1,0,0,0,0,0,0,1,2,0,0,0,0,11,5,1,0,0,3,170.9059765,0,0,0,0,0,0,6,50,0,4,0,4.284964922,2.708050201,3.552641192,4.832874197,12,1203,1191,0.96593674,62,0,18,1.193083955,1,0.00081103,52,36,0.02919708,4,0.00324412,12,0.00973236,0.04217356,9,0.00729927,20,0.0162206,39,0.03163017,48,0.03892944,1,0.00081103,73,0.059205191,48,0.03892944,0.290348743,0,0,9,0.00729927,1233,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0529_U2,WS0529,English,No one helped me,A little,0,0,I completed the assignment on a laptop or desktop computer.,6.695386524,0.777777778,11,0.059782609,4.107303707,3.069555832,2.941380221,3.369923906,2.726902885,0.103440778,0.038269809,0.141710586,0.011074476,-0.007854926,0.018929403,0.9415,0.276917053,0.571663746,-1.940652413,2.917341687,7.393335831,6.114958214,0,1,1,0,2,0,0,0,3,0,1,0,1,0,0,0,0,2,0,2,0,1,0,14,0,0,0,0,2,128.2917693,0,0,8,1,0,2,6,52,0,3,0,4.386703183,2.772588722,4.081594295,4.66562986,1,1261,1260,0.847343645,59,11,16,1.070404342,3,0.002017485,87,77,0.051782112,2,0.00134499,8,0.00537996,0.058507061,26,0.017484869,45,0.030262273,29,0.019502354,65,0.043712172,2,0.00134499,73,0.049092132,62,0.041694687,0.278412912,3,0.002017485,2,0.00134499,1487,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0530_U1,WS0530,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.778952152,0.850746269,15,0.127118644,4.852956741,3.209757594,1.152234939,3.346648967,1.04041676,0.118795157,0.032186767,0.150981924,0.017353952,-0.006758305,0.024112257,0.99924,0.410425129,0.487910615,-0.390788981,2.956365248,11.34295596,3.340171215,0,0,2,0,1,0,0,1,4,2,0,0,0,0,0,0,0,4,3,0,0,3,0,3,2,3,0,0,0,112.6867545,0,4,13,2,0,1,3,60,0,3,0,4.469350463,2.302585093,4.05309351,5.072164948,6,941,935,0.941591138,72,6,20,1.325125257,0,0,29,17,0.017119839,2,0.002014099,10,0.010070493,0.029204431,15,0.01510574,10,0.010070493,26,0.026183283,31,0.03121853,1,0.001007049,73,0.073514602,20,0.020140987,0.358509567,3,0.003021148,3,0.003021148,993,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0530_U2,WS0530,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.615629669,0.806818182,16,0.172043011,5.153540181,3.061708929,1.1360398,3.229640025,1.09307402,0.127010355,0.042498669,0.169499004,0.031963928,-0.010771543,0.042735471,1,0.490909563,0.547697568,1.331763659,2.869165032,19.54996603,3.183774458,0,1,1,0,1,0,1,1,6,5,0,0,3,0,0,0,0,19,0,2,0,4,1,3,0,2,0,0,0,133.0418559,0,0,18,0,0,0,7,75,0,4,2,4.186619838,2.708050201,4.492265519,5.128672746,1,981,980,0.847750865,80,17,16,1.171458203,0,0,31,21,0.01816609,8,0.006920415,2,0.001730104,0.026816609,12,0.010380623,5,0.00432526,44,0.038062284,30,0.025951557,1,0.000865052,105,0.09083045,13,0.011245675,0.364186851,0,0,0,0,1156,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0532_U1,WS0532,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.579050107,0.730769231,2,0.031746032,3.488781787,3.284887557,3.209127351,3.131505131,3.053043896,0.087084462,0.052176738,0.1392612,0.011598441,-0.021247563,0.032846004,0.70423,0.372852221,0.524620784,-0.350728997,2.784134686,3.643513794,1.789295955,0,0,0,0,0,0,0,0,1,2,0,0,1,0,0,0,0,5,1,0,0,0,0,5,0,0,0,0,1,52.43011761,0,0,0,0,0,0,0,23,0,3,0,4.613138356,1.609437912,3.388149668,5.299603175,2,434,432,0.728499157,27,3,7,1.107358707,0,0,22,17,0.028667791,3,0.005059022,2,0.003372681,0.037099494,9,0.015177066,12,0.020236088,14,0.023608769,24,0.040472175,1,0.001686341,29,0.048903879,10,0.016863406,0.455311973,4,0.006745363,3,0.005059022,593,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0532_U2,WS0532,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.805830966,0.92,35,0.164319249,5.107878446,2.845331003,2.695869768,3.154368795,2.611610112,0.155914624,0.046775248,0.202630545,0.025873434,-0.016150297,0.042023731,0.96687,0.445171984,0.562376553,-1.52903635,2.679825649,14.33979305,5.373021272,0,9,4,0,2,0,1,5,22,7,0,0,0,0,0,0,0,13,0,2,1,0,0,11,0,0,0,0,0,232.2671448,0,0,11,0,0,0,6,92,1,1,0,4.674829502,2.63905733,3.794487679,5.262491672,21,1440,1419,0.826923077,94,0,13,0.933272496,0,0,79,47,0.027389277,11,0.006410256,21,0.012237762,0.046037296,29,0.016899767,26,0.015151515,77,0.044871795,46,0.026806527,1,0.000582751,110,0.064102564,37,0.021561772,0.275058275,0,0,2,0.001165501,1716,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0533_U1,WS0533,English,,,#NULL!,#NULL!,,6.67617144,0.74137931,25,0.137362637,4.929878045,2.807054562,1.110815316,3.112136751,1.016474314,0.088280953,0.079923389,0.168197845,0.013564003,-0.029515919,0.043079922,0.99999,0.622515956,0.585604368,0.085704815,2.78423795,10.27396346,4.801067185,0,1,1,0,1,0,0,0,4,0,0,0,2,0,0,0,0,3,0,1,0,3,0,11,0,0,0,0,0,176.2004116,0,0,7,5,2,0,8,47,0,3,0,4.289153958,3.044522438,4.521177133,5.048334422,35,1519,1484,0.867836257,48,0,16,1.015222451,0,0,68,46,0.026900585,8,0.004678363,14,0.008187135,0.039766082,26,0.015204678,8,0.004678363,25,0.014619883,21,0.012280702,1,0.000584795,73,0.042690058,49,0.028654971,0.37251462,1,0.000584795,9,0.005263158,1710,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0533_U2,WS0533,English,,,#NULL!,#NULL!,,6.332459508,0.683333333,17,0.118055556,4.779590238,3.084542366,3.303273881,3.081195518,3.138549423,0.110699329,0.032236664,0.142919746,0.02002437,-0.007311129,0.0273355,0.9972,0.604960726,0.515630349,-0.108582781,2.721588984,13.11677077,3.472831538,0,0,0,0,3,0,0,1,1,0,0,0,2,0,0,0,0,11,0,1,0,0,0,2,0,0,0,0,4,123.1489391,0,0,0,2,2,0,8,47,0,5,0,4.149795867,2.944438979,4.458884583,5.619087137,4,1121,1117,0.774618585,75,17,22,1.211029401,0,0,59,48,0.033287101,3,0.002080444,8,0.00554785,0.040915395,12,0.008321775,7,0.004854369,16,0.0110957,44,0.030513176,1,0.000693481,77,0.053398058,36,0.024965326,0.422330097,1,0.000693481,14,0.009708738,1442,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0534_U1,WS0534,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.726294369,0.830985915,14,0.102189781,4.636569827,2.989459761,3.249892904,3.317279434,3.201669768,0.113641697,0.02966537,0.14327661,0.017639594,-0.007563452,0.025203046,1,0.339371497,0.512323315,-0.44777031,2.829681823,15.66116083,2.954426801,0,1,0,0,1,0,0,0,2,2,0,0,1,0,0,0,0,10,1,4,0,3,0,2,0,0,1,0,6,123.4711662,0,0,16,0,0,0,4,62,0,5,0,4.580877493,2.302585093,4.331167244,4.875,5,816,811,0.687288136,75,9,16,1.163141152,0,0,36,34,0.028813559,0,0,2,0.001694915,0.030508475,18,0.015254237,12,0.010169492,23,0.019491525,61,0.051694915,2,0.001694915,81,0.068644068,40,0.033898305,0.388135593,2,0.001694915,3,0.002542373,1180,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0534_U2,WS0534,English,A teacher,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.656257923,0.767857143,12,0.094488189,4.559002564,3.160905588,1.325786072,3.432658697,1.228831843,0.110468865,0.042331246,0.152789461,0.018610224,-0.007241747,0.02585197,0.94822,0.252200132,0.593933706,-0.674892123,3.071352317,5.773503344,3.751711392,0,0,2,0,1,0,0,1,2,2,0,0,3,0,0,1,0,11,0,4,0,0,0,7,0,0,0,0,5,110.4252742,0,0,5,0,3,1,3,45,1,6,0,4.358843299,2.48490665,4.454256261,4.640724947,6,930,924,0.864359214,56,4,16,1.203230373,0,0,31,23,0.021515435,3,0.002806361,5,0.004677268,0.028999065,16,0.014967259,18,0.016838167,43,0.040224509,60,0.056127222,0,0,60,0.056127222,39,0.036482694,0.376052385,3,0.002806361,5,0.004677268,1069,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0536_U1,WS0536,History,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.529976024,0.657534247,36,0.165137615,5.112816449,2.89908787,2.913276842,3.285857081,2.793045222,0.122602264,0.065818655,0.188420919,0.030533141,-0.023501441,0.054034582,0.92396,0.462668899,0.548308721,-1.765948203,2.885974383,6.722728259,3.822041285,0,3,0,0,1,0,2,0,4,2,0,0,6,0,0,1,0,2,1,0,0,0,0,12,1,0,0,1,0,171.4133271,0,9,0,0,4,1,5,54,4,6,3,4.885711439,2.564949357,4.287420196,4.600232423,151,1678,1527,0.828091106,67,0,14,0.934103917,0,0,77,61,0.03308026,6,0.003253796,10,0.005422993,0.04175705,39,0.021149675,0,0,34,0.018438178,99,0.053687636,0,0,81,0.043926247,61,0.03308026,0.320498915,5,0.002711497,10,0.005422993,1844,Yes,,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0537_U1,WS0537,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.741697491,0.872340426,13,0.082278481,4.422190185,3.093406502,3.379790782,3.381764526,3.262474271,0.10342569,0.057747754,0.161173444,0.014552814,-0.021395528,0.035948342,1,0.526844615,0.652293061,-1.547790481,2.999878648,20.84720673,4.321430105,0,0,0,0,3,0,0,1,5,3,1,0,0,0,0,0,1,6,0,9,0,3,0,9,1,0,0,0,5,158.2738529,0,0,30,0,1,0,5,85,0,4,0,4.598223033,2.564949357,4.400938204,4.840433772,3,1094,1091,0.740162822,102,15,28,1.300941596,1,0.000678426,75,58,0.039348711,13,0.008819539,4,0.002713704,0.050881954,26,0.017639077,5,0.00339213,30,0.020352782,32,0.021709634,1,0.000678426,109,0.07394844,47,0.031886024,0.313432836,1,0.000678426,14,0.009497965,1474,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0537_U2,WS0537,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.674329454,0.763157895,9,0.103448276,4.648691981,3.250952087,2.65609792,3.378163516,2.435106341,0.119753508,0.022438447,0.142191955,0.031676136,-0.00546875,0.037144886,1,0.377115593,0.596337468,-0.685027318,2.554608585,7.457429588,3.870378484,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,42,0,0,0,1,0,1,0,0,0,0,1,87.50870498,0,0,0,0,1,1,5,31,0,1,0,3.977522603,2.564949357,3.941520246,5.070605187,16,624,608,0.775510204,27,0,13,1.245059202,0,0,13,10,0.012755102,1,0.00127551,2,0.00255102,0.016581633,7,0.008928571,5,0.006377551,51,0.06505102,54,0.068877551,1,0.00127551,48,0.06122449,15,0.019132653,0.428571429,1,0.00127551,1,0.00127551,784,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0537_U3,WS0537,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.75099976,0.852631579,19,0.098958333,4.604753432,2.726160776,2.128124116,3.231133679,1.986680517,0.086120301,0.053872506,0.139992807,0.010608553,-0.040279605,0.050888158,0.89439,0.50305114,0.621285275,-1.501033244,2.953614621,18.93161389,5.263475878,0,3,1,0,0,0,1,2,5,0,0,0,0,0,0,0,1,16,0,2,0,1,0,1,0,0,0,0,0,181.113064,0,0,10,0,3,0,6,85,0,4,0,4.471974871,2.833213344,4.253298554,5.159274194,4,1496,1492,0.864927536,90,16,21,1.119714792,0,0,70,53,0.030724638,12,0.006956522,5,0.002898551,0.04057971,33,0.019130435,32,0.018550725,19,0.011014493,57,0.033043478,1,0.00057971,112,0.064927536,64,0.037101449,0.301449275,2,0.00115942,1,0.00057971,1725,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0540_U1,WS0540,English,A teacher,A lot,1,1,I completed the assignment on a tablet (such as an iPad).,6.729829963,0.824324324,37,0.209039548,5.347295837,3.211731228,3.343936888,3.228961908,3.22565277,0.072606652,0.094698378,0.16729825,0.009525424,-0.044152542,0.053677966,0.89825,0.509296038,0.664109881,0.612034909,2.988930929,12.04663235,3.674538007,0,0,0,0,0,0,2,0,7,1,1,0,2,0,0,0,0,8,2,1,0,5,0,5,2,0,0,0,0,141.4133306,0,0,8,1,4,0,4,64,0,6,0,4.797167008,2.48490665,4.599999101,4.665749656,62,1366,1304,0.803945746,58,0,14,0.983685784,3,0.001849568,47,27,0.016646116,9,0.005548705,11,0.006781751,0.028976572,21,0.012946979,8,0.004932182,27,0.016646116,61,0.037607891,1,0.000616523,88,0.054254007,19,0.011713933,0.39025894,4,0.002466091,6,0.003699137,1622,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0540_U2,WS0540,English,A teacher,A lot,1,1,I completed the assignment on a tablet (such as an iPad).,6.717161713,0.801324503,42,0.117647059,4.776153194,2.710829379,3.384843001,3.072136155,3.250142285,0.107348707,0.033547631,0.140888713,0.020796798,-0.006271445,0.027068242,1,0.54052643,0.580456956,0.243585026,2.732442773,21.08660941,4.70737857,0,2,0,0,20,0,7,2,19,2,1,0,2,0,0,0,0,24,6,7,0,13,0,14,0,0,0,0,2,254.8361492,0,0,16,0,3,0,11,129,6,3,2,4.368296442,3.496507561,4.212749458,4.826804916,260,2660,2400,0.831024931,151,0,23,0.952501311,0,0,102,71,0.024584488,20,0.006925208,11,0.003808864,0.03531856,49,0.016966759,15,0.005193906,98,0.033933518,132,0.045706371,6,0.002077562,184,0.063711911,67,0.023199446,0.289819945,6,0.002077562,11,0.003808864,2888,Unsure,Yes,3,Reflect,Annotator1,Final,N/A,N/A
WS0541_U1,WS0541,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.76882906,0.821428571,17,0.085427136,4.459301697,2.923315807,2.347853853,3.430963736,1.885183414,0.106530484,0.032398188,0.138928672,0.025839793,-0.007073643,0.032913437,0.9131,0.233826282,0.577203734,-0.812779649,2.693258476,14.56501734,8.102482618,0,3,1,0,2,0,1,3,8,0,0,0,2,0,0,0,0,46,0,4,0,1,0,4,0,0,0,0,3,216.6201183,0,0,17,0,1,2,6,74,0,1,1,4.566948973,2.772588722,3.415085954,4.618831169,1,1411,1410,0.803876853,71,15,17,1.029064323,0,0,83,58,0.033067275,14,0.007981756,11,0.00627138,0.04732041,37,0.021094641,27,0.015393387,66,0.037628278,90,0.051311288,1,0.000570125,102,0.058152794,42,0.023945268,0.237172178,1,0.000570125,6,0.003420753,1754,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0541_U2,WS0541,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.674329454,0.763157895,9,0.103448276,4.648691981,3.250952087,2.65609792,3.378163516,2.435106341,0.119753508,0.022438447,0.142191955,0.031676136,-0.00546875,0.037144886,1,0.377115593,0.596337468,-0.685027318,2.554608585,7.457429588,3.870378484,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,42,0,0,0,1,0,1,0,0,0,0,1,87.50870498,0,0,0,0,1,1,5,31,0,1,0,3.977522603,2.564949357,3.941520246,5.070605187,16,624,608,0.775510204,27,0,13,1.245059202,0,0,13,10,0.012755102,1,0.00127551,2,0.00255102,0.016581633,7,0.008928571,5,0.006377551,51,0.06505102,54,0.068877551,1,0.00127551,48,0.06122449,15,0.019132653,0.428571429,1,0.00127551,1,0.00127551,784,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0541_U3,WS0541,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.75099976,0.852631579,19,0.098958333,4.604753432,2.726160776,2.128124116,3.231133679,1.986680517,0.086120301,0.053872506,0.139992807,0.010608553,-0.040279605,0.050888158,0.89439,0.50305114,0.621285275,-1.501033244,2.953614621,18.93161389,5.263475878,0,3,1,0,0,0,1,2,5,0,0,0,0,0,0,0,1,16,0,2,0,1,0,1,0,0,0,0,0,181.113064,0,0,10,0,3,0,6,85,0,4,0,4.471974871,2.833213344,4.253298554,5.159274194,4,1496,1492,0.864927536,90,16,21,1.119714792,0,0,70,53,0.030724638,12,0.006956522,5,0.002898551,0.04057971,33,0.019130435,32,0.018550725,19,0.011014493,57,0.033043478,1,0.00057971,112,0.064927536,64,0.037101449,0.301449275,2,0.00115942,1,0.00057971,1725,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0542_U1,WS0542,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.697963134,0.833333333,28,0.167664671,5.127912547,3.30857289,2.158793374,2.889468949,2.04492209,0.090796562,0.037804254,0.128600816,0.017366107,-0.010331735,0.027697842,0.99882,0.575204342,0.495720617,0.301074882,2.690395066,14.63098997,2.897951595,0,3,2,0,4,0,2,0,9,1,0,0,2,0,0,0,0,8,1,3,0,5,0,5,0,0,0,0,4,130.2905111,0,0,15,0,3,0,4,63,2,3,0,4.483002552,2.63905733,4.406060292,5.233252623,40,1369,1329,0.912774725,67,10,21,1.188171025,0,0,25,17,0.011675824,2,0.001373626,6,0.004120879,0.01717033,20,0.013736264,9,0.006181319,50,0.034340659,27,0.018543956,0,0,82,0.056318681,20,0.013736264,0.445741758,0,0,3,0.00206044,1456,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0542_U2,WS0542,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.674329454,0.763157895,9,0.103448276,4.648691981,3.250952087,2.65609792,3.378163516,2.435106341,0.119753508,0.022438447,0.142191955,0.031676136,-0.00546875,0.037144886,1,0.377115593,0.596337468,-0.685027318,2.554608585,7.457429588,3.870378484,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,42,0,0,0,1,0,1,0,0,0,0,1,87.50870498,0,0,0,0,1,1,5,31,0,1,0,3.977522603,2.564949357,3.941520246,5.070605187,16,624,608,0.775510204,27,0,13,1.245059202,0,0,13,10,0.012755102,1,0.00127551,2,0.00255102,0.016581633,7,0.008928571,5,0.006377551,51,0.06505102,54,0.068877551,1,0.00127551,48,0.06122449,15,0.019132653,0.428571429,1,0.00127551,1,0.00127551,784,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0543_U1,WS0543,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.784973343,0.875,13,0.07027027,4.266479274,3.055247548,2.069264384,3.37674828,1.942287009,0.112812321,0.028676233,0.141488555,0.031297468,-0.005174051,0.036471519,0.98815,0.37674944,0.629919248,-1.88673878,2.960127449,11.04836202,5.639767013,0,2,2,0,1,0,2,1,4,3,0,0,1,0,0,0,0,4,0,7,0,5,0,4,1,0,0,1,1,234.3565475,0,0,10,1,3,0,4,73,0,3,0,4.950692258,2.397895273,4.064110811,4.882882883,4,1609,1605,0.913488902,94,17,15,0.979424508,0,0,59,37,0.021058623,10,0.00569152,12,0.006829824,0.033579966,36,0.020489471,11,0.006260672,43,0.024473534,57,0.032441662,1,0.000569152,97,0.05520774,59,0.033579966,0.245304496,2,0.001138304,6,0.003414912,1757,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0543_U2,WS0543,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.657193233,0.772727273,17,0.11038961,4.713034059,2.93451635,3.588484246,3.28267514,3.407342242,0.063753332,0.106451573,0.170204905,0.007211538,-0.021509972,0.02872151,0.99341,0.395381804,0.677874246,-0.968754672,2.957438171,15.4825121,4.710801969,0,5,2,0,1,0,0,0,8,4,1,0,3,0,0,0,0,5,0,4,3,1,1,9,0,0,0,0,1,152.1284847,0,0,19,0,2,1,7,74,0,4,2,4.408152939,2.833213344,3.879974749,4.9247851,1,1452,1451,0.902363184,95,14,49,1.49793313,0,0,68,43,0.026741294,12,0.007462687,13,0.008084577,0.042288557,41,0.025497512,20,0.012437811,59,0.036691542,72,0.044776119,1,0.000621891,102,0.063432836,72,0.044776119,0.280472637,1,0.000621891,5,0.003109453,1608,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0544_U1,WS0544,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.772230398,0.880434783,28,0.115702479,4.759627784,2.724611057,2.45641469,3.134141207,1.825039975,0.099568863,0.047673193,0.147236473,0.01440536,-0.034561697,0.048967058,0.95808,0.593088633,0.677231575,-0.731331558,2.835096164,14.5692948,6.225132754,0,1,1,0,2,0,0,0,5,2,0,0,2,0,0,0,1,7,1,4,0,1,0,3,1,0,0,0,3,185.6532659,0,0,23,0,0,2,5,85,0,0,0,4.774068722,2.708050201,4.489077284,5.224099099,6,1848,1842,0.896786758,105,14,21,1.05014585,0,0,82,49,0.023855891,14,0.006815969,19,0.009250243,0.039922103,37,0.018013632,11,0.005355404,46,0.022395326,45,0.021908471,0,0,108,0.052580331,70,0.034079844,0.315968841,3,0.001460565,4,0.00194742,2054,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0544_U2,WS0544,English,,,#NULL!,#NULL!,,6.745276133,0.86746988,11,0.061452514,4.134406491,2.85694476,2.566824177,3.176837453,1.904151994,0.123594153,0.041373115,0.164967268,0.025017544,-0.007245614,0.032263158,1,0.572835865,0.639637338,-0.414797012,2.903189279,16.3840801,3.451483783,0,2,2,0,1,0,1,0,13,2,0,0,1,0,0,0,0,9,0,2,0,1,0,7,0,0,0,0,2,143.4441591,0,0,11,0,0,2,4,75,0,2,0,4.77139059,2.48490665,4.37959812,5.206774876,46,1271,1225,0.740181269,52,0,16,1.028069724,7,0.004229607,75,43,0.025981873,21,0.012688822,11,0.006646526,0.045317221,36,0.021752266,10,0.006042296,34,0.020543807,40,0.024169184,1,0.00060423,99,0.059818731,54,0.032628399,0.328096677,2,0.001208459,4,0.002416918,1655,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0545_U1,WS0545,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.713431858,0.857142857,21,0.14,4.94875989,2.716315165,3.384940473,3.112857319,3.288927202,0.106767167,0.039566657,0.146327002,0.012210095,-0.008577763,0.020787858,0.99999,0.591510734,0.692027483,-0.370909754,2.867212036,22.17488154,4.515890901,0,0,0,0,0,0,1,2,11,0,0,0,1,0,0,0,0,30,0,2,0,1,2,10,0,0,0,0,5,151.8739007,0,0,24,0,1,2,6,81,0,2,0,4.437795194,2.833213344,4.804168617,5.617524339,8,1316,1308,0.766256591,62,0,20,1.104366285,2,0.001171646,64,46,0.026947862,17,0.009958992,1,0.000585823,0.037492677,31,0.018160516,8,0.004686585,55,0.032220269,50,0.029291154,1,0.000585823,107,0.06268307,62,0.036321031,0.356766257,5,0.002929115,4,0.002343292,1707,Yes,Yes,1,Persuade,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0545_U2,WS0545,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.741697491,0.872340426,13,0.082278481,4.422190185,3.093406502,3.379790782,3.381764526,3.262474271,0.102731781,0.057747754,0.160479535,0.014552814,-0.021395528,0.035948342,1,0.523646234,0.647745442,-1.547790481,2.993124095,20.53712185,4.327793697,0,0,0,0,3,0,0,1,5,3,1,0,0,0,0,0,1,6,0,9,0,3,0,9,1,0,0,0,5,158.2738734,0,0,30,0,1,0,5,85,0,4,0,4.598223033,2.564949357,4.39941893,4.841208366,3,1094,1091,0.740162822,102,15,28,1.300941596,1,0.000678426,75,58,0.039348711,13,0.008819539,4,0.002713704,0.050881954,26,0.017639077,5,0.00339213,30,0.020352782,32,0.021709634,1,0.000678426,109,0.07394844,47,0.031886024,0.313432836,1,0.000678426,14,0.009497965,1474,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0545_U3,WS0545,English,Someone else,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.768515749,0.78125,12,0.096,4.574710979,3.06614003,3.353119045,3.090536772,3.233838246,0.090742469,0.077359891,0.16810236,0.012580645,-0.042926267,0.055506912,1,0.597321135,0.698534319,-0.596607758,2.926032018,15.65896215,5.730971341,0,0,0,1,1,0,0,1,9,1,0,0,1,0,0,0,0,9,0,2,0,1,0,2,2,0,0,0,2,141.3611454,0,0,16,2,2,0,5,55,0,3,1,4.408593662,2.564949357,4.488589831,5.345505618,51,1041,990,0.776470588,45,0,18,1.179484202,2,0.001568627,42,34,0.026666667,6,0.004705882,2,0.001568627,0.032941176,22,0.017254902,13,0.010196078,26,0.020392157,69,0.054117647,1,0.000784314,79,0.061960784,45,0.035294118,0.36,0,0,5,0.003921569,1275,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0546_U1,WS0546,English,No one helped me,Somewhat,0,0,I completed the assignment on a laptop or desktop computer.,6.699977936,0.761904762,16,0.115942029,4.761678333,3.047705208,2.883004727,3.192745166,2.608554598,0.079065879,0.030919091,0.109984969,0.01231737,-0.003713474,0.016030844,0.92464,0.377359168,0.57454101,-0.018949267,2.822847213,7.493847274,2.752307598,0,2,1,0,1,0,1,0,4,4,0,0,2,1,0,0,0,6,1,3,0,2,0,9,1,0,0,0,1,131.4210166,0,5,0,0,2,0,4,52,3,4,0,4.536726614,2.564949357,4.165396087,4.900329489,7,1206,1199,0.853988604,63,6,49,1.555097895,3,0.002136752,42,30,0.021367521,4,0.002849003,8,0.005698006,0.02991453,22,0.015669516,14,0.00997151,35,0.024928775,33,0.023504274,1,0.000712251,69,0.049145299,50,0.035612536,0.36039886,3,0.002136752,2,0.001424501,1404,Unsure,Yes,1,Persuade,Annotator1,Final,DUP,Duplicates
WS0546_U2,WS0546,English,No one helped me,Somewhat,0,0,I completed the assignment on a laptop or desktop computer.,6.63433967,0.767857143,20,0.108695652,4.697709733,3.10726324,1.493678721,3.381721273,1.110838746,0.084164896,0.051299782,0.135464678,0.011492087,-0.022287114,0.033779201,0.95823,0.258550859,0.586018482,-2.406270188,2.7474102,5.620203795,3.818955248,1,7,0,0,3,2,2,4,5,7,5,0,3,0,0,1,0,9,2,2,0,0,2,7,0,0,0,1,0,181.8136651,1,0,5,1,3,1,6,47,0,2,0,4.353687676,2.833213344,3.69957196,4.577912254,88,999,911,0.63661775,51,0,7,0.770239456,0,0,109,71,0.049615653,9,0.006289308,29,0.020265549,0.07617051,34,0.023759609,12,0.008385744,66,0.046121593,119,0.08315863,0,0,66,0.046121593,46,0.032145353,0.284416492,1,0.000698812,17,0.011879804,1431,Unsure,Yes,2,Inform/Explore,Annotator1,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0547_U1,WS0547,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.702296109,0.720930233,26,0.247619048,5.515921796,3.320982912,1.874956283,3.544209326,1.791517703,0.098798294,0.031174592,0.129972885,0.022242424,-0.004515152,0.026757576,0.95803,0.268681576,0.586393411,-0.843991779,2.860118613,3.789739541,1.181875348,0,0,1,0,1,0,1,0,3,1,0,0,2,0,0,0,1,2,0,0,0,0,0,8,1,0,0,0,0,92.14961535,0,0,0,0,1,1,4,34,0,3,1,4.311409067,2.397895273,3.88325437,4.52195122,46,734,688,0.773903262,35,0,11,1.126243566,0,0,36,23,0.025871766,5,0.005624297,8,0.008998875,0.040494938,19,0.021372328,5,0.005624297,20,0.022497188,74,0.083239595,0,0,49,0.05511811,39,0.043869516,0.359955006,0,0,0,0,889,Yes,Yes,2,Inform/Explore,Annotator1,Draft,N/A,N/A
WS0547_U2,WS0547,English,Someone else,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.793338042,0.857142857,33,0.195266272,5.279472269,3.106114653,1.336349203,3.17212161,1.329872229,0.093183228,0.024281505,0.117464734,0.018094218,-0.003800857,0.021895075,0.95803,0.361516193,0.592841621,-0.903697072,2.753592308,10.63415735,3.581133021,0,2,0,0,2,0,1,0,5,2,0,0,2,0,0,0,1,16,0,2,0,1,0,12,1,0,0,0,1,127.3041297,0,0,8,1,1,0,4,62,0,3,1,4.932313327,2.302585093,4.273471522,4.744051911,43,1231,1188,0.762516046,68,0,17,1.075963717,2,0.001283697,53,34,0.02182285,8,0.005134788,11,0.007060334,0.034017972,31,0.019897304,8,0.005134788,41,0.026315789,91,0.058408216,2,0.001283697,80,0.051347882,50,0.032092426,0.324775353,2,0.001283697,2,0.001283697,1558,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0549_U1,WS0549,History,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.692357754,0.757894737,23,0.156462585,5.059187875,3.074460782,1.122427972,3.237941142,1.102045807,0.083154831,0.069270905,0.152425736,0.013329563,-0.029449472,0.042779035,1,0.447685148,0.549393754,-0.355487684,2.935060513,19.51889703,2.822285423,0,2,2,0,2,0,1,1,8,1,0,0,4,0,0,0,0,5,0,10,1,12,0,2,0,0,0,0,3,186.825322,0,7,15,1,5,0,4,80,5,4,2,4.539488154,2.63905733,4.063241726,4.937452326,26,1424,1398,0.935742972,96,0,11,0.922350904,0,0,43,38,0.025435074,2,0.001338688,3,0.002008032,0.028781794,34,0.022757697,7,0.004685408,60,0.040160643,35,0.023427041,6,0.004016064,120,0.080321285,42,0.02811245,0.351405622,1,0.000669344,1,0.000669344,1494,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0552_U1,WS0552,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.699977936,0.761904762,16,0.115942029,4.761678333,3.047705208,2.883004727,3.192745166,2.608554598,0.079065879,0.030919091,0.109984969,0.01231737,-0.003713474,0.016030844,0.92464,0.377359168,0.57454101,-0.018949267,2.822847213,7.493847274,2.752307598,0,2,1,0,1,0,1,0,4,4,0,0,2,1,0,0,0,6,1,3,0,2,0,9,1,0,0,0,1,131.4210166,0,5,0,0,2,0,4,52,3,4,0,4.536726614,2.564949357,4.165396087,4.900329489,7,1206,1199,0.853988604,63,6,49,1.555097895,3,0.002136752,42,30,0.021367521,4,0.002849003,8,0.005698006,0.02991453,22,0.015669516,14,0.00997151,35,0.024928775,33,0.023504274,1,0.000712251,69,0.049145299,50,0.035612536,0.36039886,3,0.002136752,2,0.001424501,1404,Unsure,Yes,1,Persuade,Annotator1,Final,DUP,Duplicates
WS0552_U2,WS0552,English,A teacher,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.63433967,0.767857143,20,0.108695652,4.697709733,3.10726324,1.493678721,3.381721273,1.110838746,0.084164896,0.051299782,0.135464678,0.011492087,-0.022287114,0.033779201,0.95823,0.258550859,0.586018482,-2.406270188,2.7474102,5.620203795,3.818955248,1,7,0,0,3,2,2,4,5,7,5,0,3,0,0,1,0,9,2,2,0,0,2,7,0,0,0,1,0,181.8136651,1,0,5,1,3,1,6,47,0,2,0,4.353687676,2.833213344,3.69957196,4.577912254,88,999,911,0.63661775,51,0,7,0.770239456,0,0,109,71,0.049615653,9,0.006289308,29,0.020265549,0.07617051,34,0.023759609,12,0.008385744,66,0.046121593,119,0.08315863,0,0,66,0.046121593,46,0.032145353,0.284416492,1,0.000698812,17,0.011879804,1431,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0553_U1,WS0553,English,No one helped me,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.63433967,0.767857143,20,0.108695652,4.697709733,3.10726324,1.493678721,3.381721273,1.110838746,0.084164896,0.051299782,0.135464678,0.011492087,-0.022287114,0.033779201,0.95823,0.258550859,0.586018482,-2.406270188,2.7474102,5.620203795,3.818955248,1,7,0,0,3,2,2,4,5,7,5,0,3,0,0,1,0,9,2,2,0,0,2,7,0,0,0,1,0,181.8136651,1,0,5,1,3,1,6,47,0,2,0,4.353687676,2.833213344,3.69957196,4.577912254,88,999,911,0.63661775,51,0,7,0.770239456,0,0,109,71,0.049615653,9,0.006289308,29,0.020265549,0.07617051,34,0.023759609,12,0.008385744,66,0.046121593,119,0.08315863,0,0,66,0.046121593,46,0.032145353,0.284416492,1,0.000698812,17,0.011879804,1431,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0554_U1,WS0554,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.722543409,0.873786408,29,0.165714286,5.116281483,3.228060536,1.161923136,3.09145878,1.085063652,0.103644636,0.032710737,0.13634241,0.020123137,-0.010790668,0.030913804,0.98165,0.391245486,0.582797703,-0.98548416,2.70202965,21.00197166,4.834410364,0,0,3,0,0,0,0,0,6,4,0,0,1,0,0,0,0,16,0,1,0,3,0,2,2,0,0,0,5,165.4087898,0,0,13,0,0,1,8,92,0,2,0,4.439377931,2.890371758,4.329514171,4.859016393,198,1611,1413,0.779371208,94,0,27,1.201190675,8,0.004412576,49,40,0.022062879,5,0.00275786,4,0.002206288,0.027027027,28,0.015444015,8,0.004412576,41,0.022614451,53,0.029233315,1,0.000551572,127,0.070049641,40,0.022062879,0.34528406,1,0.000551572,3,0.001654716,1813,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0554_U2,WS0554,English,No one helped me,Somewhat,1,1,I completed the assignment on a tablet (such as an iPad).,6.595538508,0.708860759,12,0.070175439,4.265147795,3.182323074,2.790482334,3.151291934,2.629673971,0.125519547,0.038556678,0.164076224,0.028117359,-0.012897311,0.04101467,1,0.452636935,0.652930213,-0.180669836,2.855837108,17.43671341,2.758177126,0,0,4,0,0,0,0,0,4,1,0,0,2,0,0,0,3,19,0,5,1,8,0,1,1,0,0,1,4,111.7382321,0,0,24,1,1,0,8,63,4,3,1,3.918667548,3.17805383,4.283288435,5.107615894,2,1205,1203,0.838912134,93,24,36,1.416717085,2,0.0013947,57,42,0.029288703,8,0.005578801,7,0.00488145,0.039748954,27,0.018828452,3,0.00209205,32,0.022315202,47,0.032775453,1,0.00069735,103,0.071827057,29,0.020223152,0.370990237,0,0,6,0.0041841,1434,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0556_U1,WS0556,English,No one helped me,A lot,1,0,I completed the assignment on a laptop or desktop computer.,6.314973391,0.53125,9,0.081081081,4.407707552,3.027390213,0.751495143,3.141537525,0.836814199,0.138922911,0.050600913,0.189523824,0.023424797,-0.010238821,0.033663618,0.84668,0.630098369,0.709098293,-0.202956197,2.87537896,1.347297105,2.918289551,0,0,0,0,0,0,0,1,2,0,0,0,2,0,0,0,0,8,0,0,0,0,0,1,0,0,0,0,3,101.9710743,0,0,0,1,0,0,3,17,5,7,0,4.807090101,2.079441542,4.106803381,5.258426966,1,987,986,0.90375802,35,4,17,1.219637823,0,0,55,47,0.043079743,6,0.005499542,2,0.001833181,0.050412466,25,0.022914757,0,0,18,0.016498625,20,0.018331806,0,0,36,0.03299725,43,0.039413382,0.367552704,2,0.001833181,2,0.001833181,1091,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0557_U1,WS0557,History,No one helped me,A little,1,0,I completed the assignment on a laptop or desktop computer.,6.662060839,0.78021978,46,0.169741697,5.140151873,2.723604161,2.996943551,3.30516742,2.949518189,0.096845038,0.069712444,0.166557482,0.014315581,-0.029038292,0.043353873,0.9613,0.514585644,0.614250209,-3.078739693,3.014393768,6.050511946,5.96180936,0,0,1,0,0,0,0,1,7,3,0,0,2,0,0,0,0,1,2,0,0,0,0,8,0,0,0,1,0,167.7796155,0,0,0,1,6,0,5,71,6,9,0,5.227089857,2.48490665,4.295337644,4.58836689,18,2047,2029,0.823123732,86,10,13,0.797533001,0,0,133,108,0.043813387,10,0.004056795,15,0.006085193,0.053955375,58,0.023529412,3,0.001217039,32,0.012981744,101,0.040973631,0,0,105,0.042596349,70,0.028397566,0.294117647,3,0.001217039,8,0.003245436,2465,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0558_U1,WS0558,English,No one helped me,A lot,0,0,I completed the assignment on a laptop or desktop computer.,6.6163026,0.742268041,29,0.162011173,5.093818746,3.008943327,1.100015958,3.138540153,1.092321098,0.111496922,0.01872564,0.130222561,0.01841637,-0.001797153,0.020213523,0.96904,0.434122526,0.572194248,-1.532147684,2.628095186,23.15550231,4.080068181,1,0,2,0,2,0,1,0,9,2,0,0,3,0,0,0,0,16,1,4,0,6,0,4,0,0,0,0,2,159.4031979,0,5,13,0,0,0,10,80,0,5,2,4.092168283,3.135494216,4.325458479,5.045751634,4,1138,1134,0.693154034,108,19,32,1.313021044,3,0.001833741,32,18,0.011002445,5,0.003056235,9,0.005501222,0.019559902,27,0.016503667,15,0.009168704,41,0.025061125,49,0.0299511,1,0.000611247,115,0.070293399,36,0.02200489,0.383863081,1,0.000611247,3,0.001833741,1636,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0558_U2,WS0558,English,No one helped me,A lot,1,0,I completed the assignment on a laptop or desktop computer.,6.791346799,0.896103896,9,0.054216867,4.011268477,2.960783344,2.30233577,3.237600462,2.056456327,0.147176308,0.036198483,0.18337479,0.041393114,-0.008066453,0.049459568,0.85972,0.382883676,0.523691943,-2.007103428,2.942075606,15.85390746,5.027539346,0,0,0,0,0,0,1,0,3,0,0,0,1,0,0,0,1,5,0,5,0,3,0,4,0,0,1,0,8,110.1178096,0,7,18,1,0,0,5,71,0,1,0,4.822697999,2.302585093,4.595932621,4.93081255,36,1339,1303,0.870407482,62,0,15,1.042183174,1,0.000668003,56,32,0.021376086,6,0.004008016,18,0.012024048,0.03740815,17,0.011356045,16,0.010688043,24,0.016032064,65,0.043420174,2,0.001336005,91,0.060788243,43,0.028724115,0.384101536,0,0,9,0.006012024,1497,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0564_U1,WS0564,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.574351969,0.6875,8,0.095238095,4.56682528,3.430031811,3.227374235,3.218749055,2.966448379,0.124060721,0.033787248,0.157767583,0.015434084,-0.005868167,0.021302251,0.94246,0.349930442,0.581998031,-0.077018064,2.794152728,3.022192676,2.414986502,0,0,0,0,1,0,0,0,2,0,0,0,1,0,0,0,0,5,0,0,0,0,0,0,1,0,0,0,1,95.49600001,0,0,0,0,0,1,4,24,0,3,0,4.03504482,2.397895273,3.495116684,5.133440514,16,610,594,0.828451883,31,0,11,1.213297274,0,0,39,25,0.034867503,7,0.009762901,7,0.009762901,0.054393305,9,0.012552301,5,0.006973501,13,0.018131102,43,0.059972106,0,0,37,0.051603905,14,0.019525802,0.408647141,0,0,5,0.006973501,717,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0564_U2,WS0564,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.786282753,0.886363636,27,0.131707317,4.88814608,2.974202066,1.051970896,3.130363453,1.032535077,0.116211167,0.04832492,0.164516795,0.016688103,-0.01107717,0.027765273,0.91416,0.536228174,0.643436085,-0.138455409,2.910966205,15.03051687,5.852466727,0,0,1,0,1,0,3,0,11,1,0,0,1,0,0,0,1,17,0,8,1,2,0,4,1,0,0,1,2,137.9172292,0,0,8,1,1,0,3,80,0,5,0,5.260745294,2.079441542,4.356888281,5.142115509,2,1513,1511,0.842251951,82,10,22,1.122645019,3,0.001672241,75,61,0.03400223,5,0.002787068,9,0.005016722,0.04180602,37,0.020624303,21,0.011705686,54,0.030100334,60,0.033444816,1,0.000557414,98,0.054626533,45,0.025083612,0.339464883,1,0.000557414,7,0.003901895,1794,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0565_U1,WS0565,History,No one helped me,A lot,0,0,I completed the assignment on a laptop or desktop computer.,6.715641626,0.772151899,34,0.156682028,5.060580522,2.977761652,2.452819519,3.241978929,1.867822217,0.080739019,0.068996032,0.149735051,0.011927933,-0.029497633,0.041425565,0.93246,0.52172903,0.570213301,-1.78788129,2.911981536,9.414548736,5.903386884,0,0,1,0,0,0,0,0,13,0,1,0,6,0,0,0,1,0,0,9,0,10,0,0,0,0,0,0,1,164.0221301,0,0,6,1,1,0,9,66,2,0,2,4.688104636,2.833213344,4.501715596,4.760151597,16,1572,1556,0.753146176,82,0,20,1.028593297,0,0,91,71,0.034365924,6,0.002904163,14,0.006776379,0.044046467,39,0.018877057,11,0.005324298,44,0.021297193,112,0.054211036,0,0,105,0.050822846,33,0.015972894,0.280735721,3,0.001452081,5,0.002420136,2066,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0566_U1,WS0566,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.625165638,0.785714286,34,0.176165803,5.177086035,3.120840415,1.418991178,3.236561664,1.017633102,0.09270815,0.079193373,0.171901524,0.018063774,-0.031163708,0.049227482,0.95679,0.445788291,0.525842322,-1.099055001,2.906093694,13.14927556,5.430911033,1,6,3,0,4,0,2,1,17,0,0,0,4,0,0,0,0,5,0,1,0,0,0,7,0,0,0,0,7,154.4192414,0,0,10,0,2,2,8,71,0,3,0,4.186355498,3.135494216,4.170473805,4.808988764,225,1366,1141,0.679571173,56,0,9,0.80347989,0,0,81,59,0.035139964,6,0.003573556,16,0.009529482,0.048243002,35,0.020845742,7,0.004169148,46,0.02739726,61,0.036331149,1,0.000595593,100,0.059559261,26,0.015485408,0.328767123,4,0.00238237,14,0.008338297,1679,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0566_U2,WS0566,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.71044951,0.845238095,12,0.073170732,4.306369621,2.982621459,1.16437475,3.111179837,1.101301406,0.092631071,0.107537376,0.200168447,0.010502755,-0.023312672,0.033815427,0.95988,0.504465535,0.679482366,-0.365510671,2.997951737,17.51280598,4.617943697,0,3,0,0,1,0,0,0,28,0,0,0,2,0,0,0,0,5,0,0,0,0,0,5,0,0,0,0,7,175.5336283,0,0,0,0,3,0,7,74,0,3,0,4.437795194,2.833213344,3.960586067,5.128650904,1,1108,1107,0.668882175,100,18,37,1.368407679,1,0.00060423,55,37,0.022356495,6,0.003625378,12,0.007250755,0.033232628,32,0.019335347,4,0.002416918,42,0.025377644,47,0.028398792,2,0.001208459,102,0.06163142,48,0.029003021,0.332326284,1,0.00060423,3,0.001812689,1655,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0567_U1,WS0567,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.741697491,0.872340426,13,0.082278481,4.422190185,3.093406502,3.379790782,3.381764526,3.262474271,0.10342569,0.057747754,0.161173444,0.014552814,-0.021395528,0.035948342,1,0.526844615,0.652293061,-1.547790481,2.999878648,20.84720673,4.321430105,0,0,0,0,3,0,0,1,5,3,1,0,0,0,0,0,1,6,0,9,0,3,0,9,1,0,0,0,5,158.2738529,0,0,30,0,1,0,5,85,0,4,0,4.598223033,2.564949357,4.400938204,4.840433772,3,1094,1091,0.740162822,102,15,28,1.300941596,1,0.000678426,75,58,0.039348711,13,0.008819539,4,0.002713704,0.050881954,26,0.017639077,5,0.00339213,30,0.020352782,32,0.021709634,1,0.000678426,109,0.07394844,47,0.031886024,0.313432836,1,0.000678426,14,0.009497965,1474,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0567_U2,WS0567,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.674329454,0.763157895,9,0.103448276,4.648691981,3.250952087,2.65609792,3.378163516,2.435106341,0.119753508,0.022438447,0.142191955,0.031676136,-0.00546875,0.037144886,1,0.377115593,0.596337468,-0.685027318,2.554608585,7.457429588,3.870378484,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,42,0,0,0,1,0,1,0,0,0,0,1,87.50870498,0,0,0,0,1,1,5,31,0,1,0,3.977522603,2.564949357,3.941520246,5.070605187,16,624,608,0.775510204,27,0,13,1.245059202,0,0,13,10,0.012755102,1,0.00127551,2,0.00255102,0.016581633,7,0.008928571,5,0.006377551,51,0.06505102,54,0.068877551,1,0.00127551,48,0.06122449,15,0.019132653,0.428571429,1,0.00127551,1,0.00127551,784,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0571_U1,WS0571,English,A teacher,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.712732261,0.818181818,22,0.166666667,5.121977881,2.952355067,1.091157891,3.187372481,0.974787386,0.13002507,0.030455047,0.160480117,0.030540541,-0.007374517,0.037915058,1,0.509446354,0.523730394,-0.492627112,2.655998305,13.7527407,2.683738824,0,0,0,0,0,0,0,0,11,0,0,0,1,0,0,0,0,18,0,4,0,4,0,1,0,0,0,0,2,167.7584759,0,0,15,0,2,3,4,68,0,1,1,4.672828834,2.48490665,4.468354528,5.190809969,34,799,765,0.518292683,58,0,12,0.960474645,11,0.007452575,46,32,0.021680217,4,0.002710027,10,0.006775068,0.031165312,19,0.012872629,12,0.008130081,27,0.018292683,44,0.029810298,1,0.000677507,82,0.055555556,29,0.019647696,0.339430894,0,0,2,0.001355014,1476,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0571_U2,WS0571,English,A teacher,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.760932816,0.821428571,13,0.100775194,4.622766399,3.298778632,3.328714103,3.197116552,3.21683873,0.10876678,0.02232652,0.13107418,0.021175908,-0.00210325,0.023279159,0.98073,0.431258534,0.579326887,-0.643799361,2.755519377,7.322956535,2.285292603,0,1,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,9,0,0,0,1,0,1,0,0,0,0,0,142.7945592,0,0,6,0,0,0,4,48,0,4,0,4.642465971,2.302585093,4.009344015,5.12716763,26,880,854,0.720675105,42,7,17,1.185994955,2,0.001687764,56,42,0.035443038,6,0.005063291,8,0.006751055,0.047257384,19,0.016033755,7,0.005907173,14,0.011814346,56,0.047257384,1,0.000843882,62,0.052320675,23,0.019409283,0.389029536,3,0.002531646,9,0.007594937,1185,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0572_U1,WS0572,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.425261229,0.608695652,7,0.098591549,4.601077315,3.27211996,3.218133527,3.086094726,3.178117861,0.100082038,0.04071799,0.140730342,0.010060976,-0.009973868,0.020034843,0.90936,0.286097549,0.534230254,-0.517080134,2.7688815,2.134730959,1.276705161,0,1,0,0,1,0,1,0,1,1,0,0,0,0,0,0,0,0,0,0,0,1,0,2,0,0,0,0,2,85.29513851,0,0,0,0,0,0,4,16,0,2,1,4.153661139,2.197224577,3.849664116,4.757417103,26,458,432,0.687898089,25,0,6,1.023422856,0,0,27,21,0.03343949,1,0.001592357,5,0.007961783,0.042993631,12,0.01910828,4,0.006369427,9,0.01433121,41,0.065286624,0,0,29,0.046178344,23,0.036624204,0.380573248,1,0.001592357,4,0.006369427,628,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0572_U2,WS0572,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.502719415,0.652173913,16,0.121212121,4.805758233,2.933668936,1.099931613,3.193840846,1.006865227,0.101246779,0.039799236,0.141030217,0.012657978,-0.009932859,0.022590837,0.85376,0.357733106,0.486580033,0.135668183,2.567317537,6.519451433,6.583069565,0,1,0,0,1,0,2,0,7,3,0,0,2,0,0,0,0,37,1,2,0,2,0,8,0,0,0,0,1,167.8352262,0,0,7,3,0,1,9,33,0,3,0,4.093550596,3.044522438,3.974637202,4.90548054,19,1186,1167,0.832976445,45,0,16,1.094136072,0,0,49,44,0.031406138,0,0,5,0.003568879,0.034975018,12,0.00856531,7,0.004996431,61,0.043540328,50,0.035688794,1,0.000713776,59,0.042112777,26,0.018558173,0.333333333,1,0.000713776,5,0.003568879,1401,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0573_U1,WS0573,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.741220757,0.838235294,35,0.24137931,5.490503897,2.872609976,3.321935854,3.336456481,3.161910515,0.07524073,0.074739113,0.149979843,0.01307947,-0.032201987,0.045281457,1,0.397916943,0.636458206,-0.59091028,2.819562808,12.78613274,4.209141778,0,1,0,0,1,0,1,1,5,2,0,0,2,0,0,0,0,44,0,6,0,6,0,3,1,0,0,0,4,128.6087321,0,0,15,1,4,0,3,61,0,4,0,4.689678433,2.397895273,4.009054282,4.82289056,3,1107,1104,0.80349345,75,8,31,1.37220963,0,0,53,35,0.025473071,4,0.002911208,14,0.010189229,0.038573508,23,0.016739447,12,0.008733624,56,0.040756914,46,0.033478894,1,0.000727802,77,0.056040757,41,0.029839884,0.345705968,1,0.000727802,3,0.002183406,1374,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0573_U2,WS0573,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.6919883,0.830985915,17,0.089473684,4.505059026,2.963339109,2.358590366,3.152752207,1.838925692,0.114449762,0.043805051,0.158254813,0.022816901,-0.012799296,0.035616197,0.99999,0.499723366,0.628873446,-0.813228275,2.842184797,12.36193333,6.124826287,0,0,1,0,0,0,0,0,7,0,0,1,1,0,0,0,0,7,2,1,0,5,0,4,0,0,0,0,1,166.0261814,0,0,12,1,1,0,4,63,0,4,0,4.689935453,2.564949357,4.339476918,5.167491166,90,1552,1462,0.899138991,61,0,14,0.982727279,0,0,62,48,0.029520295,1,0.000615006,13,0.00799508,0.038130381,31,0.019065191,21,0.012915129,33,0.020295203,38,0.023370234,0,0,82,0.050430504,52,0.03198032,0.326568266,4,0.002460025,6,0.003690037,1626,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0574_U1,WS0574,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.570253363,0.682352941,25,0.14619883,4.991784261,2.986019161,3.261728954,3.391911386,3.175262033,0.086997366,0.030231536,0.117221405,0.020127436,-0.005472264,0.0255997,1,0.367067985,0.584936267,-1.524887382,3.136276261,17.8556335,5.211658126,0,2,0,0,3,0,0,0,3,0,0,0,2,0,0,0,0,1,0,3,0,8,0,6,0,0,0,0,2,169.1156924,0,6,25,0,3,1,10,65,4,3,2,3.925774177,3.258096538,4.147443161,4.584218513,40,1310,1270,0.856950067,101,18,11,0.925435975,0,0,58,35,0.023616734,11,0.007422402,12,0.008097166,0.039136302,31,0.020917679,7,0.004723347,36,0.024291498,68,0.045883941,1,0.000674764,103,0.069500675,35,0.023616734,0.327935223,6,0.004048583,5,0.003373819,1482,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0574_U2,WS0574,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.537001541,0.711538462,11,0.103773585,4.651801688,3.320070928,3.310847292,3.366769937,3.101801698,0.115342698,0.045085055,0.160427753,0.013514851,-0.01549505,0.029009901,0.87236,0.365590676,0.550228224,-0.46576856,2.889889858,4.390621372,2.428976757,0,0,0,1,1,0,2,0,3,0,1,0,1,1,0,0,0,16,0,2,0,0,0,4,2,0,0,0,0,120.1213762,0,0,0,0,1,1,6,39,0,6,0,4.201703081,2.708050201,4.413826005,4.761477046,2,1008,1006,0.919561243,57,7,41,1.585202875,0,0,40,23,0.021023766,10,0.009140768,7,0.006398537,0.036563071,19,0.017367459,3,0.00274223,31,0.02833638,48,0.043875686,0,0,59,0.05393053,38,0.034734918,0.389396709,2,0.001828154,2,0.001828154,1094,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0580_U1,WS0580,English,No one helped me,A lot,0,1,I completed the assignment on a tablet (such as an iPad).,6.63433967,0.767857143,20,0.108695652,4.697709733,3.10726324,1.493678721,3.381721273,1.110838746,0.084164896,0.051299782,0.135464678,0.011492087,-0.022287114,0.033779201,0.95823,0.258550859,0.586018482,-2.406270188,2.7474102,5.620203795,3.818955248,1,7,0,0,3,2,2,4,5,7,5,0,3,0,0,1,0,9,2,2,0,0,2,7,0,0,0,1,0,181.8136651,1,0,5,1,3,1,6,47,0,2,0,4.353687676,2.833213344,3.69957196,4.577912254,88,999,911,0.63661775,51,0,7,0.770239456,0,0,109,71,0.049615653,9,0.006289308,29,0.020265549,0.07617051,34,0.023759609,12,0.008385744,66,0.046121593,119,0.08315863,0,0,66,0.046121593,46,0.032145353,0.284416492,1,0.000698812,17,0.011879804,1431,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0582_U1,WS0582,History,No one helped me,A lot,1,0,I completed the assignment on a laptop or desktop computer.,6.548241567,0.671232877,34,0.146551724,4.994178786,2.975175356,2.277636058,3.323119173,2.016155128,0.114713195,0.08293681,0.197650005,0.021834061,-0.031823144,0.053657205,0.93748,0.522993122,0.692331369,-2.910250166,3.053375263,6.511009914,4.278479993,0,0,1,0,1,0,0,0,8,0,0,0,4,0,1,0,0,0,0,2,1,0,0,3,1,0,1,0,0,174.285437,0,0,5,0,0,0,3,58,0,9,3,5.307166982,2.197224577,4.228159007,4.56222467,161,1829,1668,0.842849924,67,0,10,0.781974771,0,0,114,87,0.043961597,10,0.005053057,17,0.008590197,0.057604851,44,0.022233451,2,0.001010611,24,0.012127337,102,0.051541182,0,0,80,0.040424457,57,0.028802425,0.273875695,6,0.003031834,20,0.010106114,1979,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0583_U1,WS0583,History,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.627132112,0.75,35,0.172413793,5.155680606,3.056227515,2.106483623,3.384530863,2.014878991,0.088154021,0.076298907,0.164452928,0.01298229,-0.03730234,0.05028463,0.89825,0.363721515,0.569881108,-1.07542911,2.883597859,8.363374316,5.419906558,0,0,5,0,3,1,0,2,4,15,0,0,3,0,0,0,0,3,0,0,0,0,0,13,0,0,3,0,0,159.3744605,1,5,0,1,3,1,7,55,0,4,1,4.473541744,2.890371758,4.051745061,4.481622307,332,1439,1107,0.658536585,51,0,12,0.910550129,0,0,56,39,0.023200476,14,0.008328376,3,0.001784652,0.033313504,26,0.015466984,4,0.002379536,53,0.031528852,85,0.05056514,1,0.000594884,75,0.0446163,37,0.022010708,0.290303391,1,0.000594884,7,0.004164188,1681,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0585_U1,WS0585,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.535758067,0.7,7,0.076086957,4.34493409,2.87107989,2.579924067,3.328230864,2.418257197,0.100748754,0.031664797,0.132360571,0.01307947,-0.005596026,0.018675497,1,0.376217024,0.646442607,-0.375438246,2.679959184,6.956223666,3.199812518,0,0,0,0,1,0,3,0,8,0,0,0,1,0,0,0,0,8,0,0,0,2,0,4,0,0,0,0,2,114.7317173,0,0,8,1,0,2,4,31,0,3,0,3.979681654,2.63905733,3.688115897,5.040053405,6,551,545,0.622146119,19,0,14,1.229982064,2,0.002283105,33,26,0.029680365,3,0.003424658,4,0.00456621,0.037671233,12,0.01369863,0,0,16,0.01826484,28,0.03196347,1,0.001141553,50,0.057077626,25,0.028538813,0.367579909,1,0.001141553,6,0.006849315,876,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0585_U2,WS0585,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.653071699,0.75,18,0.152542373,5.033976574,3.278425428,3.26526235,3.379718105,3.117286006,0.121388873,0.034399961,0.15574434,0.026140156,-0.005144605,0.031284761,0.86655,0.357552448,0.460899729,-0.263668021,2.721921713,6.186542332,3.647536205,0,2,2,0,0,0,0,1,3,1,2,0,2,0,0,0,0,11,0,0,0,2,0,5,0,0,0,0,1,105.4911439,0,0,0,0,2,0,4,31,0,4,1,4.596241555,2.197224577,4.133661551,4.838565022,1,710,709,0.699211045,39,10,14,1.170458457,0,0,36,32,0.031558185,1,0.000986193,3,0.00295858,0.035502959,15,0.014792899,1,0.000986193,28,0.027613412,51,0.050295858,2,0.001972387,50,0.049309665,18,0.017751479,0.368836292,2,0.001972387,6,0.00591716,1014,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0589_U1,WS0589,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.760932816,0.818181818,13,0.100775194,4.622766399,3.298778632,3.328714103,3.197116552,3.21683873,0.10876678,0.02232652,0.13107418,0.021175908,-0.00210325,0.023279159,0.98073,0.430737456,0.579326887,-0.643799361,2.753756545,6.653413995,2.244771347,0,1,1,0,0,0,0,0,6,0,0,0,1,0,0,0,0,9,0,0,0,0,0,1,0,0,0,0,0,142.7945592,0,0,5,0,0,0,4,47,0,4,0,4.642465971,2.302585093,4.009344015,5.12716763,26,880,854,0.720675105,42,7,17,1.185994955,2,0.001687764,56,42,0.035443038,6,0.005063291,8,0.006751055,0.047257384,19,0.016033755,7,0.005907173,14,0.011814346,56,0.047257384,1,0.000843882,62,0.052320675,23,0.019409283,0.389029536,3,0.002531646,9,0.007594937,1185,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0589_U2,WS0589,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,5.963209758,0.455882353,17,0.094972067,4.564057181,3.148397068,2.148920042,3.231034905,2.327875382,0.120640161,0.030284315,0.150882488,0.016427572,-0.007085374,0.023512946,1,0.371344865,0.581971021,-1.300104291,2.807638004,18.86374123,3.834130315,0,0,1,0,3,0,7,0,7,2,0,0,2,0,0,0,0,10,0,10,0,9,0,10,1,0,3,0,4,154.2019694,0,0,18,3,1,0,8,48,1,2,9,4.42237793,2.833213344,3.609955494,5.015536723,5,989,984,0.610421836,61,13,17,1.062428006,8,0.004962779,50,45,0.027915633,0,0,5,0.003101737,0.03101737,16,0.009925558,4,0.00248139,45,0.027915633,65,0.040322581,1,0.000620347,81,0.050248139,32,0.019851117,0.293424318,0,0,5,0.003101737,1612,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0594_U1,WS0594,History,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.709272465,0.830508475,47,0.225961538,5.424780569,2.802361282,2.426909753,3.099683212,1.956581162,0.107282238,0.077530963,0.184807824,0.019126344,-0.037298387,0.056424731,0.92518,0.642917978,0.669433485,-0.7909344,2.975235464,3.683881629,5.584416974,1,1,0,0,0,0,1,2,8,0,0,0,2,0,0,0,1,6,0,0,0,0,0,3,0,0,1,0,5,171.4421127,0,0,0,1,1,0,4,52,0,3,0,5.105394358,2.397895273,4.611002046,5.106945976,19,1737,1718,0.831558567,64,0,20,1.028593297,0,0,88,73,0.035333979,3,0.001452081,12,0.005808325,0.042594385,37,0.017909003,10,0.004840271,31,0.01500484,84,0.040658277,0,0,67,0.032429816,48,0.023233301,0.337366893,2,0.000968054,8,0.003872217,2066,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0599_U1,WS0599,History,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.746918107,0.844036697,29,0.105072464,4.664122481,2.983873855,3.304340117,3.332460801,3.195865612,0.094935795,0.063988858,0.158924652,0.016602728,-0.023998295,0.040601023,0.9672,0.428312959,0.543188534,-2.319931637,3.055805276,9.343376676,5.686703964,0,0,0,1,1,0,0,0,10,0,0,0,6,0,0,0,0,0,0,7,0,1,0,7,0,0,0,0,5,211.0696945,0,4,5,0,1,1,9,95,0,4,0,4.654393157,3.091042453,4.329023224,4.541756815,29,2554,2525,0.988258317,119,0,18,0.905526577,0,0,119,92,0.036007828,12,0.004696673,15,0.005870841,0.046575342,47,0.018395303,6,0.002348337,39,0.015264188,130,0.050880626,1,0.000391389,123,0.0481409,75,0.029354207,0.304109589,6,0.002348337,12,0.004696673,2555,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0601_U1,WS0601,English,Someone else,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.403072575,0.59375,7,0.079545455,4.388821678,3.350675551,3.109444363,3.402562109,3.079083955,0.112547237,0.04502471,0.157550161,0.013017429,-0.006944444,0.019961874,0.84395,0.191813983,0.601839564,-1.277467871,2.857272979,2.360076968,2.834440158,1,0,1,0,0,0,1,1,4,1,0,0,2,0,0,0,0,3,1,0,0,0,0,8,4,0,0,0,0,102.992299,0,0,0,0,0,5,3,20,3,0,1,4.624972813,2.197224577,3.679615449,4.273420479,5,726,721,0.747925311,33,4,7,0.917054217,0,0,56,36,0.037344398,2,0.002074689,18,0.018672199,0.058091286,14,0.014522822,9,0.0093361,27,0.028008299,50,0.05186722,0,0,36,0.037344398,41,0.04253112,0.314315353,0,0,0,0,964,No,No,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0601_U2,WS0601,English,Someone else,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.35297463,0.611111111,18,0.087378641,4.48163032,3.045596285,2.289900078,3.307534571,1.894892673,0.101130904,0.035888131,0.137019034,0.012090559,-0.004608221,0.01669878,0.90951,0.251971482,0.595224791,-2.403442935,2.876592913,14.94431635,8.033725356,0,2,0,0,1,0,1,1,4,0,0,0,1,0,0,0,0,9,1,10,1,1,0,17,0,0,0,0,3,163.1358741,0,0,9,3,1,0,5,58,0,3,6,4.784924347,2.564949357,3.770590548,4.519922879,4,1646,1642,0.92454955,68,11,20,1.088535146,0,0,93,77,0.043355856,8,0.004504505,8,0.004504505,0.052364865,22,0.012387387,30,0.016891892,62,0.03490991,100,0.056306306,1,0.000563063,83,0.046734234,72,0.040540541,0.271959459,3,0.001689189,5,0.002815315,1776,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0603_U1,WS0603,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.63433967,0.767857143,20,0.108695652,4.697709733,3.10726324,1.493678721,3.381721273,1.110838746,0.084164896,0.051299782,0.135464678,0.011492087,-0.022287114,0.033779201,0.95823,0.258550859,0.586018482,-2.406270188,2.7474102,5.620203795,3.818955248,1,7,0,0,3,2,2,4,5,7,5,0,3,0,0,1,0,9,2,2,0,0,2,7,0,0,0,1,0,181.8136651,1,0,5,1,3,1,6,47,0,2,0,4.353687676,2.833213344,3.69957196,4.577912254,88,999,911,0.63661775,51,0,7,0.770239456,0,0,109,71,0.049615653,9,0.006289308,29,0.020265549,0.07617051,34,0.023759609,12,0.008385744,66,0.046121593,119,0.08315863,0,0,66,0.046121593,46,0.032145353,0.284416492,1,0.000698812,17,0.011879804,1431,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0604_U1,WS0604,English,"A parent, brother, sister or other relative",Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.749020847,0.822368421,55,0.170278638,5.143291691,2.691525008,2.428094833,3.120393328,1.811144002,0.083860859,0.06726251,0.151123369,0.012877426,-0.019680086,0.032557513,1,0.594816812,0.546222617,-1.317261197,2.71266233,36.64764178,10.90586359,0,0,2,0,1,0,2,2,11,7,0,0,6,0,0,0,1,34,0,4,0,19,0,16,5,0,0,0,11,256.801936,0,0,41,2,7,4,5,131,8,4,0,4.932313327,2.995732274,4.753685849,5.065609229,157,1574,1417,0.443644333,62,0,12,0.67733721,0,0,60,38,0.011897307,6,0.001878522,16,0.005009393,0.018785222,25,0.007827176,18,0.005635567,50,0.015654352,68,0.021289919,1,0.000313087,185,0.057921102,49,0.015341265,0.311208516,11,0.003443957,3,0.000939261,3194,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0606_U1,WS0606,English,No one helped me,A lot,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.543114533,0.666666667,14,0.11023622,4.711656052,3.235799921,3.589487575,3.371693989,3.483185741,0.13533505,0.03036821,0.165691509,0.018125734,-0.005640423,0.023766157,0.98405,0.364583701,0.535929494,-0.56750613,2.928489886,4.649961778,2.401858317,0,0,0,0,0,0,1,0,2,1,0,0,0,0,0,0,0,3,0,0,1,2,0,6,0,0,0,0,1,104.1607242,0,0,0,0,0,3,6,37,0,1,1,3.966747905,2.772588722,3.827534198,4.953846154,5,763,758,0.799578059,51,12,11,1.100486877,0,0,42,27,0.028481013,5,0.005274262,10,0.010548523,0.044303797,18,0.018987342,8,0.008438819,15,0.015822785,50,0.052742616,1,0.001054852,60,0.063291139,21,0.022151899,0.363924051,2,0.002109705,2,0.002109705,948,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0606_U3,WS0606,English,No one helped me,A lot,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.312241631,0.526315789,2,0.043478261,3.79500055,3.200000898,3.352840132,3.038140425,3.558433895,0.145538734,0.045677083,0.191215817,0.025078125,-0.006875,0.031953125,0.7678,0.202593866,0.51475,0.087772865,2.888288717,1.993671142,1.893625614,0,1,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,0,1,0,0,0,0,2,0,0,0,0,2,34.87932376,0,0,0,0,0,0,3,12,0,4,0,3.688879454,2.079441542,3.161186788,4.753125,12,320,308,0.860335196,20,0,8,1.36821934,0,0,17,13,0.036312849,2,0.005586592,2,0.005586592,0.047486034,9,0.025139665,6,0.016759777,10,0.027932961,21,0.058659218,1,0.002793296,23,0.06424581,9,0.025139665,0.508379888,1,0.002793296,0,0,358,No,No,3,Reflect,Annotator1,Final,N/A,N/A
WS0606_U4,WS0606,English,No one helped me,A lot,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.036004126,0.333333333,1,0.034482759,3.569046906,2.816953106,0.98082697,2.054548319,1.018789344,0.086643254,0.031654229,0.118297483,0.009235075,-0.006716418,0.015951493,0.84842,0.250686641,0.521401617,-0.365480728,2.983662816,4.556837505,0.696671068,1,0,1,0,1,0,1,0,4,2,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,42.77032239,0,0,5,0,1,3,4,8,0,2,1,3.500288284,2.079441542,3.010301235,4.98490566,195,214,19,0.063122924,10,0,4,1.155002947,0,0,9,4,0.013289037,1,0.003322259,4,0.013289037,0.029900332,4,0.013289037,4,0.013289037,14,0.046511628,10,0.033222591,2,0.006644518,23,0.07641196,8,0.026578073,0.508305648,1,0.003322259,0,0,301,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0606_U5,WS0606,English,No one helped me,A lot,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",5.98074945,0.333333333,4,0.2,5.303304908,2.721636964,3.073253833,1.979469473,3.217495626,0.098669119,0.023383085,0.122052204,0.021268657,-0.009079602,0.030348259,0.80659,0.258968915,0.456954545,-0.022385555,2.991544681,1.972528216,0.448406697,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,0,0,3,18.82106535,0,0,0,0,0,2,3,6,0,1,0,3.101092789,2.197224577,3.026497907,4.785,50,105,55,0.24122807,4,0,3,1.150998679,0,0,4,3,0.013157895,1,0.004385965,0,0,0.01754386,3,0.013157895,1,0.004385965,8,0.035087719,10,0.043859649,1,0.004385965,17,0.074561404,5,0.021929825,0.600877193,0,0,0,0,228,Unsure,Yes,1,Persuade,Annotator1,Final,N/A,N/A
WS0606_U6,WS0606,English,No one helped me,A lot,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.543114533,0.666666667,14,0.11023622,4.711656052,3.235799921,3.589487575,3.371693989,3.483185741,0.13533505,0.03036821,0.165691509,0.018125734,-0.005640423,0.023766157,0.98405,0.364583701,0.535929494,-0.56750613,2.928489886,4.649961778,2.401858317,0,0,0,0,0,0,1,0,2,1,0,0,0,0,0,0,0,3,0,0,1,2,0,6,0,0,0,0,1,104.1607242,0,0,0,0,0,3,6,37,0,1,1,3.966747905,2.772588722,3.827534198,4.953846154,5,763,758,0.799578059,51,12,11,1.100486877,0,0,42,27,0.028481013,5,0.005274262,10,0.010548523,0.044303797,18,0.018987342,8,0.008438819,15,0.015822785,50,0.052742616,1,0.001054852,60,0.063291139,21,0.022151899,0.363924051,2,0.002109705,2,0.002109705,948,No,Yes,2,Inform/Explore,Annotator1,Possible Duplicate,N/A,N/A
WS0607_U1,WS0607,English,A tutor,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.785043118,0.849056604,10,0.076923077,4.355722147,2.977638283,1.198950395,3.373898615,0.902749463,0.096197554,0.035870249,0.132067803,0.010233161,-0.004145078,0.014378238,1,0.385346142,0.660674461,-1.634611562,2.8688342,8.032242349,3.190049456,0,0,2,0,2,0,0,1,4,2,0,0,3,0,0,0,0,3,0,0,0,0,0,5,2,4,0,0,1,105.364824,0,0,0,1,1,1,4,47,0,1,0,4.850292644,2.197224577,4.107033166,4.849565217,84,1051,967,0.766851705,47,0,13,1.053434893,2,0.001586043,55,32,0.025376685,8,0.006344171,15,0.011895321,0.043616178,19,0.015067407,4,0.003172086,28,0.0222046,34,0.026962728,2,0.001586043,60,0.047581285,59,0.046788263,0.303727201,2,0.001586043,3,0.002379064,1261,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0607_U2,WS0607,English,A tutor,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.569307273,0.767857143,12,0.082758621,4.427939099,2.743144191,2.526827118,3.312663616,2.082002436,0.10819417,0.049691461,0.157885631,0.015801187,-0.010775223,0.026576409,1,0.386018359,0.611348929,-1.290803714,2.788586836,8.974879203,2.681014231,0,2,3,0,4,0,0,1,4,4,0,0,3,0,0,0,0,21,3,2,0,2,0,15,1,0,0,1,2,161.6542693,0,0,6,2,1,1,4,48,0,2,1,4.789005748,2.397895273,4.113567593,4.896369138,49,1117,1068,0.720647773,49,0,24,1.235385308,3,0.002024291,69,54,0.036437247,6,0.004048583,9,0.006072874,0.046558704,30,0.020242915,11,0.007422402,61,0.041160594,60,0.04048583,2,0.001349528,64,0.043184885,53,0.035762483,0.320512821,5,0.003373819,4,0.002699055,1482,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0608_U1,WS0608,English,Someone else,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.718012503,0.775510204,20,0.136054422,4.920378086,3.073633872,1.229304345,3.330753538,1.054099991,0.127214665,0.062198595,0.18941326,0.007976445,-0.016399001,0.024375446,0.91415,0.361265293,0.587607573,-1.340549582,2.829854268,7.037720374,4.55907947,0,0,1,0,3,0,2,3,10,2,0,0,3,0,0,0,0,9,0,0,0,1,0,12,0,0,0,0,6,162.4753892,0,0,0,4,3,0,6,40,0,3,0,4.605170186,2.63905733,4.513133413,4.901428571,9,1041,1032,0.671875,57,10,14,1.004947997,0,0,89,71,0.046223958,10,0.006510417,8,0.005208333,0.057942708,34,0.022135417,23,0.014973958,48,0.03125,44,0.028645833,1,0.000651042,59,0.038411458,53,0.034505208,0.275390625,5,0.003255208,3,0.001953125,1536,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0608_U2,WS0608,English,Someone else,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.693040314,0.827586207,18,0.085714286,4.462618642,3.066958567,1.097476484,3.357150102,1.02897929,0.081995794,0.03836642,0.120362214,0.011446503,-0.013404065,0.024850568,0.92369,0.295032513,0.516125698,-1.138724095,2.565749117,9.597697626,4.508439357,0,8,1,0,0,0,0,10,19,14,0,0,5,0,0,0,1,41,1,0,1,1,0,15,0,0,1,0,6,186.4933182,0,0,0,4,2,2,5,50,0,1,0,4.856228171,2.564949357,3.963987369,4.594853381,30,1581,1551,0.860232945,56,11,12,0.883977761,0,0,63,44,0.024403771,9,0.004991681,10,0.005546312,0.034941764,32,0.017748197,15,0.008319468,120,0.06655574,79,0.043815862,1,0.000554631,70,0.038824182,60,0.03327787,0.251802551,10,0.005546312,4,0.002218525,1803,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0608_U3,WS0608,English,,,#NULL!,#NULL!,,6.693040314,0.827586207,18,0.085714286,4.462618642,3.066958567,1.097476484,3.357150102,1.02897929,0.081995794,0.03836642,0.120362214,0.011446503,-0.013404065,0.024850568,0.92369,0.295032513,0.516125698,-1.138724095,2.565749117,9.597697626,4.508439357,0,8,1,0,0,0,0,10,19,14,0,0,5,0,0,0,1,41,1,0,1,1,0,15,0,0,1,0,6,186.4933182,0,0,0,4,2,2,5,50,0,1,0,4.856228171,2.564949357,3.963987369,4.594853381,30,1581,1551,0.860232945,56,11,12,0.883977761,0,0,63,44,0.024403771,9,0.004991681,10,0.005546312,0.034941764,32,0.017748197,15,0.008319468,120,0.06655574,79,0.043815862,1,0.000554631,70,0.038824182,60,0.03327787,0.251802551,10,0.005546312,4,0.002218525,1803,Yes,Yes,2,Inform/Explore,Annotator1,Possible Duplicate,N/A,N/A
WS0609_U1,WS0609,English,A teacher,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.741697491,0.872340426,13,0.082278481,4.422190185,3.093406502,3.379790782,3.381764526,3.262474271,0.10342569,0.057747754,0.161173444,0.014552814,-0.021395528,0.035948342,1,0.526844615,0.652293061,-1.547790481,2.999878648,20.84720673,4.321430105,0,0,0,0,3,0,0,1,5,3,1,0,0,0,0,0,1,6,0,9,0,3,0,9,1,0,0,0,5,158.2738529,0,0,30,0,1,0,5,85,0,4,0,4.598223033,2.564949357,4.400938204,4.840433772,3,1094,1091,0.740162822,102,15,28,1.300941596,1,0.000678426,75,58,0.039348711,13,0.008819539,4,0.002713704,0.050881954,26,0.017639077,5,0.00339213,30,0.020352782,32,0.021709634,1,0.000678426,109,0.07394844,47,0.031886024,0.313432836,1,0.000678426,14,0.009497965,1474,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0609_U2,WS0609,English,A teacher,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.674329454,0.763157895,9,0.103448276,4.648691981,3.250952087,2.65609792,3.378163516,2.435106341,0.119753508,0.022438447,0.142191955,0.031676136,-0.00546875,0.037144886,1,0.377115593,0.596337468,-0.685027318,2.554608585,7.457429588,3.870378484,0,0,1,0,0,0,0,0,5,0,0,0,2,0,0,0,0,42,0,0,0,1,0,1,0,0,0,0,1,87.50870498,0,0,0,0,1,1,5,31,0,1,0,3.977522603,2.564949357,3.941520246,5.070605187,16,624,608,0.775510204,27,0,13,1.245059202,0,0,13,10,0.012755102,1,0.00127551,2,0.00255102,0.016581633,7,0.008928571,5,0.006377551,51,0.06505102,54,0.068877551,1,0.00127551,48,0.06122449,15,0.019132653,0.428571429,1,0.00127551,1,0.00127551,784,Unsure,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0610_U1,WS0610,English,A teacher,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.754423467,0.850746269,29,0.185897436,5.230559995,2.852525251,1.006445284,3.110392954,1.064706261,0.097410286,0.051159195,0.148569481,0.015738592,-0.00891338,0.024651972,0.99875,0.597293114,0.698830891,-1.117265034,2.794155338,10.55998661,2.417808125,0,0,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,11,0,2,0,0,0,1,0,0,0,0,0,141.9038706,0,0,11,0,4,2,5,59,0,1,0,4.595896549,2.564949357,4.44620369,5.322204969,2,1209,1207,0.838776928,53,8,13,1.001476322,0,0,94,64,0.04447533,5,0.003474635,25,0.017373176,0.065323141,34,0.023627519,0,0,9,0.006254343,31,0.021542738,1,0.000694927,77,0.053509382,41,0.028492008,0.34885337,1,0.000694927,1,0.000694927,1439,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0610_U2,WS0610,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.692912203,0.767857143,23,0.182539683,5.212430898,3.031105998,1.122959754,3.061354655,1.322571884,0.111047092,0.057046643,0.168075285,0.019095941,-0.023777675,0.042873616,0.9276,0.616491367,0.67457012,-0.666005499,3.027619287,6.798471331,1.771619875,0,1,2,0,2,0,0,0,1,0,0,0,2,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,101.3393783,0,0,0,0,2,1,5,47,0,3,0,4.341018611,2.63905733,4.396141497,5.129302326,6,1078,1072,0.868719611,49,7,18,1.192754452,3,0.002431118,50,32,0.025931929,3,0.002431118,15,0.012155592,0.040518639,29,0.02350081,3,0.002431118,12,0.009724473,29,0.02350081,1,0.000810373,64,0.051863857,32,0.025931929,0.412479741,0,0,0,0,1234,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0611_U1,WS0611,History,No one helped me,Somewhat,1,1,I completed the assignment on a tablet (such as an iPad).,6.689748176,0.794117647,50,0.20242915,5.315317786,2.735842486,2.478965996,3.186438904,1.81846349,0.094144609,0.104115305,0.198255267,0.015009294,-0.044098513,0.059107807,0.89744,0.614847106,0.620136626,-2.045937492,2.932611596,4.969121287,7.597943639,0,0,2,0,2,0,0,1,8,1,0,0,2,0,0,0,1,3,0,2,0,2,0,9,0,0,1,0,3,186.0117449,0,0,0,8,2,1,4,58,0,4,1,5.098927901,2.564949357,4.59939978,4.790140845,36,2190,2154,0.907329402,80,0,28,1.107021274,0,0,117,83,0.034962089,16,0.00673968,18,0.00758214,0.049283909,34,0.01432182,9,0.00379107,40,0.0168492,102,0.042965459,0,0,83,0.034962089,59,0.02485257,0.309182814,3,0.00126369,19,0.00800337,2374,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0613_U1,WS0613,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.72024839,0.805555556,41,0.112637363,4.733012349,2.702225642,3.647697339,3.140038527,3.546014678,0.112225844,0.025060286,0.137282503,0.023603555,-0.007825535,0.03142909,0.94511,0.497068838,0.522574999,-0.770116851,2.613560242,17.23689707,8.235591333,2,3,3,0,6,0,4,2,11,4,0,0,2,0,0,0,0,60,0,0,0,3,0,8,0,0,1,0,2,243.9372973,1,0,8,0,2,0,9,124,6,4,1,4.482090892,3.433987204,3.998903986,4.832178037,147,2854,2707,0.867350208,137,0,33,1.063465996,1,0.00032041,99,58,0.018583787,27,0.008651073,14,0.004485742,0.031720602,65,0.020826658,6,0.001922461,99,0.031720602,137,0.043896187,3,0.00096123,168,0.053828901,85,0.027234861,0.300544697,4,0.00128164,4,0.00128164,3121,Unsure,Yes,3,Reflect,Annotator1,Final,N/A,N/A
WS0613_U2,WS0613,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.524969982,0.716216216,11,0.078014184,4.369627386,2.998824769,2.559198071,3.088125624,1.969471077,0.098610939,0.047259001,0.14586994,0.016125,-0.0111875,0.0273125,1,0.519900498,0.572352998,-0.34188628,2.793433327,17.76333661,3.928940787,2,3,2,0,4,0,4,6,14,3,1,0,2,0,0,0,1,4,0,0,0,1,0,9,0,0,0,1,1,96.10816094,0,4,20,0,1,0,4,63,0,5,2,4.511704458,2.564949357,3.962581036,5.295608108,2,942,940,0.682643428,77,13,28,1.329073503,2,0.001452433,11,4,0.002904866,3,0.002178649,4,0.002904866,0.007988381,5,0.003631082,3,0.002178649,16,0.011619463,7,0.005083515,1,0.000726216,87,0.063180828,11,0.007988381,0.404502542,1,0.000726216,0,0,1377,No,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0615_U1,WS0615,History,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.632220711,0.714285714,35,0.174129353,5.165524862,3.10788597,1.574301129,3.248761992,1.009636488,0.107052817,0.080149734,0.18720255,0.021145577,-0.040095209,0.061240786,0.85699,0.53894899,0.509998415,-0.872440037,2.802992983,3.276114538,7.29731396,0,1,5,0,0,0,0,0,15,6,0,0,4,0,0,0,1,1,1,0,0,0,0,4,0,0,0,1,3,140.3688133,0,0,0,1,0,0,5,40,5,6,0,4.891601477,2.48490665,4.4118934,4.859824781,168,1344,1176,0.673925501,54,0,12,0.896349313,0,0,70,38,0.021776504,18,0.010315186,14,0.008022923,0.040114613,26,0.014899713,5,0.00286533,44,0.0252149,68,0.038968481,0,0,65,0.037249284,44,0.0252149,0.332378223,1,0.000573066,12,0.006876791,1745,Yes,Yes,2,Inform/Explore,Annotator1,Final,N/A,N/A
WS0617_U1,WS0617,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.750210154,0.865853659,37,0.2,5.303304908,3.064777171,0.998907191,3.066333694,0.891856106,0.111662001,0.041324941,0.152986943,0.027837116,-0.018040721,0.045877837,0.99999,0.542690555,0.519915793,-0.30843995,2.61355338,16.83322313,3.18302114,0,0,0,0,3,0,1,1,13,1,0,0,3,0,0,0,0,3,0,4,0,4,0,0,2,0,0,0,3,203.3030805,0,0,14,0,3,1,4,74,0,3,0,4.80947065,2.48490665,4.530199384,5.045516304,8,1390,1382,0.821152704,67,0,14,0.969345026,2,0.001188354,33,22,0.013071895,2,0.001188354,9,0.005347594,0.019607843,26,0.015448604,0,0,30,0.017825312,74,0.043969103,1,0.000594177,94,0.055852644,50,0.029708853,0.306595365,1,0.000594177,1,0.000594177,1683,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0617_U2,WS0617,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.553401866,0.65625,15,0.192307692,5.26428318,2.697215082,0.495370321,2.474056594,0.552238608,0.157400273,0.024300855,0.181701128,0.026740238,-0.006154499,0.032894737,0.86522,0.719362508,0.64023105,0.139208159,2.770648443,3.781124075,0.707743154,0,1,0,0,0,0,0,1,1,0,0,0,2,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,63.36072166,0,0,0,0,1,3,4,24,0,1,0,3.865979067,2.48490665,4.340588545,5.698080279,2,452,450,0.705329154,26,5,10,1.222039307,0,0,12,7,0.010971787,1,0.001567398,4,0.006269592,0.018808777,14,0.021943574,0,0,6,0.009404389,2,0.003134796,0,0,37,0.05799373,20,0.031347962,0.44984326,0,0,1,0.001567398,638,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0618_U1,WS0618,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.031075701,0.416666667,9,0.257142857,5.553513142,2.519524728,1.938576911,2.906236175,1.81529394,0.165771281,0.04046332,0.206234602,0.048552124,-0.00511583,0.053667954,0.62847,0.206769869,0.611507422,-0.061376529,2.796044929,1.229608494,0.229394499,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,20.75731185,0,0,0,0,0,3,1,8,0,0,0,3.939638172,1.609437912,3.047028316,4.750972763,49,272,223,0.805054152,10,0,7,1.419472606,0,0,20,17,0.061371841,0,0,3,0.010830325,0.072202166,5,0.018050542,2,0.007220217,4,0.014440433,18,0.064981949,0,0,14,0.050541516,8,0.028880866,0.541516245,0,0,3,0.010830325,277,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0618_U2,WS0618,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.540506963,0.666666667,6,0.069767442,4.259399034,3.168555027,3.542299359,3.471579569,3.546434649,0.106830329,0.044149404,0.150979733,0.025423729,-0.009981168,0.035404896,0.80225,0.302390226,0.5249689,-0.744285926,3.104440774,2.495326906,1.747686121,0,0,0,0,0,0,1,0,2,0,0,0,2,0,0,0,0,0,1,0,0,0,1,3,0,0,0,0,0,36.1444602,0,0,0,0,1,0,2,18,3,1,0,4.323186135,1.945910149,3.388488768,4.534090909,75,533,458,0.797909408,21,0,5,0.987255072,0,0,25,15,0.026132404,1,0.00174216,9,0.015679443,0.043554007,14,0.024390244,13,0.022648084,10,0.017421603,58,0.101045296,0,0,27,0.047038328,12,0.020905923,0.456445993,2,0.003484321,2,0.003484321,574,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0619_U1,WS0619,English,"A parent, brother, sister or other relative",Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.626994207,0.8125,1,0.028571429,3.386808644,3.259128373,1.126396297,2.042569114,1.440724802,0.119736589,0.060528302,0.180264891,0.029056604,-0.013207547,0.042264151,0.9379,0.344090907,0.758545627,0.081525543,3.038860142,1.168880216,0.484670126,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,30.52614105,0,0,0,0,0,0,1,15,0,0,0,4.473541744,1.098612289,3.707431265,4.836501901,14,164,150,0.505050505,16,1,4,1.160408904,0,0,19,16,0.053872054,3,0.01010101,0,0,0.063973064,7,0.023569024,0,0,4,0.013468013,17,0.057239057,0,0,17,0.057239057,15,0.050505051,0.474747475,1,0.003367003,6,0.02020202,297,No,,1,Persuade,Annotator2,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0619_U2,WS0619,English,"A parent, brother, sister or other relative",Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.504748685,0.62962963,3,0.046875,3.868593448,3.222507128,3.41260088,3.123280263,3.439885269,0.115949433,0.037775781,0.153704249,0.015618449,-0.008490566,0.024109015,0.88853,0.288163978,0.711577167,-0.338681208,3.104968086,1.488842357,1.538225351,0,0,0,0,1,0,0,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.32953298,0,0,0,0,0,0,2,18,0,7,0,4.549657476,1.609437912,3.889189572,4.589852008,7,478,471,0.905769231,26,2,14,1.445963273,0,0,40,32,0.061538462,1,0.001923077,7,0.013461538,0.076923077,11,0.021153846,0,0,6,0.011538462,33,0.063461538,0,0,29,0.055769231,15,0.028846154,0.415384615,1,0.001923077,16,0.030769231,520,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0619_U3,WS0619,English,"A parent, brother, sister or other relative",Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",0,0,5,0.178571429,5.19057306,3.058433853,2.291402782,2.938676756,2.295137408,0.058241845,0.042071304,0.100313149,0.014889706,-0.018933824,0.033823529,0.66331,0.297445125,0.657698292,-0.125621395,2.935565175,1.503558427,0.588845808,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.1793517,0,0,0,0,0,1,0,2,0,14,0,4.219507705,1.386294361,3.948036096,4.643382353,38,270,232,0.77852349,13,0,7,1.388987595,0,0,9,4,0.013422819,1,0.003355705,4,0.013422819,0.030201342,6,0.020134228,0,0,3,0.010067114,22,0.073825503,0,0,18,0.060402685,7,0.023489933,0.526845638,0,0,0,0,298,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0619_U4,WS0619,English,"A parent, brother, sister or other relative",Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.64934277,0.769230769,6,0.230769231,5.445742182,1.216007245,2.488882808,2.17159946,3.091226143,0.091237973,0.043785166,0.13502314,0.036617647,-0.011764706,0.048382353,0.67448,0.195562995,0.636796325,-0.446894484,2.901129036,0.855594494,0.302047822,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.54302304,0,0,0,0,2,1,0,12,0,0,0,4.436751534,0.693147181,3.188347968,4.556213018,110,164,54,0.287234043,5,0,3,1.229360463,0,0,5,3,0.015957447,1,0.005319149,1,0.005319149,0.026595745,5,0.026595745,0,0,3,0.015957447,23,0.122340426,0,0,13,0.069148936,3,0.015957447,0.579787234,0,0,1,0.005319149,188,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0620_U1,WS0620,English,No one helped me,Somewhat,0,0,I completed the assignment on a laptop or desktop computer.,6.223609716,0.454545455,6,0.176470588,5.178804895,3.16180917,3.078078831,2.903225869,2.84081548,0.145125705,0.048318595,0.1934443,0.041023166,-0.008494208,0.049517375,1,0.372231315,0.715748177,-0.21848576,3.046739561,4.338089002,0.435127783,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,19.15397636,0,0,5,0,0,3,2,15,0,2,0,3.254242969,2.302585093,4.193625039,4.675675676,4,246,242,0.852112676,21,0,11,1.599144737,0,0,17,15,0.052816901,1,0.003521127,1,0.003521127,0.059859155,5,0.017605634,0,0,4,0.014084507,19,0.066901408,1,0.003521127,25,0.088028169,5,0.017605634,0.542253521,0,0,3,0.01056338,284,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0620_U2,WS0620,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.79698476,0.863636364,3,0.063829787,4.171765177,3.310692118,2.637963861,3.107259098,2.715950465,0.093031925,0.032128514,0.125160439,0.013855422,-0.011807229,0.025662651,0.7928,0.390873461,0.761160097,-0.166053916,3.144193662,1.251283865,1.180099706,0,0,0,0,0,0,0,0,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,23.96276374,0,0,0,0,0,1,0,21,0,0,0,5.325446034,0.693147181,3.53942574,4.596107056,4,359,355,0.79954955,20,0,11,1.411194879,0,0,32,29,0.065315315,1,0.002252252,2,0.004504505,0.072072072,14,0.031531532,0,0,5,0.011261261,22,0.04954955,0,0,22,0.04954955,18,0.040540541,0.436936937,5,0.011261261,3,0.006756757,444,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0621_U1,WS0621,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.374138727,0.583333333,7,0.184210526,5.221493158,2.258386665,1.513082525,2.904546705,0.844937264,0.11039594,0.047444494,0.157814858,0.016560102,-0.019053708,0.035613811,0.59378,0.492795808,0.446065415,-1.098847756,2.94187991,2.656069331,0.5819224,0,0,0,0,1,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,49.7576968,0,0,0,0,0,1,4,16,0,3,0,3.56052942,2.397895273,3.518376287,5.175710594,4,403,399,0.93442623,28,5,7,1.240385549,0,0,7,4,0.009367681,1,0.00234192,2,0.004683841,0.016393443,3,0.007025761,1,0.00234192,4,0.009367681,37,0.086651054,0,0,29,0.067915691,4,0.009367681,0.510538642,0,0,0,0,427,Yes,,1,Persuade,Annotator2,Draft,DUP,Duplicates
WS0621_U2,WS0621,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.397889646,0.696969697,7,0.184210526,5.221493158,2.083481674,0.924652001,2.738473394,0.811944354,0.107021599,0.046570581,0.15356767,0.017401961,-0.018259804,0.035661765,0.99999,0.576845412,0.412037037,-0.885857236,2.86720268,7.618498113,0.740637603,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,5,0,3,0,0,0,0,0,0,2,48.97288987,0,0,8,0,0,1,5,25,0,2,0,3.43893771,2.564949357,3.662551258,5.540740741,4,415,411,0.870762712,32,8,8,1.254043948,0,0,5,3,0.006355932,1,0.002118644,1,0.002118644,0.01059322,2,0.004237288,0,0,14,0.029661017,37,0.078389831,1,0.002118644,41,0.086864407,5,0.01059322,0.48940678,0,0,0,0,472,Yes,,1,Persuade,Annotator2,Final,N/A,N/A
WS0621_U3,WS0621,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,0,0,2,0.05,3.931825633,2.234843548,2.304450953,2.881280228,2.363841769,0.1165384,0.037261918,0.153800318,0.019949495,-0.007996633,0.027946128,0.88295,0.167205938,0.567432432,-0.376358778,2.75872847,1.307319912,0.546334562,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,0,0,0,2,0,0,0,1,0,42.98568783,0,0,0,0,0,0,0,2,0,11,0,4.591747166,1.098612289,4.44942501,4.506756757,3,288,285,0.876923077,12,0,4,1.124102751,0,0,14,10,0.030769231,2,0.006153846,2,0.006153846,0.043076923,4,0.012307692,0,0,8,0.024615385,9,0.027692308,0,0,13,0.04,7,0.021538462,0.486153846,1,0.003076923,0,0,325,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0621_U4,WS0621,English,No one helped me,A little,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.445342831,0.65,2,0.071428571,4.282600855,2.72132662,3.102086415,2.356217521,3.229321549,0.072838286,0.051081425,0.123919711,0.014694656,-0.002480916,0.017175573,0.83082,0.264241776,0.65312736,-0.031731227,2.866793778,2.419185964,0.489955102,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,1,0,2,0,2,0,0,0,0,0,42.34604186,0,0,0,0,0,0,4,13,2,0,1,3.371119926,2.197224577,4.053231056,5.003816794,1,233,232,0.775919732,21,4,12,1.614198613,0,0,13,4,0.013377926,2,0.006688963,7,0.023411371,0.043478261,3,0.010033445,0,0,8,0.026755853,14,0.046822742,1,0.003344482,23,0.076923077,11,0.036789298,0.505016722,1,0.003344482,1,0.003344482,299,Unsure,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0622_U1,WS0622,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.08189938,0.307692308,5,0.178571429,5.19057306,3.314034774,0.760301339,2.028761317,0.843184886,0.186684636,0.059622642,0.246307278,0.062075472,-0.008301887,0.070377358,0.85431,0.259656937,0.769761072,-0.086291641,2.816868299,2.425362997,0.491164108,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,8,0,0,0,0,0,51.81178759,0,0,0,0,0,3,1,8,0,1,0,3.630038954,1.945910149,3.993526195,4.742424242,1,185,184,0.627986348,13,4,2,0.893536434,0,0,15,8,0.027303754,4,0.013651877,3,0.010238908,0.051194539,6,0.020477816,0,0,11,0.037542662,6,0.020477816,2,0.006825939,17,0.058020478,9,0.030716724,0.440273038,0,0,4,0.013651877,293,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0622_U2,WS0622,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.681153561,0.8,20,0.240963855,5.488788357,3.061969076,3.348793075,3.453306592,3.195826964,0.137142761,0.029508046,0.166650808,0.03217354,-0.004553265,0.036726804,0.71031,0.45045226,0.636730921,-0.622621514,2.952205416,0.394896685,3.13716962,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,58.63855089,0,0,0,3,1,0,1,14,0,0,0,5.262690189,1.098612289,4.506305378,4.671848014,164,389,225,0.352664577,11,2,6,1.017216569,0,0,41,34,0.053291536,3,0.004702194,4,0.006269592,0.064263323,9,0.014106583,4,0.006269592,5,0.007836991,63,0.098746082,0,0,17,0.026645768,23,0.036050157,0.402821317,3,0.004702194,12,0.018808777,638,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0624_U1,WS0624,English,A teacher,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.397889646,0.696969697,7,0.184210526,5.221493158,2.083481674,0.924652001,2.738473394,0.811944354,0.107021599,0.046570581,0.15356767,0.017401961,-0.018259804,0.035661765,0.99999,0.576845412,0.412037037,-0.885857236,2.86720268,7.618498113,0.740637603,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,5,0,3,0,0,0,0,0,0,2,48.97288987,0,0,8,0,0,1,5,25,0,2,0,3.43893771,2.564949357,3.662551258,5.540740741,4,415,411,0.870762712,32,8,8,1.254043948,0,0,5,3,0.006355932,1,0.002118644,1,0.002118644,0.01059322,2,0.004237288,0,0,14,0.029661017,37,0.078389831,1,0.002118644,41,0.086864407,5,0.01059322,0.48940678,0,0,0,0,472,Yes,,1,Persuade,Annotator2,Final,DUP,Duplicates
WS0624_U2,WS0624,English,No one helped me,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.088218083,0.47826087,8,0.156862745,5.061725954,2.898671411,0.788814369,2.980741646,0.83958006,0.141530726,0.038389092,0.179919818,0.037436869,-0.012436869,0.049873737,0.8519,0.391726048,0.725503722,0.074302883,3.042859848,2.074961014,0.449495135,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,45.40271666,0,0,0,0,1,0,4,13,0,5,1,3.663561646,2.302585093,3.662941087,4.871794872,133,295,162,0.369020501,10,0,5,1.093054539,0,0,23,18,0.041002278,1,0.002277904,4,0.009111617,0.0523918,10,0.022779043,0,0,6,0.013667426,9,0.020501139,0,0,28,0.063781321,10,0.022779043,0.460136674,0,0,5,0.011389522,439,No,,1,Persuade,Annotator2,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0626_U1,WS0626,English,A teacher,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.561682044,0.704545455,17,0.261538462,5.570397591,3.245901368,1.067943242,3.434260662,1.08431075,0.078608042,0.038876708,0.11748475,0.012418831,-0.014975649,0.027394481,0.80521,0.423567744,0.561109133,-0.204453527,2.983953465,7.033706036,1.497764217,0,0,0,0,0,0,0,0,3,1,0,0,0,0,0,0,0,3,0,1,0,3,0,0,0,0,0,0,5,69.87954571,0,0,6,0,3,0,4,35,0,4,1,4.105943698,2.302585093,4.097117026,4.859967051,23,624,601,0.844101124,35,0,11,1.21615107,1,0.001404494,22,16,0.02247191,2,0.002808989,4,0.005617978,0.030898876,9,0.012640449,0,0,9,0.012640449,62,0.087078652,1,0.001404494,53,0.074438202,22,0.030898876,0.396067416,2,0.002808989,0,0,712,Yes,,1,Persuade,Annotator2,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0627_U1,WS0627,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.367983963,0.5,10,0.3125,5.74779936,2.90766724,0.96145873,2.617960953,0.995392029,0.176083528,0.049687443,0.225770971,0.046042471,-0.006853282,0.052895753,0.87312,0.351888966,0.761885956,-0.145620888,2.890685082,1.47852398,0.278752469,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,29.81513164,0,0,0,0,1,3,1,9,0,1,0,3.916015027,1.609437912,4.223236937,4.988047809,3,223,220,0.766550523,13,1,8,1.460515442,0,0,17,10,0.034843206,6,0.020905923,1,0.003484321,0.059233449,5,0.017421603,0,0,2,0.006968641,8,0.027874564,0,0,15,0.052264808,12,0.041811847,0.543554007,0,0,3,0.010452962,287,No,,1,Persuade,Annotator2,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0627_U2,WS0627,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.598963058,0.631578947,4,0.072727273,4.300372781,3.258068244,3.46077167,3.336467055,3.45227065,0.111228378,0.028986569,0.140214947,0.009440559,-0.009965035,0.019405594,0.71118,0.312366482,0.540403625,-0.283319535,3.052066916,1.292900894,1.761233596,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,3,0,0,0,0,1,36.59077853,0,0,0,0,1,0,2,13,0,4,0,4.447346101,1.609437912,3.835684989,4.543325527,4,404,400,0.860215054,18,2,12,1.42823933,0,0,20,14,0.030107527,1,0.002150538,5,0.010752688,0.043010753,10,0.021505376,0,0,5,0.010752688,39,0.083870968,0,0,21,0.04516129,17,0.03655914,0.464516129,0,0,2,0.004301075,465,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0627_U3,WS0627,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.641857192,0.727272727,7,0.2,5.303304908,2.870136903,3.145515814,2.835913235,3.232821933,0.054752168,0.066378886,0.121131054,0.009528302,-0.015471698,0.025,0.70448,0.264975339,0.555744584,-0.157669302,2.72320882,0.649912484,1.097255258,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,22.39977289,0,0,0,0,1,1,0,10,0,0,0,4.875197323,0.693147181,3.432586385,4.606870229,28,272,244,0.84137931,9,0,6,1.336252648,0,0,7,2,0.006896552,1,0.003448276,4,0.013793103,0.024137931,8,0.027586207,0,0,4,0.013793103,28,0.096551724,0,0,11,0.037931034,6,0.020689655,0.517241379,0,0,1,0.003448276,290,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0627_U4,WS0627,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.014816516,0.4,1,0.125,4.836281907,1.882344451,3.16377762,2.372968187,3.338004591,0.148320896,0.029850746,0.178171642,0.033955224,-0.012686567,0.046641791,0,0.382399347,0.709938462,-0.833836445,3.137025265,0.307352275,0.103413459,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.798342417,0,0,0,0,0,1,0,4,0,0,0,3.481240089,0.693147181,1.386719189,5.2,28,54,26,0.366197183,2,0,3,1.636021468,0,0,2,2,0.028169014,0,0,0,0,0.028169014,1,0.014084507,0,0,0,0,12,0.169014085,0,0,5,0.070422535,1,0.014084507,0.633802817,0,0,0,0,71,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0628_U1,WS0628,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,5.518834956,0.25,8,0.258064516,5.557077128,2.483788475,3.207592831,2.401147621,3.208992292,0.143493064,0.045165893,0.188658957,0.03032491,-0.004512635,0.034837545,0.82469,0.286912373,0.561856217,-0.202298542,2.880652538,0.856916553,1.053304931,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,39.64680957,0,0,0,0,0,2,1,5,0,4,0,3.674490717,1.945910149,3.416591127,4.5,44,292,248,0.821192053,9,0,5,1.24443278,0,0,17,14,0.046357616,2,0.006622517,1,0.003311258,0.056291391,6,0.01986755,0,0,3,0.009933775,24,0.079470199,0,0,14,0.046357616,9,0.029801325,0.456953642,1,0.003311258,3,0.009933775,302,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0628_U2,WS0628,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,0,0,10,0.126582278,4.848761478,3.380330058,3.539595074,3.494105968,3.438809086,0.091127894,0.048429391,0.139557285,0.020984704,-0.020793499,0.041778203,0.84083,0.204904838,0.611155899,-0.466276809,2.936142896,2.359322195,1.20797635,0,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,46.36162739,0,0,0,1,0,1,0,2,0,23,0,4.638604962,1.609437912,4.400245662,4.647969052,23,546,523,0.886440678,23,0,9,1.210966596,0,0,28,19,0.03220339,4,0.006779661,5,0.008474576,0.047457627,14,0.023728814,4,0.006779661,5,0.008474576,52,0.088135593,0,0,27,0.045762712,20,0.033898305,0.433898305,1,0.001694915,3,0.005084746,590,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0628_U3,WS0628,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.554922822,0.666666667,2,0.054054054,4.008315504,3.229167183,3.016684513,3.045130538,3.11901223,0.104180093,0.03646169,0.140641783,0.023684211,-0.017857143,0.041541353,0.14434,0.229091051,0.590242264,-0.421361217,2.989592169,0.645851667,1.810441491,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,22.82635167,0,0,0,0,0,1,0,8,0,0,0,4.886582645,0.693147181,3.509179299,4.41509434,18,69,51,0.172881356,2,0,4,1.163141152,0,0,16,12,0.040677966,3,0.010169492,1,0.003389831,0.054237288,6,0.020338983,2,0.006779661,6,0.020338983,32,0.108474576,0,0,9,0.030508475,15,0.050847458,0.528813559,0,0,4,0.013559322,295,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0629_U1,WS0629,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,5.806040622,0.35,8,0.129032258,4.867782559,3.302333625,3.440510751,3.342199834,3.367265882,0.156382784,0.023642481,0.180025265,0.053243848,-0.003020134,0.056263982,0.77761,0.319956248,0.695196594,-0.405540856,3.194917599,1.272878557,1.575446633,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1,0,1,0,1,0,0,0,0,0,44.67527588,0,0,0,0,1,0,2,7,6,5,0,4.310799125,1.791759469,3.696502965,4.51901566,71,269,198,0.402439024,10,3,5,1.047765426,0,0,18,13,0.026422764,4,0.008130081,1,0.00203252,0.036585366,9,0.018292683,5,0.010162602,6,0.012195122,48,0.097560976,0,0,23,0.046747967,12,0.024390244,0.426829268,0,0,4,0.008130081,492,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0629_U2,WS0629,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.487553079,0.75,5,0.178571429,5.19057306,2.511366769,0.818203062,2.98897443,0.478566227,0.127510477,0.068562092,0.196033353,0.027745098,-0.018431373,0.046176471,0.92564,0.368536509,0.697008999,-0.206316744,2.955833249,1.724367858,0.584356164,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,2,0,0,0,0,1,0,0,0,0,0,19.22016593,0,0,0,0,0,2,1,17,0,0,0,4.151039906,1.386294361,2.895696314,4.748031496,14,262,248,0.888888889,20,1,7,1.416467516,0,0,14,14,0.050179211,0,0,0,0,0.050179211,6,0.021505376,0,0,5,0.017921147,9,0.032258065,0,0,21,0.075268817,3,0.010752688,0.523297491,1,0.003584229,3,0.010752688,279,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0630_U1,WS0630,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.665519332,0.733333333,4,0.108108108,4.692339208,3.118380632,1.215789297,2.400645564,1.511308881,0.148934399,0.043240093,0.192174492,0.040384615,-0.004283217,0.044667832,0.80575,0.123461315,0.723912736,-0.242586627,2.8066098,1.070877319,0.838701758,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,38.13293319,0,0,0,0,0,1,0,13,0,1,0,4.546834609,1.098612289,3.409355717,4.583038869,2,242,240,0.774193548,12,0,11,1.562100911,0,0,15,11,0.035483871,3,0.009677419,1,0.003225806,0.048387097,10,0.032258065,0,0,4,0.012903226,10,0.032258065,0,0,15,0.048387097,8,0.025806452,0.461290323,0,0,1,0.003225806,310,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0631_U1,WS0631,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.583716536,0.702702703,17,0.25,5.525452939,2.438435534,0.783506147,3.293866435,0.666663928,0.088606862,0.063350697,0.151957559,0.011985294,-0.031654412,0.043639706,0.75955,0.571779518,0.682421737,0.235780995,3.025463833,3.295691834,1.215941572,0,0,0,0,1,0,1,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,66.89400838,0,0,0,0,3,0,4,28,0,4,1,4.204692619,2.302585093,4.602237771,4.898507463,93,576,483,0.638888889,33,0,6,0.951167845,0,0,8,6,0.007936508,1,0.001322751,1,0.001322751,0.010582011,11,0.014550265,0,0,5,0.006613757,43,0.056878307,0,0,42,0.055555556,20,0.026455026,0.417989418,1,0.001322751,1,0.001322751,756,Yes,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0631_U2,WS0631,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.410868515,0.571428571,11,0.203703704,5.321563586,3.068142485,0.908804679,3.129886577,1.14231342,0.09920404,0.039034951,0.13823899,0.020401691,-0.014957717,0.035359408,0.77006,0.336759469,0.527495057,0.153762942,2.80550352,0.957408782,1.00678169,0,1,0,0,0,0,0,1,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,2,0,2,55.11319095,0,0,0,0,1,1,3,12,3,2,0,3.953378191,2.197224577,3.830468915,4.57782516,1,492,491,0.958984375,24,4,8,1.220761654,0,0,7,5,0.009765625,1,0.001953125,1,0.001953125,0.013671875,8,0.015625,0,0,10,0.01953125,22,0.04296875,0,0,25,0.048828125,17,0.033203125,0.48046875,1,0.001953125,0,0,512,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0633_U1,WS0633,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.638705003,0.820895522,11,0.146666667,4.994957481,3.025890067,1.098213304,3.3008626,1.039745585,0.097129284,0.029583062,0.126712346,0.014644107,-0.015023337,0.029667445,1,0.444594759,0.671198932,0.2066247,3.001524272,19.02353741,3.11444393,0,0,0,0,2,0,0,0,1,0,0,0,2,0,0,0,0,2,0,4,0,1,0,2,0,0,0,0,2,152.2592529,0,0,28,0,3,1,4,59,0,3,0,4.248495242,2.48490665,3.969554409,5.121428571,33,798,765,0.771169355,36,0,10,1.044565048,1,0.001008065,17,6,0.006048387,6,0.006048387,5,0.005040323,0.017137097,15,0.015120968,0,0,7,0.007056452,50,0.050403226,1,0.001008065,77,0.077620968,13,0.013104839,0.347782258,6,0.006048387,0,0,992,Yes,,1,Persuade,Annotator2,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0634_U1,WS0634,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,5.605683463,0.333333333,1,0.083333333,4.4347772,2.562391678,1.580797282,2.715138668,1.070992448,0.140189174,0.040140845,0.180330019,0.032570423,-0.006866197,0.03943662,0.35045,0.081232115,0.632017997,-0.357692718,3.013868454,0.712040902,0.371723585,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,10.53234306,0,0,0,0,2,3,1,4,0,1,0,3.569532696,1.386294361,2.179123561,4.35915493,6,92,86,0.55483871,6,1,6,1.598896359,0,0,10,9,0.058064516,1,0.006451613,0,0,0.064516129,1,0.006451613,0,0,3,0.019354839,5,0.032258065,0,0,10,0.064516129,5,0.032258065,0.541935484,0,0,4,0.025806452,155,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0635_U1,WS0635,English,A teacher,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.547342303,0.763636364,18,0.197802198,5.29231035,3.11081989,0.973204168,3.291895756,0.919657483,0.089505005,0.034885612,0.124390617,0.016807542,-0.015702211,0.032509753,1,0.493718152,0.637676495,-0.400793592,2.943102703,14.47683055,2.141053864,0,0,0,0,1,0,0,0,1,1,0,0,0,0,0,0,0,4,0,4,0,1,0,0,0,0,0,0,3,95.69745645,0,0,13,0,1,0,4,47,0,4,0,4.069684,2.564949357,4.405417259,5.115637319,6,628,622,0.702031603,32,11,7,0.949423051,0,0,19,15,0.016930023,0,0,4,0.004514673,0.021444695,16,0.018058691,0,0,2,0.002257336,62,0.069977427,1,0.001128668,66,0.074492099,18,0.020316027,0.387133183,4,0.004514673,0,0,886,Yes,,1,Persuade,Annotator2,Final,1,High Value Source-Based Argument--High Value Source Integration with Bibliography
WS0635_U2,WS0635,English,No one helped me,Not at all,0,1,I completed the assignment on a laptop or desktop computer.,6.464957571,0.583333333,12,0.169014085,5.135881284,2.838048458,2.81833579,2.527521102,3.022787982,0.138074791,0.051988269,0.19006306,0.012056367,-0.011221294,0.023277662,0.85968,0.28617551,0.445709534,0.062241574,3.014820055,2.633443505,1.387046541,0,0,0,0,0,0,1,0,2,1,0,0,1,0,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,82.60935507,0,0,0,0,0,3,4,16,0,1,0,3.713572067,2.397895273,3.968384364,5.093126386,60,225,165,0.340206186,10,0,5,1.053434893,0,0,28,23,0.04742268,0,0,5,0.010309278,0.057731959,7,0.01443299,0,0,10,0.020618557,25,0.051546392,0,0,29,0.059793814,21,0.043298969,0.369072165,0,0,9,0.018556701,485,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0636_U1,WS0636,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.444109552,0.631578947,1,0.033333333,3.5361167,1.904669625,3.109961347,2.686012293,3.31263017,0.130430257,0.026902614,0.157332871,0.03120229,-0.002290076,0.033492366,0.79331,0.174622409,0.563526705,0.274647713,2.957291994,1.127186115,0.395332892,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,38.25386006,0,0,0,0,0,2,1,14,0,2,0,3.947390149,1.609437912,2.97705131,4.598455598,1,174,173,0.590443686,15,1,7,1.396038593,0,0,22,20,0.068259386,1,0.003412969,1,0.003412969,0.075085324,8,0.027303754,5,0.017064846,5,0.017064846,23,0.078498294,0,0,20,0.068259386,5,0.017064846,0.412969283,2,0.006825939,8,0.027303754,293,No,,1,Persuade,Annotator2,Possible Duplicate,N/A,N/A
WS0637_U1,WS0637,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.444109552,0.631578947,1,0.033333333,3.5361167,1.904669625,3.109961347,2.686012293,3.31263017,0.130430257,0.026902614,0.157332871,0.03120229,-0.002290076,0.033492366,0.79331,0.174622409,0.563526705,0.274647713,2.957291994,1.127186115,0.395332892,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,38.25386006,0,0,0,0,0,2,1,14,0,2,0,3.947390149,1.609437912,2.97705131,4.598455598,1,174,173,0.590443686,15,1,7,1.396038593,0,0,22,20,0.068259386,1,0.003412969,1,0.003412969,0.075085324,8,0.027303754,5,0.017064846,5,0.017064846,23,0.078498294,0,0,20,0.068259386,5,0.017064846,0.412969283,2,0.006825939,8,0.027303754,293,No,,1,Persuade,Annotator2,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0637_U2,WS0637,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.534008055,0.684210526,3,0.068181818,4.236738085,3.344864635,3.163375923,3.0776412,3.268275117,0.074734432,0.026057692,0.100792125,0.013538462,-0.004692308,0.018230769,0.92104,0.116950471,0.612799383,-0.052283236,3.01202794,1.729417942,1.034048568,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,43.44043932,0,0,0,0,0,2,0,16,0,1,0,4.171305603,1.609437912,3.200810374,4.462962963,56,188,132,0.368715084,6,0,6,1.249437497,0,0,17,11,0.030726257,2,0.005586592,4,0.011173184,0.047486034,11,0.030726257,2,0.005586592,4,0.011173184,22,0.061452514,0,0,20,0.055865922,5,0.01396648,0.430167598,5,0.01396648,1,0.002793296,358,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0637_U3,WS0637,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,0,0,1,0.142857143,4.968820744,1.990316599,3.116801404,1.943688525,3.410547089,0.108594347,0.026648841,0.135243188,0.031092437,-0.007352941,0.038445378,0.81121,0.287021098,0.807037815,-0.43561414,3.099484418,1.078375928,0.223482741,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,10.01850701,0,0,0,0,0,3,0,1,0,4,0,2.833213344,1.945910149,3.1533103,4.848739496,7,108,101,0.776923077,5,0,4,1.502006699,0,0,4,3,0.023076923,1,0.007692308,0,0,0.030769231,0,0,0,0,2,0.015384615,7,0.053846154,0,0,9,0.069230769,1,0.007692308,0.584615385,1,0.007692308,1,0.007692308,130,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0638_U1,WS0638,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.621836205,0.76744186,16,0.228571429,5.436214217,2.184106063,0.854448082,3.315511658,0.91437509,0.089060746,0.040071126,0.129131872,0.016654021,-0.028300455,0.044954476,0.84679,0.515119381,0.661315868,-0.038383609,2.897033611,6.515839701,1.274549692,0,0,0,0,0,1,0,0,5,1,0,0,1,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,1,102.3184795,0,0,0,0,4,0,4,35,0,4,0,4.082149289,2.397895273,4.206813926,5.164110429,141,603,462,0.59767141,26,0,5,0.873222064,6,0.007761966,11,9,0.01164295,1,0.001293661,1,0.001293661,0.014230272,14,0.018111255,0,0,7,0.009055627,47,0.06080207,1,0.001293661,53,0.068564036,15,0.019404916,0.36610608,1,0.001293661,0,0,773,Yes,,1,Persuade,Annotator2,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0638_U2,WS0638,English,No one helped me,Somewhat,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.642217572,0.714285714,5,0.066666667,4.21459369,3.049753317,2.480313268,3.311486441,2.137219388,0.159977569,0.032438406,0.192415975,0.025391304,-0.00926087,0.034652174,0.96174,0.35528236,0.608374269,-0.552174972,2.986158661,4.384088404,1.091114567,0,0,2,0,0,0,1,0,1,0,0,0,0,0,0,0,0,5,0,0,0,0,0,3,0,0,0,0,0,53.73817247,0,0,0,0,0,3,4,32,0,2,1,3.860729711,2.48490665,3.823686799,4.680701754,3,642,639,0.98459168,44,0,7,1.071359964,0,0,25,11,0.016949153,3,0.004622496,11,0.016949153,0.038520801,12,0.018489985,0,0,11,0.016949153,20,0.030816641,0,0,47,0.072419106,18,0.027734977,0.38366718,0,0,1,0.001540832,649,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0638_U3,WS0638,English,No one helped me,A little,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.522110953,0.607142857,3,0.090909091,4.520799946,2.942277835,2.17522199,2.463374619,2.064444592,0.063629129,0.022688686,0.086317814,0.011490251,-0.002506964,0.013997214,0.99999,0.328732392,0.606388918,0.225234527,3.032769945,2.443150425,0.756690475,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,70.50412735,0,0,0,0,0,1,4,19,0,4,0,3.479840509,2.397895273,3.647972802,4.854341737,2,401,399,0.985185185,32,5,11,1.449640266,0,0,16,10,0.024691358,1,0.002469136,5,0.012345679,0.039506173,9,0.022222222,0,0,2,0.004938272,4,0.009876543,0,0,33,0.081481481,18,0.044444444,0.372839506,0,0,2,0.004938272,405,No,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0638_U4,WS0638,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.632819216,0.75,4,0.064516129,4.182296357,2.479585896,3.382673749,3.024874976,3.377436333,0.160774369,0.027441597,0.188215967,0.036096939,0,0.036096939,0.93701,0.298310558,0.682373121,-0.280938257,3.050181706,2.916065396,1.052420019,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,1,0,0,0,1,0,51.08650226,0,0,0,0,0,1,3,23,0,1,0,3.768922162,2.197224577,3.506575496,4.697435897,3,308,305,0.701149425,29,4,7,1.232791716,0,0,32,25,0.057471264,0,0,7,0.016091954,0.073563218,9,0.020689655,0,0,6,0.013793103,23,0.052873563,0,0,32,0.073563218,10,0.022988506,0.402298851,0,0,8,0.018390805,435,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0638_U5,WS0638,English,No one helped me,A little,0,0,I completed the assignment on a laptop or desktop computer.,6.673882409,0.76744186,7,0.094594595,4.560116277,3.176971531,0.842446557,3.522681705,0.852274515,0.09499921,0.059215826,0.154215036,0.014510779,-0.023631841,0.03814262,1,0.218863325,0.668719928,-0.091503813,2.739292019,6.460476054,1.535227091,0,0,0,0,0,0,0,0,3,2,0,0,1,0,0,0,0,5,0,0,0,2,0,1,0,0,0,0,1,65.98246127,0,0,9,0,0,1,3,35,0,4,0,4.19301609,2.197224577,3.980771114,4.468120805,132,484,352,0.50867052,24,0,9,1.146307311,2,0.002890173,15,12,0.01734104,2,0.002890173,1,0.001445087,0.021676301,13,0.018786127,0,0,10,0.014450867,25,0.036127168,1,0.001445087,49,0.070809249,13,0.018786127,0.35982659,0,0,1,0.001445087,692,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0639_U1,WS0639,English,No one helped me,Somewhat,1,1,I completed the assignment on a tablet (such as an iPad).,6.693440369,0.850746269,19,0.188118812,5.242375452,3.301278226,0.928368123,3.177022409,0.641946704,0.092706752,0.039904661,0.132611414,0.013410064,-0.013115632,0.026525696,0.99999,0.550563104,0.659102814,-0.473879423,2.860202156,13.59206198,3.09886299,0,1,0,0,0,0,0,1,6,1,0,0,0,0,0,0,0,1,0,14,0,1,0,2,0,0,0,0,3,134.6676559,0,0,17,0,5,0,4,59,0,4,0,4.526126979,2.302585093,4.255355658,5.29978355,6,938,932,0.859778598,64,8,10,1.009667235,0,0,25,12,0.011070111,4,0.003690037,9,0.008302583,0.023062731,17,0.015682657,0,0,34,0.031365314,64,0.05904059,1,0.000922509,76,0.070110701,21,0.019372694,0.339483395,3,0.002767528,0,0,1084,Yes,,1,Persuade,Annotator2,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0639_U2,WS0639,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.181462734,0.466666667,9,0.15,5.017279837,3.03420669,3.200503061,3.104334736,3.197944606,0.121570239,0.045363173,0.166933413,0.007879925,-0.011585366,0.019465291,0.8949,0.337674402,0.636107731,-0.320490186,3.125237572,2.068911253,1.449778586,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,0,0,69.68741687,0,0,0,0,1,3,3,14,7,3,0,4.068076635,2.197224577,4.150437607,4.659695817,44,511,467,0.807958478,27,4,5,0.984550672,0,0,23,16,0.027681661,3,0.005190311,4,0.006920415,0.039792388,8,0.01384083,0,0,5,0.008650519,41,0.070934256,0,0,34,0.058823529,18,0.031141869,0.411764706,1,0.001730104,1,0.001730104,578,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0639_U3,WS0639,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.704815982,0.855072464,19,0.188118812,5.242375452,3.301278226,0.928368123,3.179496348,0.641946704,0.092706752,0.039904661,0.132611414,0.013410064,-0.013115632,0.026525696,0.99999,0.552329246,0.659102814,-0.568229659,2.888224728,14.99279691,3.117711847,0,1,0,0,0,0,0,1,6,1,0,0,0,0,0,0,0,1,0,15,0,2,0,2,0,0,0,0,4,138.8776018,0,0,19,0,5,0,4,61,0,4,0,4.526126979,2.302585093,4.255355658,5.29978355,6,938,932,0.860572484,64,10,10,1.010028877,0,0,25,12,0.011080332,4,0.003693444,9,0.008310249,0.023084026,17,0.015697138,0,0,34,0.031394275,64,0.059095106,1,0.000923361,79,0.072945522,21,0.019390582,0.339796861,3,0.002770083,0,0,1083,Yes,,1,Persuade,Annotator2,Possible Duplicate,N/A,N/A
WS0639_U4,WS0639,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.406304181,0.612903226,1,0.020408163,3.06377231,2.748059795,0.95730206,2.221541567,1.000904149,0.103807932,0.014234075,0.118042007,0.016309524,0,0.016309524,0.85954,0.419130122,0.555879902,0.1014289,2.833853344,5.070032743,0.838435635,0,1,1,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,2,50.25606971,0,0,0,0,0,0,4,21,3,3,0,3.526360525,2.48490665,3.725357156,5.352941176,3,410,407,0.860465116,34,6,16,1.541911558,0,0,16,9,0.019027484,5,0.010570825,2,0.00422833,0.033826638,11,0.023255814,1,0.002114165,6,0.012684989,18,0.038054968,1,0.002114165,37,0.078224101,8,0.016913319,0.43551797,1,0.002114165,1,0.002114165,473,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0639_U5,WS0639,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.143093542,0.464285714,3,0.055555556,4.035223439,2.842525617,2.037192661,3.167892182,1.888167077,0.107310903,0.046917563,0.154228466,0.020322581,-0.008010753,0.028333333,0.98819,0.237424193,0.6339506,-0.113521642,2.909257269,2.082778093,0.775122654,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,0,39.39040526,0,0,0,0,0,1,3,13,5,6,0,3.940502477,2.197224577,3.714160732,4.650107991,2,462,460,0.882917466,28,4,5,1.025180024,0,0,20,11,0.021113244,5,0.009596929,4,0.007677543,0.038387716,10,0.019193858,0,0,6,0.011516315,20,0.038387716,0,0,32,0.061420345,9,0.017274472,0.387715931,4,0.007677543,2,0.003838772,521,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0639_U6,WS0639,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.314147139,0.615384615,1,0.029411765,3.41482953,2.506625098,1.068104229,3.020749574,0.959353379,0.128533201,0.033838384,0.162371585,0.015625,-0.0046875,0.0203125,0.79316,0.196690497,0.722520833,-0.753765472,3.242211602,0.932560833,0.588363677,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,34.46893072,0,0,0,0,0,2,1,10,0,0,0,4.094344562,1.386294361,3.479424904,4.375,119,259,140,0.532319392,7,1,4,1.209759584,0,0,13,9,0.034220532,2,0.007604563,2,0.007604563,0.049429658,10,0.038022814,0,0,3,0.011406844,4,0.015209125,0,0,14,0.053231939,15,0.057034221,0.505703422,0,0,0,0,263,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0640_U1,WS0640,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.7874947,0.901234568,19,0.166666667,5.121977881,3.246332146,1.095462882,3.109470922,1.012440008,0.077060463,0.030744781,0.107805244,0.016298768,-0.012731006,0.029029774,1,0.491040751,0.500391201,-0.059523547,2.669078084,24.40808818,3.192613108,0,1,0,0,0,0,0,0,6,0,0,0,2,0,0,0,0,11,0,11,0,7,0,3,0,0,0,0,1,150.7410109,0,0,33,1,2,0,4,75,0,2,0,4.576770711,2.302585093,3.817980827,5.41255144,117,301,184,0.16069869,24,0,10,0.988274586,0,0,16,14,0.012227074,0,0,2,0.001746725,0.013973799,9,0.007860262,0,0,31,0.027074236,55,0.048034934,1,0.000873362,94,0.08209607,15,0.013100437,0.398253275,2,0.001746725,0,0,1145,Yes,,1,Persuade,Annotator2,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0640_U2,WS0640,English,No one helped me,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.652136959,0.75,25,0.213675214,5.369126252,3.107857318,1.92930868,3.149869883,1.649173726,0.133577204,0.045568441,0.179145645,0.020608466,-0.011455026,0.032063492,0.85901,0.549747852,0.5973878,-0.691838108,2.782906795,3.438173933,2.419829056,0,0,0,1,0,0,0,0,1,0,0,0,1,0,0,0,0,2,0,0,0,0,0,1,0,0,0,0,2,112.2960222,0,0,0,0,0,2,4,36,0,2,0,4.257248033,2.564949357,4.379311723,5.234204793,20,946,926,0.904296875,41,0,15,1.19447098,0,0,43,29,0.028320313,6,0.005859375,8,0.0078125,0.041992188,19,0.018554688,0,0,9,0.008789063,37,0.036132813,0,0,49,0.047851563,31,0.030273438,0.411132813,1,0.000976563,4,0.00390625,1024,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0641_U1,WS0641,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.593272819,0.756097561,9,0.195652174,5.281436554,2.658855736,2.335095931,2.973311882,1.847515574,0.102854792,0.012383603,0.115238395,0.019927536,-0.006099034,0.02602657,0.86101,0.254840012,0.518417707,0.048522607,2.836717604,9.620696613,0.999835029,0,0,0,0,0,0,0,0,3,1,0,0,2,0,0,0,0,3,0,6,0,3,0,3,0,0,0,1,0,47.74491386,0,0,10,0,1,0,3,34,0,4,0,3.823798772,2.197224577,3.930547264,4.995145631,248,300,52,0.108333333,4,0,3,0.860338007,0,0,19,17,0.035416667,0,0,2,0.004166667,0.039583333,5,0.010416667,0,0,30,0.0625,43,0.089583333,1,0.002083333,48,0.1,8,0.016666667,0.441666667,2,0.004166667,1,0.002083333,480,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0641_U2,WS0641,English,"A parent, brother, sister or other relative",Not at all,1,1,I completed the assignment on a laptop or desktop computer.,6.474746512,0.625,14,0.21875,5.392490537,2.893536118,3.061364482,3.053460478,3.023381765,0.150082758,0.037019648,0.187102406,0.022186933,-0.005036298,0.02722323,0.91352,0.429411729,0.663138235,0.41302904,2.935764741,1.684007247,0.584340636,0,0,0,0,0,0,0,0,2,1,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,72.50668109,0,0,0,0,0,0,2,15,3,4,0,4.507189778,1.791759469,4.122865137,4.9375,1,502,501,0.844856661,26,3,16,1.44687022,0,0,28,18,0.030354132,5,0.008431703,5,0.008431703,0.047217538,8,0.013490725,1,0.001686341,8,0.013490725,17,0.028667791,0,0,27,0.045531197,15,0.02529511,0.404721754,1,0.001686341,1,0.001686341,593,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0641_U3,WS0641,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.302949915,0.533333333,3,0.096774194,4.582660673,3.230530073,1.148697789,3.021540018,1.409295211,0.102499232,0.047908113,0.150407345,0.016612903,-0.01233871,0.028951613,0.8362,-0.088577141,0.600951647,-0.054683285,2.818927281,1.822140541,0.383374616,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,39.48268016,0,0,0,0,1,2,0,11,0,1,1,4.123903364,1.609437912,3.852677891,4.307443366,313,325,12,0.036144578,0,0,2,0.846590462,0,0,14,8,0.024096386,1,0.003012048,5,0.015060241,0.042168675,5,0.015060241,0,0,4,0.012048193,7,0.021084337,0,0,16,0.048192771,13,0.039156627,0.46686747,1,0.003012048,1,0.003012048,332,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0642_U1,WS0642,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.397889646,0.696969697,7,0.184210526,5.221493158,2.083481674,0.924652001,2.738473394,0.811944354,0.107021599,0.046570581,0.15356767,0.017401961,-0.018259804,0.035661765,0.99999,0.576845412,0.412037037,-0.885857236,2.86720268,7.618498113,0.740637603,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,5,0,3,0,0,0,0,0,0,2,48.97288987,0,0,8,0,0,1,5,25,0,2,0,3.43893771,2.564949357,3.662551258,5.540740741,4,415,411,0.870762712,32,8,8,1.254043948,0,0,5,3,0.006355932,1,0.002118644,1,0.002118644,0.01059322,2,0.004237288,0,0,14,0.029661017,37,0.078389831,1,0.002118644,41,0.086864407,5,0.01059322,0.48940678,0,0,0,0,472,Yes,,1,Persuade,Annotator2,Final,DUP,Duplicates
WS0643_U1,WS0643,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.444109552,0.631578947,1,0.033333333,3.5361167,1.904669625,3.109961347,2.686012293,3.31263017,0.130430257,0.026902614,0.157332871,0.03120229,-0.002290076,0.033492366,0.79331,0.174622409,0.563526705,0.274647713,2.957291994,1.127186115,0.395332892,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,38.25386006,0,0,0,0,0,2,1,14,0,2,0,3.947390149,1.609437912,2.97705131,4.598455598,1,174,173,0.590443686,15,1,7,1.396038593,0,0,22,20,0.068259386,1,0.003412969,1,0.003412969,0.075085324,8,0.027303754,5,0.017064846,5,0.017064846,23,0.078498294,0,0,20,0.068259386,5,0.017064846,0.412969283,2,0.006825939,8,0.027303754,293,No,,1,Persuade,Annotator2,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0643_U2,WS0643,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.603506217,0.8,6,0.171428571,5.149983072,3.059268801,2.461038995,2.946663818,2.451455727,0.084001715,0.052446619,0.136448334,0.010765125,-0.014946619,0.025711744,0.84087,0.285377028,0.609963134,-0.18417038,2.911860584,0.976873535,0.413612881,0,1,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,34.54687303,0,0,0,0,0,1,0,14,0,0,0,4.941642423,0.693147181,4.368710999,4.628571429,97,308,211,0.661442006,10,0,6,1.296857672,0,0,16,11,0.034482759,1,0.003134796,4,0.012539185,0.05015674,12,0.037617555,4,0.012539185,6,0.018808777,20,0.062695925,0,0,15,0.047021944,11,0.034482759,0.536050157,1,0.003134796,1,0.003134796,319,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0643_U3,WS0643,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.15401204,0.518518519,4,0.074074074,4.31847528,3.230385625,3.345592576,3.283676193,3.283051728,0.118903651,0.056396509,0.17530016,0.022464623,-0.014563679,0.037028302,0.737,0.226649212,0.680717949,-0.352075681,3.069651305,2.806215572,1.840155661,0,0,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,4,0,0,0,0,0,40.94617478,0,0,0,0,0,1,1,17,0,8,0,4.248495242,1.791759469,3.670312563,4.602380952,3,373,370,0.775681342,22,2,22,1.673219967,0,0,20,15,0.031446541,2,0.004192872,3,0.006289308,0.041928721,7,0.014675052,2,0.004192872,7,0.014675052,34,0.071278826,0,0,29,0.060796646,13,0.027253669,0.473794549,0,0,6,0.012578616,477,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0643_U4,WS0643,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,5.201561698,0.166666667,1,0.142857143,4.968820744,1.844788896,3.089320051,2.18139948,3.329131784,0.111940299,0.017164179,0.129104478,0.033955224,0,0.033955224,0,0.026748459,0.832442786,-0.351496519,2.813370183,1.056104321,0.271183155,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,2.951094501,0,0,0,0,0,1,0,4,0,1,0,2.818398258,1.386294361,2.420153338,4.179104478,0,0,0,0,0,0,0,0,0,0,4,3,0.041666667,0,0,1,0.013888889,0.055555556,1,0.013888889,0,0,1,0.013888889,10,0.138888889,0,0,7,0.097222222,3,0.041666667,0.680555556,0,0,0,0,72,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0644_U1,WS0644,English,A teacher,Not at all,1,1,I completed the assignment on a laptop or desktop computer.,6.675696406,0.739130435,6,0.139534884,4.945455741,3.027260726,2.491289635,3.117955365,2.398070185,0.090276178,0.045132994,0.135409172,0.020076401,-0.018590832,0.038667233,0.90642,0.557933904,0.539172627,0.056766435,2.606547533,9.912578305,2.188916872,1,0,1,0,0,0,1,0,3,1,0,0,0,0,0,0,0,22,0,16,0,1,0,0,0,0,1,0,0,82.74129433,0,0,15,0,5,1,4,34,5,2,0,3.951243719,2.397895273,4.240674067,5.543706294,88,539,451,0.657434402,25,0,6,0.988842257,3,0.004373178,18,8,0.011661808,2,0.002915452,8,0.011661808,0.026239067,4,0.005830904,0,0,3,0.004373178,51,0.074344023,1,0.001457726,55,0.080174927,7,0.010204082,0.386297376,3,0.004373178,1,0.001457726,686,Yes,,1,Persuade,Annotator2,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0644_U2,WS0644,English,No one helped me,A little,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.07059262,0.4375,12,0.342857143,5.840226289,2.537658557,2.337292149,2.890899225,2.602297552,0.152295559,0.044536272,0.196831831,0.019008264,-0.003030303,0.022038567,0.89887,0.285824706,0.661251099,-0.162191624,3.057088678,1.321921896,0.389521849,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,61.56216541,0,0,0,1,0,2,3,7,3,1,0,3.677706154,2.197224577,3.725209813,4.786516854,67,380,313,0.819371728,17,4,4,1.05960901,0,0,18,4,0.010471204,0,0,14,0.036649215,0.047120419,5,0.013089005,0,0,3,0.007853403,20,0.052356021,0,0,20,0.052356021,7,0.018324607,0.392670157,0,0,0,0,382,No,,1,Persuade,Annotator2,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0646_U1,WS0646,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.656025799,0.702702703,9,0.107142857,4.683453104,3.251413949,2.268681316,3.472130113,1.746640091,0.107416099,0.027512023,0.134928122,0.023439822,-0.009026746,0.032466568,0.84685,0.364158952,0.625866507,-0.408136459,2.8921575,3.545534944,1.56660318,0,1,0,0,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,40.888381,0,0,0,0,4,2,3,30,0,2,0,3.939338816,2.564949357,4.479750196,4.664670659,103,748,645,0.853174603,33,0,18,1.394618429,0,0,27,21,0.027777778,3,0.003968254,3,0.003968254,0.035714286,14,0.018518519,1,0.001322751,9,0.011904762,35,0.046296296,0,0,41,0.054232804,18,0.023809524,0.466931217,0,0,4,0.005291005,756,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0646_U2,WS0646,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",5.754922371,0.25,5,0.098039216,4.59551589,3.132781824,3.427537452,3.309465361,3.558901981,0.1070034,0.04442963,0.151433029,0.029,-0.006833333,0.035833333,0.87571,0.179209841,0.72824359,-0.551850029,3.145473683,2.186185238,1.499188463,0,1,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,1,45.78038346,0,0,0,0,1,0,2,8,11,7,0,4.163337434,1.945910149,3.93462575,4.355555556,17,441,424,0.844621514,27,4,8,1.228817383,0,0,25,21,0.041832669,2,0.003984064,2,0.003984064,0.049800797,9,0.017928287,3,0.005976096,9,0.017928287,31,0.061752988,0,0,32,0.06374502,9,0.017928287,0.466135458,1,0.001992032,6,0.011952191,502,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0647_U1,WS0647,English,"A parent, brother, sister or other relative",Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.595619781,0.6875,13,0.171052632,5.147800428,3.182161255,1.315274848,3.39284399,1.729349509,0.113306675,0.043609228,0.156915902,0.029296236,-0.015630115,0.04492635,0.72454,0.400579915,0.665220842,-0.774928023,2.799543487,4.679470324,2.2993485,0,0,1,0,0,0,1,1,4,2,0,0,1,0,0,0,0,1,0,1,0,1,0,1,0,0,0,0,1,56.41212577,0,0,0,0,2,3,4,24,0,1,0,4.104294893,2.302585093,4.125093922,5,41,573,532,0.778916545,24,5,8,1.104249097,0,0,17,13,0.019033675,2,0.002928258,2,0.002928258,0.02489019,9,0.01317716,2,0.002928258,10,0.014641288,57,0.083455344,1,0.001464129,39,0.057101025,8,0.011713031,0.452415813,0,0,1,0.001464129,683,Yes,,1,Persuade,Annotator2,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0647_U2,WS0647,English,"A parent, brother, sister or other relative",Somewhat,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.552153846,0.628571429,12,0.127659574,4.857169959,3.10181789,1.089131678,3.202939948,1.019188263,0.139936628,0.039025818,0.178962447,0.01998645,-0.006707317,0.026693767,0.88988,0.398069434,0.628612171,-0.805232301,2.922032042,2.668048462,1.121693211,0,0,0,0,0,0,1,1,5,1,0,0,1,0,0,0,0,2,0,0,0,0,0,1,1,0,0,0,0,60.08846829,0,0,0,0,2,2,5,26,0,2,0,3.890458828,2.708050201,4.157559171,4.722070845,8,796,788,0.977667494,39,0,18,1.36796139,0,0,41,30,0.037220844,3,0.003722084,8,0.009925558,0.050868486,18,0.022332506,0,0,12,0.014888337,27,0.033498759,0,0,42,0.052109181,14,0.017369727,0.431761787,1,0.001240695,3,0.003722084,806,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0648_U1,WS0648,English,,,#NULL!,#NULL!,,6.397889646,0.696969697,7,0.184210526,5.221493158,2.083481674,0.924652001,2.738473394,0.811944354,0.107021599,0.046570581,0.15356767,0.017401961,-0.018259804,0.035661765,0.99999,0.576845412,0.412037037,-0.885857236,2.86720268,7.618498113,0.740637603,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,5,0,3,0,0,0,0,0,0,2,48.97288987,0,0,8,0,0,1,5,25,0,2,0,3.43893771,2.564949357,3.662551258,5.540740741,4,415,411,0.870762712,32,8,8,1.254043948,0,0,5,3,0.006355932,1,0.002118644,1,0.002118644,0.01059322,2,0.004237288,0,0,14,0.029661017,37,0.078389831,1,0.002118644,41,0.086864407,5,0.01059322,0.48940678,0,0,0,0,472,Yes,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0649_U1,WS0649,English,"A parent, brother, sister or other relative",A little,0,1,I completed the assignment on a laptop or desktop computer.,6.397889646,0.696969697,7,0.184210526,5.221493158,2.083481674,0.924652001,2.738473394,0.811944354,0.107021599,0.046570581,0.15356767,0.017401961,-0.018259804,0.035661765,0.99999,0.576845412,0.412037037,-0.885857236,2.86720268,7.618498113,0.740637603,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,5,0,3,0,0,0,0,0,0,2,48.97288987,0,0,8,0,0,1,5,25,0,2,0,3.43893771,2.564949357,3.662551258,5.540740741,4,415,411,0.870762712,32,8,8,1.254043948,0,0,5,3,0.006355932,1,0.002118644,1,0.002118644,0.01059322,2,0.004237288,0,0,14,0.029661017,37,0.078389831,1,0.002118644,41,0.086864407,5,0.01059322,0.48940678,0,0,0,0,472,Yes,,1,Persuade,Annotator2,Final,DUP,Duplicates
WS0649_U2,WS0649,English,No one helped me,Not at all,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.464957571,0.583333333,12,0.169014085,5.135881284,2.838048458,2.81833579,2.527521102,3.022787982,0.138074791,0.051988269,0.19006306,0.012056367,-0.011221294,0.023277662,0.85968,0.28617551,0.445709534,0.062241574,3.014820055,2.633443505,1.387046541,0,0,0,0,0,0,1,0,2,1,0,0,1,0,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,82.60935507,0,0,0,0,0,3,4,16,0,1,0,3.713572067,2.397895273,3.968384364,5.093126386,60,225,165,0.340206186,10,0,5,1.053434893,0,0,28,23,0.04742268,0,0,5,0.010309278,0.057731959,7,0.01443299,0,0,10,0.020618557,25,0.051546392,0,0,29,0.059793814,21,0.043298969,0.369072165,0,0,9,0.018556701,485,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0649_U3,WS0649,English,No one helped me,Not at all,0,0,I completed the assignment on a laptop or desktop computer.,6.766988986,0.8125,0,0,0,3.243697852,2.262860707,2.645514177,2.266769755,0.110352673,0.059897611,0.170250284,0.018174061,-0.011177474,0.029351536,0.93251,-0.041701392,0.603989451,0.324380702,3.041018277,0.941244656,0.704668599,0,0,0,1,0,0,0,0,3,0,0,0,1,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,42.50968507,0,0,0,0,0,1,0,15,0,0,0,4.987025428,0.693147181,4.057738987,4.372013652,174,208,34,0.104615385,4,0,3,1.009908289,0,0,30,22,0.067692308,2,0.006153846,6,0.018461538,0.092307692,9,0.027692308,0,0,7,0.021538462,17,0.052307692,0,0,16,0.049230769,7,0.021538462,0.406153846,1,0.003076923,2,0.006153846,325,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0649_U4,WS0649,English,No one helped me,Not at all,0,1,I completed the assignment on a laptop or desktop computer.,6.77708382,0.857142857,0,0,0,2.779341759,1.160983713,3.002216074,1.058752912,0.093309524,0.036365079,0.129674603,0.012166667,0,0.012166667,0.84766,0.183243127,0.760190476,0.303239662,2.943786674,1.42518471,0.492856931,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,48.57815686,0,0,0,0,1,1,0,20,0,0,0,5.010635294,0.693147181,3.066515462,4.496666667,1,162,161,0.484939759,20,0,8,1.399611178,0,0,16,8,0.024096386,0,0,8,0.024096386,0.048192771,2,0.006024096,0,0,4,0.012048193,4,0.012048193,0,0,21,0.063253012,5,0.015060241,0.406626506,0,0,0,0,332,No,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0650_U1,WS0650,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.437317657,0.6,1,0.033333333,3.5361167,1.902843571,3.103394153,2.618076006,3.314406013,0.129442149,0.026698806,0.156140955,0.030965909,-0.002272727,0.033238636,0.79331,0.174959333,0.563230843,0.271397401,2.957291994,1.778396494,0.409242956,0,1,0,0,0,0,1,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,38.36072094,0,0,0,0,0,2,1,15,0,2,0,3.772760938,1.791759469,3.003366581,4.61302682,3,176,173,0.586440678,15,0,7,1.39320328,0,0,22,20,0.06779661,1,0.003389831,1,0.003389831,0.074576271,8,0.027118644,5,0.016949153,5,0.016949153,23,0.077966102,0,0,22,0.074576271,5,0.016949153,0.416949153,2,0.006779661,8,0.027118644,295,No,,1,Persuade,Annotator2,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0650_U2,WS0650,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.655214039,0.684210526,5,0.104166667,4.655546393,3.230676305,3.362183071,3.01429572,3.369597047,0.112945527,0.05459994,0.167545467,0.015578818,-0.009482759,0.025061576,0.89631,0.175920083,0.642621662,-0.571899141,3.015810282,1.146385504,1.615953867,0,1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,27.43599756,0,0,0,0,0,2,1,15,0,1,0,4.391976966,1.609437912,4.04628619,4.205445545,41,447,406,0.892307692,17,1,7,1.214436251,0,0,24,18,0.03956044,3,0.006593407,3,0.006593407,0.052747253,4,0.008791209,1,0.002197802,4,0.008791209,56,0.123076923,0,0,20,0.043956044,9,0.01978022,0.432967033,1,0.002197802,7,0.015384615,455,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0650_U3,WS0650,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.169677262,0.363636364,4,0.142857143,4.968820744,3.080468866,2.90710023,3.007010563,3.065648432,0.105529914,0.047035573,0.152565487,0.02826087,-0.017193676,0.045454545,0.29051,0.293732909,0.52499628,-0.295221769,2.746162488,1.342092496,1.349309818,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,23.62883643,0,0,0,0,0,2,0,6,0,2,1,4.147095128,1.386294361,3.713534906,4.581027668,78,279,201,0.71024735,6,0,6,1.346380624,0,0,6,4,0.014134276,0,0,2,0.007067138,0.021201413,4,0.014134276,0,0,5,0.017667845,20,0.070671378,0,0,12,0.042402827,12,0.042402827,0.561837456,0,0,1,0.003533569,283,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0650_U4,WS0650,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,0,0,1,0.055555556,4.035223439,1.134981859,3.235918788,2.426035358,3.298753333,0.10227591,0.031985294,0.134261204,0.022242647,-0.004595588,0.026838235,0,-0.027737513,0.687575499,0.395258529,2.764578102,0.591502681,1.191153985,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,6.279219063,0,0,0,0,0,4,0,1,0,1,0,3.518980417,1.386294361,2.630404831,4.296296296,19,135,116,0.783783784,4,0,4,1.447577032,0,0,8,6,0.040540541,0,0,2,0.013513514,0.054054054,4,0.027027027,1,0.006756757,3,0.02027027,19,0.128378378,0,0,7,0.047297297,4,0.027027027,0.635135135,1,0.006756757,2,0.013513514,148,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0651_U1,WS0651,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.104803519,0.526315789,6,0.125,4.836281907,3.068918754,1.383485224,3.270939522,1.051398353,0.135774735,0.037559832,0.173334567,0.041256477,-0.006930052,0.048186528,0.90714,0.119018016,0.651864682,-0.775938297,2.91164252,2.040102026,2.443834381,0,0,0,0,0,0,0,0,3,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,2,44.071394,0,0,0,1,0,3,1,14,0,1,0,4.00992722,1.945910149,4.302788892,4.277202073,4,372,368,0.847926267,20,2,11,1.420708458,0,0,17,10,0.023041475,2,0.004608295,5,0.011520737,0.039170507,3,0.006912442,1,0.002304147,8,0.01843318,27,0.062211982,0,0,21,0.048387097,6,0.013824885,0.430875576,0,0,0,0,434,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0652_U1,WS0652,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.166333016,0.482758621,8,0.129032258,4.867782559,3.232661112,2.737917086,3.525617117,2.232497018,0.091274586,0.035363424,0.12663801,0.020896785,-0.010448393,0.031345178,0.72367,0.294272657,0.6369414,-0.755928839,2.909676888,2.917147178,1.140976027,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,2,0,2,0,2,0,0,0,0,1,62.2410862,0,0,0,0,0,3,3,16,6,1,0,4.06731589,2.302585093,3.833389788,4.614726027,91,614,523,0.828843106,30,5,5,0.950556168,0,0,17,7,0.011093502,3,0.004754358,7,0.011093502,0.026941363,14,0.022187005,0,0,9,0.014263074,44,0.069730586,0,0,34,0.053882726,15,0.023771791,0.42155309,2,0.003169572,0,0,631,Yes,,1,Persuade,Annotator2,Draft,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0652_U2,WS0652,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.420787516,0.586206897,9,0.147540984,5.000860904,3.211430569,2.733887221,3.497002471,2.214026701,0.096898646,0.033232526,0.130131172,0.021353251,-0.010852373,0.032205624,0.72993,0.295120077,0.609157206,-0.626999232,2.892664419,2.640650885,1.172676592,0,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,2,0,2,0,0,0,0,0,0,1,61.91509877,0,0,0,0,0,2,4,21,0,2,0,3.694222299,2.63905733,3.794625041,4.644760213,1,489,488,0.802631579,31,6,6,1.036166455,0,0,15,7,0.011513158,2,0.003289474,6,0.009868421,0.024671053,13,0.021381579,0,0,7,0.011513158,43,0.070723684,0,0,35,0.057565789,14,0.023026316,0.425986842,2,0.003289474,0,0,608,Yes,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0652_U3,WS0652,English,No one helped me,A little,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.480621308,0.583333333,7,0.111111111,4.719490443,3.171968652,3.54811543,3.181641915,3.546155581,0.118537239,0.056858712,0.175395951,0.018575697,-0.012948207,0.031523904,0.70441,0.200107105,0.613266452,-0.261351974,3.063845636,2.450000502,0.927795369,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,3,0,0,0,0,0,61.73837335,0,0,0,0,0,2,3,17,0,2,0,3.903990834,2.302585093,3.819294407,4.512096774,51,404,353,0.647706422,19,0,7,1.141262742,0,0,21,8,0.014678899,2,0.003669725,11,0.020183486,0.03853211,6,0.011009174,1,0.001834862,5,0.009174312,36,0.066055046,0,0,28,0.051376147,15,0.027522936,0.436697248,3,0.005504587,1,0.001834862,545,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0654_U1,WS0654,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.159200435,0.470588235,2,0.051282051,3.956653124,2.938873661,0.921982106,2.5727224,0.641946704,0.131882257,0.028669844,0.160552101,0.02712585,-0.005782313,0.032908163,0.77899,0.398049609,0.617244596,0.128443125,2.867670756,1.624497257,0.344594493,0,0,0,0,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,36.50439982,0,0,0,0,0,4,3,10,0,0,0,3.600731067,2.079441542,3.407477992,5.105802048,187,317,130,0.403726708,7,0,7,1.356773853,0,0,13,7,0.02173913,1,0.00310559,5,0.01552795,0.040372671,5,0.01552795,0,0,5,0.01552795,18,0.055900621,0,0,21,0.065217391,7,0.02173913,0.50621118,0,0,3,0.00931677,322,Yes,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0654_U2,WS0654,English,No one helped me,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.274716859,0.55,7,0.14893617,5.010209672,2.565026037,2.473982565,2.951529989,1.807918031,0.120488432,0.036675347,0.157163779,0.012760417,-0.001041667,0.013802083,0.8518,0.286361717,0.570248397,0.144083101,2.902894818,2.517766571,0.402791816,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,2,0,0,0,0,0,2,0,0,0,0,0,55.54797063,0,0,0,0,0,0,4,12,0,3,1,3.753417975,2.197224577,3.79541201,4.7109375,13,401,388,0.930455635,22,0,10,1.397606609,0,0,26,6,0.014388489,4,0.009592326,16,0.038369305,0.06235012,9,0.021582734,0,0,6,0.014388489,8,0.019184652,0,0,25,0.059952038,9,0.021582734,0.467625899,0,0,1,0.002398082,417,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0654_U3,WS0654,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.473981469,0.785714286,2,0.068965517,4.24800251,3.226387516,0.926375815,2.418589316,0.868794704,0.079982884,0.05379113,0.133774014,0.019420601,-0.021995708,0.041416309,0.94254,0.157375193,0.54513913,0.193734511,2.85648711,1.283532848,0.390898007,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,27.69000111,0,0,0,0,0,1,0,13,0,0,0,4.744932128,0.693147181,2.757581236,4.543478261,90,153,63,0.247058824,3,0,3,1.106010812,0,0,8,4,0.015686275,2,0.007843137,2,0.007843137,0.031372549,5,0.019607843,0,0,6,0.023529412,14,0.054901961,0,0,14,0.054901961,9,0.035294118,0.521568627,0,0,0,0,255,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0655_U1,WS0655,English,Someone else,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.397889646,0.696969697,7,0.184210526,5.221493158,2.083481674,0.924652001,2.738473394,0.811944354,0.107021599,0.046570581,0.15356767,0.017401961,-0.018259804,0.035661765,0.99999,0.576845412,0.412037037,-0.885857236,2.86720268,7.618498113,0.740637603,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,5,0,3,0,0,0,0,0,0,2,48.97288987,0,0,8,0,0,1,5,25,0,2,0,3.43893771,2.564949357,3.662551258,5.540740741,4,415,411,0.870762712,32,8,8,1.254043948,0,0,5,3,0.006355932,1,0.002118644,1,0.002118644,0.01059322,2,0.004237288,0,0,14,0.029661017,37,0.078389831,1,0.002118644,41,0.086864407,5,0.01059322,0.48940678,0,0,0,0,472,Yes,,1,Persuade,Annotator2,Final,DUP,Duplicates
WS0655_U2,WS0655,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.381382065,0.55,11,0.224489796,5.418274907,3.052902256,2.839447999,3.034829843,3.101634142,0.146428101,0.036750936,0.183179037,0.019592697,-0.00505618,0.024648876,0.91944,0.265113427,0.658460521,-0.603054828,3.163223113,1.832372925,0.816935553,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,1,55.52975512,0,0,0,0,1,1,3,13,0,3,0,3.674893212,2.197224577,3.754642723,4.512676056,2,342,340,0.871794872,23,4,7,1.277579831,0,0,15,7,0.017948718,3,0.007692308,5,0.012820513,0.038461538,7,0.017948718,0,0,6,0.015384615,31,0.079487179,0,0,24,0.061538462,12,0.030769231,0.497435897,0,0,1,0.002564103,390,No,,1,Persuade,Annotator2,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0657_U1,WS0657,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.397889646,0.696969697,7,0.184210526,5.221493158,2.083481674,0.924652001,2.738473394,0.811944354,0.107021599,0.046570581,0.15356767,0.017401961,-0.018259804,0.035661765,0.99999,0.576845412,0.412037037,-0.885857236,2.86720268,7.618498113,0.740637603,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,5,0,3,0,0,0,0,0,0,2,48.97288987,0,0,8,0,0,1,5,25,0,2,0,3.43893771,2.564949357,3.662551258,5.540740741,4,415,411,0.870762712,32,8,8,1.254043948,0,0,5,3,0.006355932,1,0.002118644,1,0.002118644,0.01059322,2,0.004237288,0,0,14,0.029661017,37,0.078389831,1,0.002118644,41,0.086864407,5,0.01059322,0.48940678,0,0,0,0,472,Yes,,1,Persuade,Annotator2,Final,DUP,Duplicates
WS0659_U1,WS0659,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.795972444,0.8125,0,0,0,2.762218359,0.969192676,2.193349702,0.951347889,0.146198538,0.062282691,0.208481229,0.059027778,-0.005853175,0.064880952,0.99999,0.206953481,0.77429502,-0.022971338,2.926383565,1.404016548,1.503080315,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,45.14504998,0,0,0,0,0,0,1,15,0,0,0,4.42684065,1.098612289,3.541367133,4.796812749,44,260,216,0.768683274,12,1,5,1.274009848,0,0,19,13,0.046263345,1,0.003558719,5,0.017793594,0.067615658,6,0.021352313,1,0.003558719,2,0.007117438,5,0.017793594,0,0,17,0.060498221,11,0.039145907,0.423487544,1,0.003558719,2,0.007117438,281,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0659_U2,WS0659,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.594926907,0.689655172,10,0.128205128,4.861401283,3.259658869,3.461383377,3.548255032,3.447105603,0.114214286,0.046798942,0.161013228,0.024537037,-0.013240741,0.037777778,0.89811,0.256016219,0.560030654,-0.347165045,2.925551933,2.238334343,3.628050821,0,0,0,0,1,0,0,0,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,2,52.30713325,0,0,0,0,1,1,3,22,0,3,0,4.08504217,2.197224577,4.100793803,4.465420561,20,511,491,0.837883959,30,0,9,1.213739809,0,0,26,23,0.039249147,1,0.001706485,2,0.003412969,0.044368601,13,0.0221843,0,0,11,0.018771331,60,0.102389078,0,0,33,0.056313993,19,0.032423208,0.42662116,2,0.003412969,5,0.008532423,586,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0660_U1,WS0660,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.768415092,0.794871795,7,0.122807018,4.818724043,3.198200304,1.364837376,3.262787716,1.042731244,0.130271092,0.044021739,0.174292831,0.037862319,-0.005570652,0.043432971,0.93949,0.231115904,0.628744707,-0.986231263,3.028108975,5.063144749,2.452980309,0,0,0,0,0,0,1,0,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,77.23258158,0,0,0,0,0,2,1,35,0,1,0,4.510859507,1.791759469,4.037781557,4.412087912,3,605,602,0.974110032,42,0,15,1.402636943,0,0,49,39,0.063106796,5,0.008090615,5,0.008090615,0.079288026,15,0.024271845,0,0,6,0.009708738,37,0.05987055,3,0.004854369,45,0.072815534,13,0.021035599,0.338187702,0,0,7,0.011326861,618,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0662_U1,WS0662,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.464957571,0.583333333,12,0.169014085,5.135881284,2.838048458,2.81833579,2.527521102,3.022787982,0.138074791,0.051988269,0.19006306,0.012056367,-0.011221294,0.023277662,0.85968,0.28617551,0.445709534,0.062241574,3.014820055,2.633443505,1.387046541,0,0,0,0,0,0,1,0,2,1,0,0,1,0,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,82.60935507,0,0,0,0,0,3,4,16,0,1,0,3.713572067,2.397895273,3.968384364,5.093126386,60,225,165,0.340206186,10,0,5,1.053434893,0,0,28,23,0.04742268,0,0,5,0.010309278,0.057731959,7,0.01443299,0,0,10,0.020618557,25,0.051546392,0,0,29,0.059793814,21,0.043298969,0.369072165,0,0,9,0.018556701,485,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0663_U1,WS0663,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.660390901,0.714285714,19,0.253333333,5.538645743,3.003350428,2.318640066,3.466061702,1.859495963,0.093983,0.048633372,0.142616372,0.007073171,-0.023373984,0.030447154,0.88249,0.396962735,0.566997184,-0.605381825,2.994855826,5.643049705,1.244376206,0,1,2,0,3,0,1,0,2,2,1,0,0,0,0,0,0,0,0,1,0,1,0,2,0,0,0,0,0,95.98906483,0,0,0,0,5,0,3,34,0,5,0,4.000699662,2.397895273,4.1355365,4.923460899,35,629,594,0.854676259,36,0,5,0.913508924,0,0,10,4,0.005755396,0,0,6,0.008633094,0.014388489,7,0.010071942,0,0,7,0.010071942,45,0.064748201,1,0.001438849,50,0.071942446,6,0.008633094,0.382733813,2,0.002877698,0,0,695,Yes,,1,Persuade,Annotator2,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0663_U2,WS0663,English,A teacher,A little,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.249094773,0.47826087,9,0.166666667,5.121977881,3.28635614,3.435730259,3.122016355,3.529959218,0.126763534,0.036912533,0.163676067,0.023326572,-0.007860041,0.031186613,0.80973,0.304951257,0.616273059,-0.643129263,2.926730869,1.349090057,1.889198826,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,4,0,0,0,0,0,1,0,0,0,0,0,50.1603988,0,0,0,0,0,2,3,11,4,3,0,4.001254139,2.197224577,3.646809903,4.589430894,27,467,440,0.808823529,25,4,8,1.19606234,0,0,20,15,0.027573529,1,0.001838235,4,0.007352941,0.036764706,9,0.016544118,0,0,8,0.014705882,38,0.069852941,0,0,27,0.049632353,13,0.023897059,0.446691176,1,0.001838235,2,0.003676471,544,No,,1,Persuade,Annotator2,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0665_U1,WS0665,English,A teacher,A lot,1,0,I completed the assignment on a laptop or desktop computer.,6.580775943,0.676470588,13,0.135416667,4.915713928,3.006207768,1.052384312,3.454281908,0.982289009,0.10151393,0.033993157,0.135507087,0.013508065,-0.012466398,0.025974462,0.78664,0.357900615,0.694424619,-0.857970315,3.009502791,2.177957253,1.445641112,0,1,1,0,2,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,1,87.54337209,0,0,0,0,3,0,4,24,0,5,1,4.404005541,2.197224577,3.827542557,4.671195652,1,776,775,0.955610358,37,5,6,0.924190026,0,0,16,9,0.011097411,3,0.003699137,4,0.004932182,0.01972873,17,0.020961776,0,0,12,0.014796547,79,0.097410604,0,0,39,0.048088779,16,0.01972873,0.323057953,4,0.004932182,0,0,811,Yes,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0665_U2,WS0665,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.464957571,0.583333333,12,0.169014085,5.135881284,2.838048458,2.81833579,2.527521102,3.022787982,0.138074791,0.051988269,0.19006306,0.012056367,-0.011221294,0.023277662,0.85968,0.28617551,0.445709534,0.062241574,3.014820055,2.633443505,1.387046541,0,0,0,0,0,0,1,0,2,1,0,0,1,0,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,82.60935507,0,0,0,0,0,3,4,16,0,1,0,3.713572067,2.397895273,3.968384364,5.093126386,60,225,165,0.340206186,10,0,5,1.053434893,0,0,28,23,0.04742268,0,0,5,0.010309278,0.057731959,7,0.01443299,0,0,10,0.020618557,25,0.051546392,0,0,29,0.059793814,21,0.043298969,0.369072165,0,0,9,0.018556701,485,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0666_U1,WS0666,English,"A parent, brother, sister or other relative",A lot,0,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.460707752,0.636363636,4,0.142857143,4.968820744,2.815299654,0.973831874,2.059457484,1.02395122,0.147783001,0.065358274,0.213141274,0.030130597,-0.002425373,0.03255597,0.91446,0.253650966,0.816778035,-0.24284012,3.147678141,2.09015745,0.567149424,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,45.69776567,0,0,0,0,1,0,3,14,4,1,0,3.507807117,2.079441542,3.287669915,4.595505618,2,194,192,0.648648649,25,4,9,1.497004404,0,0,22,22,0.074324324,0,0,0,0,0.074324324,7,0.023648649,0,0,3,0.010135135,21,0.070945946,0,0,26,0.087837838,9,0.030405405,0.398648649,1,0.003378378,6,0.02027027,296,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0666_U2,WS0666,English,"A parent, brother, sister or other relative",A little,0,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.628231878,0.636363636,4,0.075471698,4.336920713,3.244378502,3.360253162,3.259903716,3.567475689,0.087357775,0.03217973,0.119537505,0.007909292,-0.006360619,0.014269912,0.80274,0.229574846,0.554593496,-0.55935392,3.092607984,2.376512842,1.54637689,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,1,0,0,0,1,0,2,0,0,1,0,0,48.57933262,0,0,0,0,0,0,1,16,2,3,0,4.49980967,1.609437912,3.236606664,4.304444444,12,444,432,0.888888889,17,0,10,1.333973584,0,0,39,36,0.074074074,2,0.004115226,1,0.002057613,0.080246914,10,0.020576132,0,0,4,0.008230453,49,0.100823045,1,0.002057613,23,0.047325103,9,0.018518519,0.372427984,2,0.004115226,9,0.018518519,486,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0667_U1,WS0667,English,No one helped me,Not at all,0,1,I completed the assignment on a laptop or desktop computer.,6.397889646,0.696969697,7,0.184210526,5.221493158,2.083481674,0.924652001,2.738473394,0.811944354,0.107021599,0.046570581,0.15356767,0.017401961,-0.018259804,0.035661765,0.99999,0.576845412,0.412037037,-0.885857236,2.86720268,7.618498113,0.740637603,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,5,0,3,0,0,0,0,0,0,2,48.97288987,0,0,8,0,0,1,5,25,0,2,0,3.43893771,2.564949357,3.662551258,5.540740741,4,415,411,0.870762712,32,8,8,1.254043948,0,0,5,3,0.006355932,1,0.002118644,1,0.002118644,0.01059322,2,0.004237288,0,0,14,0.029661017,37,0.078389831,1,0.002118644,41,0.086864407,5,0.01059322,0.48940678,0,0,0,0,472,Yes,,1,Persuade,Annotator2,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0667_U2,WS0667,English,No one helped me,A little,0,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",5.93309722,0.428571429,2,0.043478261,3.79500055,3.141596246,3.349448038,2.925877872,3.367638911,0.164716489,0.0263386,0.191055089,0.033467742,-0.001728111,0.035195853,0.90246,0.127585919,0.723471295,-0.465008886,2.985247706,1.687464137,0.70826664,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,1,0,1,0,0,0,0,0,0,0,0,0,60.60350676,0,0,0,0,0,1,3,10,3,4,0,3.861898618,2.197224577,3.299257604,4.551401869,50,272,222,0.469344609,14,4,5,1.063364307,0,0,27,20,0.042283298,3,0.006342495,4,0.00845666,0.057082452,10,0.021141649,0,0,5,0.010570825,36,0.076109937,0,0,25,0.052854123,20,0.042283298,0.389006342,0,0,3,0.006342495,473,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0667_U3,WS0667,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.179866975,0.5,8,0.242424242,5.494805775,2.212794815,0.977416853,2.560746106,0.944091403,0.085753446,0.037774123,0.123527569,0.013075658,-0.001315789,0.014391447,0.81085,0.365189374,0.646164495,-0.13421959,2.917010723,1.311278291,1.035929,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,0,0,0,0,0,47.89810555,0,0,0,0,1,0,3,11,3,5,0,3.634291264,2.079441542,3.315759158,4.933993399,1,221,220,0.662650602,25,4,14,1.635168716,0,0,12,5,0.015060241,0,0,7,0.021084337,0.036144578,3,0.009036145,0,0,5,0.015060241,4,0.012048193,0,0,26,0.078313253,6,0.018072289,0.472891566,0,0,0,0,332,No,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0668_U1,WS0668,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.706708781,0.827586207,24,0.203389831,5.320029104,3.114590161,2.836440617,3.40977427,2.496908658,0.105138023,0.018947836,0.124085859,0.017409766,-0.005015924,0.02242569,0.91563,0.309453374,0.607570348,-1.047433722,2.963022363,6.318220233,2.314923939,0,0,0,0,0,0,0,1,5,1,0,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,100.3141145,0,0,0,0,1,1,4,50,0,3,0,4.441581165,2.397895273,3.40067074,4.620985011,14,458,444,0.424068768,40,8,9,0.982089721,0,0,15,11,0.010506208,0,0,4,0.003820439,0.014326648,19,0.018147087,8,0.007640879,14,0.013371538,78,0.074498567,1,0.00095511,69,0.065902579,27,0.025787966,0.337153773,5,0.004775549,3,0.00286533,1047,Yes,,1,Persuade,Annotator2,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0668_U2,WS0668,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.277023934,0.472222222,17,0.193181818,5.268794927,3.276507488,3.441198672,3.415736685,3.318904865,0.134429779,0.033728144,0.168157923,0.026903553,-0.005160745,0.032064298,0.92872,0.199086753,0.575287851,-0.875688009,3.186694971,2.942871098,2.369110528,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,72.93636562,0,0,0,0,0,1,3,17,7,8,0,4.177800242,2.197224577,3.426118425,4.427597956,13,596,583,0.887366819,36,4,12,1.284765411,0,0,31,24,0.03652968,0,0,7,0.01065449,0.04718417,13,0.01978691,14,0.02130898,4,0.00608828,33,0.050228311,0,0,40,0.060882801,30,0.0456621,0.392694064,0,0,8,0.01217656,657,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0668_U3,WS0668,English,No one helped me,A little,1,1,I completed the assignment on a laptop or desktop computer.,6.460864653,0.541666667,8,0.210526316,5.354349415,3.284372571,3.063354423,3.060756658,3.231355744,0.08424315,0.035820697,0.120063847,0.015153631,-0.010265363,0.025418994,0.9385,0.124009742,0.593742052,-0.123178359,2.774028366,3.076357284,1.577968053,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,16,0,2,0,1,0,1,0,0,0,0,0,42.44645053,0,0,0,0,0,2,2,17,0,3,0,3.792676248,2.079441542,3.380723056,4.473239437,24,306,282,0.713924051,18,0,8,1.327423605,0,0,13,9,0.02278481,1,0.002531646,3,0.007594937,0.032911392,9,0.02278481,3,0.007594937,5,0.012658228,14,0.035443038,1,0.002531646,27,0.06835443,7,0.017721519,0.491139241,2,0.005063291,0,0,395,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0669_U1,WS0669,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.609158532,0.707317073,5,0.080645161,4.402382556,2.885114006,1.059459096,3.480500784,0.91546542,0.08434521,0.05304628,0.13739149,0.022144112,-0.030272408,0.05241652,0.94187,0.3886852,0.613221122,-0.251131476,3.047371462,4.584003582,0.893817572,0,0,0,0,1,0,0,0,0,0,0,0,1,0,0,0,1,1,3,0,0,0,0,1,1,0,0,0,0,87.72711793,0,0,0,0,0,0,4,33,0,4,0,3.848372978,2.48490665,4.390032917,4.738898757,4,532,528,0.839427663,43,6,7,1.083816969,0,0,7,2,0.00317965,2,0.00317965,3,0.004769475,0.011128776,9,0.014308426,0,0,9,0.014308426,50,0.079491256,1,0.001589825,47,0.074721781,18,0.028616852,0.421303657,0,0,0,0,629,Yes,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0669_U2,WS0669,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.188171832,0.5,9,0.225,5.420534999,2.67309435,1.288449381,2.966085919,1.42158774,0.18899005,0.06070446,0.249694509,0.026190476,-0.010079365,0.036269841,0.84368,0.292648324,0.667637363,0.06764873,3.092414401,2.874660584,0.495719285,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,0,0,1,0,0,0,0,0,5,0,0,0,0,0,47.38540159,0,0,0,0,0,2,4,15,0,3,0,3.187623281,2.564949357,3.388714602,4.876190476,95,302,207,0.581460674,17,0,7,1.315191723,0,0,16,4,0.011235955,5,0.014044944,7,0.019662921,0.04494382,9,0.025280899,0,0,9,0.025280899,5,0.014044944,0,0,29,0.081460674,11,0.030898876,0.52247191,0,0,0,0,356,No,,1,Persuade,Annotator2,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0671_U1,WS0671,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.397889646,0.696969697,7,0.184210526,5.221493158,2.083481674,0.924652001,2.738473394,0.811944354,0.107021599,0.046570581,0.15356767,0.017401961,-0.018259804,0.035661765,0.99999,0.576845412,0.412037037,-0.885857236,2.86720268,7.618498113,0.740637603,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,5,0,3,0,0,0,0,0,0,2,48.97288987,0,0,8,0,0,1,5,25,0,2,0,3.43893771,2.564949357,3.662551258,5.540740741,4,415,411,0.870762712,32,8,8,1.254043948,0,0,5,3,0.006355932,1,0.002118644,1,0.002118644,0.01059322,2,0.004237288,0,0,14,0.029661017,37,0.078389831,1,0.002118644,41,0.086864407,5,0.01059322,0.48940678,0,0,0,0,472,Yes,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0671_U2,WS0671,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.244101812,0.5,14,0.318181818,5.765760903,2.719093355,3.107915991,3.010754181,2.818904292,0.126138702,0.05260348,0.178742182,0.012163561,-0.01247412,0.024637681,0.8142,0.382732313,0.670117732,-0.007767736,2.812579072,1.222998033,1.325531955,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,0,0,0,0,0,3,49.24579287,0,0,0,0,0,1,1,12,2,4,0,4.377851263,1.791759469,4.048672074,4.985355649,109,516,407,0.757914339,16,2,8,1.201330996,0,0,15,13,0.024208566,1,0.001862197,1,0.001862197,0.027932961,10,0.018621974,0,0,9,0.016759777,17,0.031657356,0,0,22,0.040968343,13,0.024208566,0.454376164,0,0,1,0.001862197,537,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0672_U1,WS0672,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.473123173,0.625,10,0.243902439,5.500859923,2.252862718,0.983899032,3.241545881,1.044332722,0.080993166,0.044520808,0.125513974,0.012447479,-0.012237395,0.024684874,0.83682,0.39268773,0.602002146,-0.36175489,2.975066707,2.832710716,1.197025015,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1,0,0,0,2,39.2625827,0,0,0,0,2,1,5,22,0,4,0,3.579236277,2.564949357,3.453846461,4.903433476,81,340,259,0.489603025,20,0,6,1.091390997,0,0,14,12,0.02268431,0,0,2,0.003780718,0.026465028,3,0.005671078,0,0,5,0.009451796,40,0.075614367,0,0,38,0.071833648,15,0.028355388,0.45557656,1,0.001890359,0,0,529,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0672_U2,WS0672,English,Someone else,Somewhat,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.712943477,0.78125,6,0.095238095,4.56682528,3.040974042,3.312230859,3.103832828,3.2221585,0.127755135,0.04849359,0.176248725,0.015673077,-0.005240385,0.020913462,0.94182,0.331824559,0.61430083,-0.668028814,2.967582811,4.109885532,1.159870884,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,3,2,0,0,0,0,3,0,0,0,0,1,66.84256772,0,0,0,0,0,0,4,27,0,1,0,3.947390149,2.302585093,3.63030571,4.826254826,1,509,508,0.886561955,33,7,11,1.305291331,0,0,34,19,0.033158813,3,0.005235602,12,0.020942408,0.059336824,9,0.015706806,3,0.005235602,10,0.017452007,23,0.040139616,1,0.001745201,39,0.068062827,23,0.040139616,0.434554974,0,0,2,0.003490401,573,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0673_U1,WS0673,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.717965228,0.818181818,13,0.1625,5.09681299,3.201137675,2.18591623,3.210318669,1.989842942,0.076302282,0.04617284,0.122475122,0.015524691,-0.030864198,0.046388889,0.89762,0.603095481,0.51353036,-0.57428856,2.709996989,6.116263463,1.529904951,0,0,1,0,1,0,1,0,1,2,1,0,2,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,112.1062115,0,0,0,0,1,0,3,38,0,3,0,4.590056548,2.079441542,4.08930632,5.393401015,124,825,701,0.736344538,31,0,9,1.019273419,4,0.004201681,8,6,0.006302521,0,0,2,0.00210084,0.008403361,14,0.014705882,0,0,9,0.009453782,54,0.056722689,1,0.00105042,59,0.06197479,21,0.022058824,0.387605042,1,0.00105042,0,0,952,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0673_U2,WS0673,English,No one helped me,A little,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.581418847,0.685714286,7,0.137254902,4.929099097,2.707461048,1.077534549,3.023243576,1.07290564,0.116485573,0.047073134,0.163538257,0.012014315,-0.02208589,0.034100204,0.81241,0.692199549,0.724514622,0.359424899,2.87885017,8.014106369,1.224454028,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,9,0,0,0,4,0,2,0,0,0,0,0,41.26843508,0,0,10,0,0,1,6,25,0,2,1,3.538886784,2.63905733,4.081879068,5.941908714,1,474,473,0.831282953,26,12,17,1.489634776,0,0,11,8,0.014059754,1,0.001757469,2,0.003514938,0.019332162,6,0.010544815,1,0.001757469,10,0.017574692,9,0.015817223,1,0.001757469,47,0.082601054,13,0.0228471,0.520210896,1,0.001757469,4,0.007029877,569,No,,1,Persuade,Annotator2,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0674_U1,WS0674,English,No one helped me,A lot,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.596500328,0.705882353,19,0.204301075,5.324477562,3.368824719,1.113965854,3.521028908,1.107597667,0.117416349,0.047619048,0.165035396,0.010604027,-0.007684564,0.018288591,0.87732,0.164660942,0.551966528,-1.105809036,2.933499024,2.794306141,0.922737399,0,0,0,0,0,0,0,1,2,0,0,0,2,0,0,0,1,1,0,0,0,0,0,3,0,0,1,0,1,96.28780767,0,0,0,0,0,2,4,26,0,1,1,4.207402648,2.397895273,4.050168646,4.439783491,7,278,271,0.333743842,36,0,5,0.854769576,0,0,35,15,0.018472906,7,0.00862069,13,0.016009852,0.043103448,13,0.016009852,0,0,12,0.014778325,32,0.039408867,0,0,39,0.048029557,32,0.039408867,0.357142857,0,0,4,0.004926108,812,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0675_U1,WS0675,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.578715956,0.717948718,8,0.133333333,4.900324273,2.949743266,0.880349561,3.115420679,0.913198213,0.095725799,0.035991115,0.131716914,0.010413081,-0.013898451,0.024311532,0.85012,0.516045956,0.669126877,0.207613663,3.033673572,8.351632564,1.036593443,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,2,1,0,1,0,1,0,1,0,0,0,0,2,81.77421144,0,0,8,0,1,2,5,30,0,2,0,3.787680039,2.564949357,3.901747607,5.432055749,37,269,232,0.335260116,12,0,6,0.985449838,4,0.005780347,23,16,0.023121387,1,0.001445087,6,0.00867052,0.033236994,13,0.018786127,0,0,6,0.00867052,38,0.054913295,1,0.001445087,49,0.070809249,11,0.015895954,0.410404624,1,0.001445087,5,0.007225434,692,Yes,,1,Persuade,Annotator2,Final,N/A,N/A
WS0675_U2,WS0675,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.418364936,0.523809524,7,0.122807018,4.818724043,2.96414887,0.793537519,3.053414365,0.843559301,0.110644979,0.062838786,0.173483765,0.013605442,-0.013548753,0.027154195,0.92875,0.379899956,0.723138889,0.17053803,3.041183619,2.552281337,1.548001846,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,0,0,0,0,0,1,0,0,0,0,0,48.84755723,0,0,0,0,0,1,3,13,0,4,0,3.88955015,2.197224577,4.151280264,4.720454545,35,373,338,0.676,15,0,15,1.491361694,0,0,24,16,0.032,2,0.004,6,0.012,0.048,8,0.016,0,0,7,0.014,15,0.03,0,0,25,0.05,16,0.032,0.46,1,0.002,5,0.01,500,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0676_U1,WS0676,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.522503419,0.696969697,12,0.206896552,5.337040609,3.310279823,0.989835202,3.09991333,1.078729547,0.142410824,0.031070039,0.173480863,0.035323887,-0.005313765,0.040637652,0.82541,0.451307019,0.71027551,-0.455044621,2.879694656,2.325124281,1.138515167,0,0,1,0,0,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.81252585,0,0,0,0,3,2,3,25,0,3,0,3.997180814,2.197224577,3.959271661,4.975510204,4,430,426,0.767567568,35,4,13,1.387806539,0,0,36,27,0.048648649,6,0.010810811,3,0.005405405,0.064864865,12,0.021621622,0,0,4,0.007207207,30,0.054054054,0,0,37,0.066666667,15,0.027027027,0.416216216,0,0,3,0.005405405,555,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0676_U2,WS0676,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.386952512,0.56,9,0.142857143,4.968820744,3.28093624,3.473460736,3.090132246,3.250889741,0.0961193,0.0529031,0.1490224,0.012203557,-0.011462451,0.023666008,0.80365,0.435472258,0.676012322,0.241704067,2.591225562,2.049243808,1.45362937,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,13,1,0,0,0,0,0,0,0,0,0,0,47.06464004,0,0,0,0,0,1,2,14,5,3,0,4.270695952,1.945910149,3.78548722,4.930139721,11,524,513,0.906360424,27,3,17,1.491856447,0,0,38,30,0.053003534,3,0.005300353,5,0.008833922,0.067137809,16,0.028268551,0,0,4,0.007067138,38,0.067137809,0,0,28,0.049469965,15,0.026501767,0.45229682,1,0.001766784,4,0.007067138,566,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0677_U1,WS0677,English,A teacher,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.397889646,0.696969697,7,0.184210526,5.221493158,2.083481674,0.924652001,2.738473394,0.811944354,0.107021599,0.046570581,0.15356767,0.017401961,-0.018259804,0.035661765,0.99999,0.576845412,0.412037037,-0.885857236,2.86720268,7.618498113,0.740637603,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,5,0,3,0,0,0,0,0,0,2,48.97288987,0,0,8,0,0,1,5,25,0,2,0,3.43893771,2.564949357,3.662551258,5.540740741,4,415,411,0.870762712,32,8,8,1.254043948,0,0,5,3,0.006355932,1,0.002118644,1,0.002118644,0.01059322,2,0.004237288,0,0,14,0.029661017,37,0.078389831,1,0.002118644,41,0.086864407,5,0.01059322,0.48940678,0,0,0,0,472,Yes,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0677_U2,WS0677,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.121495502,0.458333333,9,0.138461538,4.937788853,3.089553419,1.075445726,3.331444938,0.862942973,0.147523665,0.050180375,0.19770404,0.028246753,-0.008441558,0.036688312,0.74673,0.308358708,0.607883441,-0.287962342,2.986664648,1.433382423,0.569746386,0,0,0,0,0,0,0,0,2,1,0,0,1,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,47.39897487,0,0,0,0,0,0,3,11,5,5,0,4.051784948,2.079441542,3.451130364,4.558695652,2,489,487,0.962450593,27,4,8,1.225574862,0,0,33,18,0.035573123,4,0.007905138,11,0.02173913,0.065217391,11,0.02173913,0,0,7,0.013833992,4,0.007905138,0,0,28,0.055335968,15,0.029644269,0.432806324,1,0.001976285,1,0.001976285,506,No,,1,Persuade,Annotator2,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0678_U1,WS0678,English,"A parent, brother, sister or other relative",A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.397889646,0.696969697,7,0.184210526,5.221493158,2.083481674,0.924652001,2.738473394,0.811944354,0.107021599,0.046570581,0.15356767,0.017401961,-0.018259804,0.035661765,0.99999,0.576845412,0.412037037,-0.885857236,2.86720268,7.618498113,0.740637603,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,5,0,3,0,0,0,0,0,0,2,48.97288987,0,0,8,0,0,1,5,25,0,2,0,3.43893771,2.564949357,3.662551258,5.540740741,4,415,411,0.870762712,32,8,8,1.254043948,0,0,5,3,0.006355932,1,0.002118644,1,0.002118644,0.01059322,2,0.004237288,0,0,14,0.029661017,37,0.078389831,1,0.002118644,41,0.086864407,5,0.01059322,0.48940678,0,0,0,0,472,Yes,,1,Persuade,Annotator2,Final,DUP,Duplicates
WS0678_U2,WS0678,English,No one helped me,Somewhat,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.377576927,0.6,5,0.098039216,4.59551589,3.312832115,3.431273212,2.625161604,3.434598527,0.150213939,0.064540432,0.214754371,0.019820442,-0.012154696,0.031975138,0.90895,0.3868407,0.662343307,-0.248731924,3.288392655,1.944759355,0.583964298,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,76.05256194,0,0,0,0,0,2,4,14,0,0,0,3.563882964,2.302585093,3.409205325,4.926345609,1,216,215,0.5375,24,5,7,1.267171728,0,0,22,9,0.0225,1,0.0025,12,0.03,0.055,4,0.01,0,0,3,0.0075,26,0.065,0,0,25,0.0625,11,0.0275,0.4175,0,0,2,0.005,400,No,,1,Persuade,Annotator2,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0679_U1,WS0679,English,,,#NULL!,#NULL!,,6.203892665,0.466666667,3,0.081081081,4.407707552,2.58249015,1.011142689,2.787738711,0.987666631,0.162270775,0.037173038,0.199408602,0.019366197,-0.004049296,0.023415493,0.77198,0.101794647,0.604866667,-0.035168802,2.681967747,0.955889456,0.403104485,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,1,0,0,2,0,0,51.13609679,0,0,0,0,0,1,2,7,4,1,0,3.706579031,1.945910149,3.823120011,4.70877193,5,82,77,0.243670886,5,3,3,1.020927439,0,0,14,10,0.03164557,0,0,4,0.012658228,0.044303797,6,0.018987342,0,0,10,0.03164557,11,0.034810127,0,0,18,0.056962025,8,0.025316456,0.506329114,0,0,3,0.009493671,316,No,,1,Persuade,Annotator2,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0680_U1,WS0680,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.494686929,0.576923077,4,0.081632653,4.414404918,3.364251042,0.940180529,3.191424403,1.039665963,0.148688521,0.02357002,0.172258541,0.038856016,-0.00295858,0.041814596,0.94813,0.306808792,0.695208333,-0.483832609,2.853279524,2.370705623,1.663912668,0,0,1,1,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.11952697,0,0,0,0,0,1,1,18,0,6,0,4.430816799,1.791759469,4.217753234,4.742063492,2,411,409,0.742286751,27,2,15,1.450606723,0,0,27,14,0.025408348,10,0.01814882,3,0.005444646,0.049001815,11,0.019963702,0,0,5,0.00907441,38,0.068965517,0,0,28,0.050816697,16,0.029038113,0.430127042,0,0,5,0.00907441,551,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0680_U2,WS0680,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.510525989,0.62962963,3,0.046875,3.868593448,3.224244252,3.413219025,3.130463871,3.439273153,0.11668329,0.038014868,0.154677061,0.0157173,-0.008544304,0.024261603,0.88853,0.284910637,0.7086996,-0.330189797,3.10604012,1.488904255,1.538225351,0,0,0,0,1,0,0,0,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.12715318,0,0,0,0,0,0,2,18,0,7,0,4.545420182,1.609437912,3.889780569,4.581740977,2,475,473,0.914893617,26,2,15,1.477317217,0,0,40,32,0.061895551,1,0.001934236,7,0.013539652,0.077369439,11,0.021276596,0,0,7,0.013539652,33,0.063829787,0,0,29,0.056092843,15,0.02901354,0.415860735,1,0.001934236,16,0.030947776,517,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0681_U1,WS0681,English,No one helped me,A lot,0,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.590338173,0.677419355,8,0.097560976,4.590675398,3.316250583,2.539202958,3.470062955,2.011365752,0.1445552,0.032577873,0.177133073,0.023308271,-0.010827068,0.034135338,0.74485,0.455580897,0.538759171,-0.807057825,2.888681233,2.732302918,2.652397374,0,0,0,0,3,0,1,0,0,1,1,0,2,0,0,0,0,3,0,0,0,0,0,1,0,0,0,0,0,69.47388096,0,0,0,0,1,2,4,24,0,1,0,4.007333185,2.48490665,4.169533998,4.91969697,21,620,599,0.809459459,27,0,13,1.268755013,0,0,31,24,0.032432432,1,0.001351351,6,0.008108108,0.041891892,14,0.018918919,0,0,11,0.014864865,55,0.074324324,0,0,36,0.048648649,19,0.025675676,0.405405405,0,0,0,0,740,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0682_U1,WS0682,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.032439339,0.375,6,0.181818182,5.208492117,2.577509475,2.574866088,2.642078884,2.487641196,0.156673849,0.028081521,0.18475537,0.034465021,-0.002880658,0.037345679,0.99999,-0.043062132,0.785751137,-0.340869928,3.025169266,1.941070626,1.248273554,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,27.33602859,0,0,0,0,0,5,1,9,0,1,0,3.701301974,1.791759469,3.247489996,4.049382716,66,253,187,0.700374532,11,0,3,1.087637873,0,0,18,14,0.052434457,1,0.003745318,3,0.011235955,0.06741573,6,0.02247191,3,0.011235955,3,0.011235955,22,0.082397004,0,0,18,0.06741573,11,0.041198502,0.498127341,0,0,2,0.007490637,267,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0682_U2,WS0682,English,No one helped me,A little,0,1,I completed the assignment on a laptop or desktop computer.,6.633811733,0.8125,5,0.119047619,4.787888489,3.354404315,3.341171349,3.134786379,3.532177439,0.119980024,0.032372881,0.152352906,0.018559322,-0.01220339,0.030762712,0.68581,0.123725735,0.53884701,-0.341118214,2.913104738,1.885426978,1.388409068,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,24.55872733,0,0,0,0,0,1,0,15,0,0,0,4.987025428,0.693147181,3.728647648,4.354948805,45,183,138,0.43125,12,0,7,1.359361103,0,0,13,9,0.028125,2,0.00625,2,0.00625,0.040625,7,0.021875,2,0.00625,2,0.00625,21,0.065625,0,0,16,0.05,13,0.040625,0.5375,0,0,4,0.0125,320,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0683_U1,WS0683,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.422678103,0.608695652,10,0.243902439,5.500859923,2.797297418,0.802056982,2.32856779,0.517832314,0.116503027,0.04209622,0.158599247,0.025085911,-0.001632302,0.026718213,0.87408,0.322201772,0.566995777,0.401409594,2.757187588,2.099106848,0.418821089,0,0,0,0,0,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.16011129,0,0,0,0,1,2,3,16,0,2,0,3.261586943,2.397895273,2.985874563,5.045296167,3,252,249,0.792993631,26,4,7,1.367225308,0,0,18,13,0.041401274,1,0.003184713,4,0.012738854,0.057324841,5,0.015923567,0,0,5,0.015923567,25,0.079617834,0,0,27,0.085987261,9,0.02866242,0.372611465,1,0.003184713,6,0.01910828,314,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0683_U2,WS0683,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.313907143,0.5,4,0.057971014,4.077046043,3.258052762,3.443765172,2.945488223,3.57844369,0.117551191,0.044106565,0.161657756,0.016322816,-0.014563107,0.030885922,0.80078,0.143982938,0.655848986,-0.383300604,3.135590038,2.255844887,1.299729831,0,0,0,0,0,0,0,0,2,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,29.36009499,0,0,0,0,0,1,2,14,4,7,0,4.072683065,1.945910149,3.689740443,4.442822384,59,238,179,0.389978214,11,3,6,1.148352599,0,0,28,21,0.045751634,2,0.004357298,5,0.010893246,0.061002179,13,0.02832244,5,0.010893246,4,0.008714597,45,0.098039216,0,0,31,0.067538126,18,0.039215686,0.437908497,0,0,7,0.015250545,459,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0684_U1,WS0684,English,No one helped me,A little,1,0,I completed the assignment on a laptop or desktop computer.,6.397889646,0.696969697,7,0.184210526,5.221493158,2.083481674,0.924652001,2.738473394,0.811944354,0.107021599,0.046570581,0.15356767,0.017401961,-0.018259804,0.035661765,0.99999,0.576845412,0.412037037,-0.885857236,2.86720268,7.618498113,0.740637603,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,5,0,3,0,0,0,0,0,0,2,48.97288987,0,0,8,0,0,1,5,25,0,2,0,3.43893771,2.564949357,3.662551258,5.540740741,4,415,411,0.870762712,32,8,8,1.254043948,0,0,5,3,0.006355932,1,0.002118644,1,0.002118644,0.01059322,2,0.004237288,0,0,14,0.029661017,37,0.078389831,1,0.002118644,41,0.086864407,5,0.01059322,0.48940678,0,0,0,0,472,Yes,,1,Persuade,Annotator2,Final,DUP,Duplicates
WS0684_U2,WS0684,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.600554516,0.710526316,5,0.075757576,4.340652089,3.000163295,0.856991791,3.217135038,0.848128884,0.144393868,0.070098832,0.2144927,0.014591195,-0.014119497,0.028710692,0.912,0.654232844,0.652301763,0.087086057,3.143890402,3.423188061,1.209730552,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,119.781408,0,0,0,0,2,3,4,30,0,1,0,4.112134104,2.564949357,4.004828019,5.012594458,1,774,773,0.904093567,42,5,19,1.365903777,0,0,59,37,0.043274854,5,0.005847953,17,0.019883041,0.069005848,20,0.023391813,0,0,4,0.004678363,8,0.009356725,0,0,43,0.050292398,22,0.025730994,0.352046784,1,0.001169591,2,0.002339181,855,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0685_U1,WS0685,English,No one helped me,A little,0,0,I completed the assignment on a laptop or desktop computer.,6.397127873,0.466666667,1,0.033333333,3.5361167,3.314371859,1.096215006,2.60312526,1.059882864,0.105886905,0.056194296,0.162081201,0.029044118,-0.002328431,0.031372549,0.99999,0.037459149,0.701894608,-0.033977713,3.227105425,2.402258694,0.21491219,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,4,0,0,0,0,0,21.98313668,0,0,0,0,1,3,2,9,0,1,0,3.708682081,1.609437912,3.050322123,4.352941176,160,173,13,0.057268722,2,0,2,0.99169436,0,0,11,7,0.030837004,1,0.004405286,3,0.013215859,0.04845815,5,0.022026432,1,0.004405286,5,0.022026432,9,0.039647577,1,0.004405286,17,0.074889868,12,0.052863436,0.488986784,0,0,2,0.008810573,227,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0686_U1,WS0686,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,5.856958405,0.375,5,0.263157895,5.57654701,2.297924961,0.984650102,1.959367995,0.986855015,0.106958128,0.051077586,0.158035714,0.034698276,-0.004849138,0.039547414,0.83737,0.3417497,0.715759649,-0.083109471,3.116216055,2.187239613,0.260867878,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,1,38.91508279,0,0,0,0,0,4,2,9,0,1,0,3.63758616,1.791759469,3.669550593,4.671052632,7,260,253,0.969348659,18,3,8,1.500392115,0,0,16,9,0.034482759,4,0.01532567,3,0.011494253,0.061302682,5,0.019157088,0,0,2,0.007662835,5,0.019157088,1,0.003831418,19,0.072796935,7,0.026819923,0.478927203,0,0,2,0.007662835,261,No,,1,Persuade,Annotator2,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0686_U2,WS0686,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.481154587,0.678571429,4,0.055555556,4.035223439,2.909660804,3.440500764,3.134541866,3.224198957,0.105370786,0.040288176,0.145658962,0.015441176,-0.01127451,0.026715686,0.83369,0.37347857,0.607443564,-0.525523576,2.97903198,1.645173762,1.094931615,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,47.44563535,0,0,0,0,1,3,3,19,3,0,0,4.145116888,2.079441542,4.210965894,4.879207921,32,562,530,0.913793103,29,4,16,1.456156533,0,0,40,36,0.062068966,3,0.005172414,1,0.001724138,0.068965517,11,0.018965517,0,0,5,0.00862069,52,0.089655172,0,0,32,0.055172414,15,0.025862069,0.406896552,0,0,6,0.010344828,580,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0686_U3,WS0686,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.041099209,0.5,3,0.111111111,4.719490443,2.73863166,2.892400824,2.748037761,3.215343668,0.067445055,0.03229739,0.099742445,0.008365385,-0.007211538,0.015576923,0.4885,0.334150396,0.556646154,0.154971436,3.027617244,1.278084168,1.113579566,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,30.94660937,0,0,0,0,1,1,2,8,0,3,0,3.768922162,1.791759469,3.351563762,4.773076923,22,292,270,0.868167203,13,2,11,1.560740613,0,0,11,7,0.022508039,0,0,4,0.012861736,0.035369775,5,0.01607717,0,0,2,0.006430868,7,0.022508039,0,0,16,0.051446945,5,0.01607717,0.485530547,0,0,0,0,311,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0686_U4,WS0686,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.27744875,0.625,3,0.1875,5.239098007,2.295199644,3.17676036,1.967008328,3.577375354,0.122291667,0.040625,0.162916667,0.02296875,-0.0096875,0.03265625,0.57006,0.328464048,0.495842105,0.088190164,2.84335747,0.471560092,0.655742293,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,12.79053405,0,0,0,0,0,1,0,7,0,0,0,4.382026635,0.693147181,3.420057035,4.86875,37,150,113,0.645714286,6,0,5,1.470872305,0,0,4,2,0.011428571,0,0,2,0.011428571,0.022857143,5,0.028571429,0,0,2,0.011428571,16,0.091428571,0,0,8,0.045714286,2,0.011428571,0.514285714,0,0,0,0,175,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0687_U1,WS0687,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.522941651,0.681818182,11,0.192982456,5.267767723,2.771507667,0.908155692,3.078499098,0.856661579,0.085730464,0.041457684,0.127188148,0.013979592,-0.013435374,0.027414966,1,0.392469834,0.633876063,-0.736820889,2.94941163,10.56171994,1.591623793,0,1,1,0,2,0,0,0,5,0,1,0,1,0,0,0,0,0,0,2,0,4,0,1,0,0,0,0,1,130.0251624,0,0,12,1,3,0,4,36,0,3,1,4.008730809,2.564949357,4.121583354,4.994413408,7,777,770,0.903755869,45,14,8,1.01660181,0,0,15,12,0.014084507,1,0.001173709,2,0.002347418,0.017605634,10,0.011737089,3,0.003521127,11,0.012910798,50,0.058685446,1,0.001173709,59,0.069248826,18,0.021126761,0.308685446,0,0,1,0.001173709,852,Yes,,1,Persuade,Annotator2,Final,2,"Moderate Value Argument--Some Source Integration, Claims Supported, but no Bibliography or Single Citation Bib"
WS0687_U2,WS0687,English,No one helped me,A little,1,1,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.451702022,0.619047619,13,0.220338983,5.399695386,3.202791151,3.209797664,2.482754084,3.251476903,0.151972763,0.029337712,0.181310475,0.024195402,-0.007988506,0.032183908,0.88059,0.194011375,0.589934633,-0.013286885,2.941421271,1.318642209,1.187175799,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,82.68046397,0,0,0,0,1,0,2,13,3,3,0,4.26969745,1.791759469,4.000107601,4.554778555,6,268,262,0.543568465,24,4,9,1.293852913,0,0,20,11,0.022821577,2,0.004149378,7,0.014522822,0.041493776,11,0.022821577,0,0,3,0.006224066,28,0.058091286,0,0,25,0.05186722,14,0.029045643,0.400414938,0,0,1,0.002074689,482,No,,1,Persuade,Annotator2,Final,3,Moderate Value Argument--No Source Integration but Claims Supported
WS0689_U1,WS0689,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.450086078,0.583333333,6,0.2,5.303304908,1.658085211,2.457343905,2.78601118,3.0133722,0.15650972,0.053335117,0.209844837,0.040262172,-0.011891386,0.052153558,1,0.348258217,0.649754213,-0.099422134,3.128293964,3.182391848,0.286600701,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,31.93326749,0,0,0,0,0,2,2,18,0,2,0,3.507807117,2.079441542,4.065798451,4.65917603,9,229,220,0.743243243,24,0,6,1.327773008,0,0,25,23,0.077702703,1,0.003378378,1,0.003378378,0.084459459,8,0.027027027,0,0,0,0,9,0.030405405,1,0.003378378,27,0.091216216,2,0.006756757,0.476351351,2,0.006756757,3,0.010135135,296,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0689_U2,WS0689,English,No one helped me,Somewhat,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.758344245,0.869565217,6,0.12,4.795790546,3.347710544,3.422557039,3.303101247,3.466935288,0.100305958,0.039816678,0.140122635,0.010211268,-0.018485915,0.028697183,0.89252,0.262388565,0.600732861,-0.091261448,2.933270194,1.197424531,1.370691434,0,0,1,0,0,0,0,0,3,0,0,0,1,0,0,0,1,0,0,0,0,0,1,1,0,0,0,0,0,46.02843741,0,0,0,0,1,1,0,22,0,0,0,5.354224998,0.693147181,3.918911731,4.479905437,27,435,408,0.877419355,20,0,13,1.461753405,0,0,24,20,0.043010753,1,0.002150538,3,0.006451613,0.051612903,12,0.025806452,0,0,8,0.017204301,26,0.055913978,0,0,23,0.049462366,19,0.040860215,0.458064516,1,0.002150538,5,0.010752688,465,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0690_U1,WS0690,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.470392056,0.6875,1,0.035714286,3.603165936,2.98814633,2.570083774,2.553264106,2.820228966,0.130259374,0.073395445,0.203654819,0.030555556,-0.001449275,0.032004831,0.96785,0.18367016,0.724250355,0.25232136,3.260578276,1.830804542,0.350863967,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,34.2339546,0,0,0,0,0,1,1,13,0,1,0,3.723280881,1.609437912,3.198194751,4.47826087,3,121,118,0.51754386,14,1,3,1.150998679,0,0,30,25,0.109649123,1,0.004385965,4,0.01754386,0.131578947,3,0.013157895,0,0,3,0.013157895,5,0.021929825,0,0,17,0.074561404,8,0.035087719,0.416666667,1,0.004385965,7,0.030701754,228,No,,1,Persuade,Annotator2,Final,N/A,N/A
WS0690_U2,WS0690,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.39223059,0.541666667,1,0.012658228,2.614342113,3.30529541,3.166949559,3.328527112,2.860849922,0.111054527,0.04521019,0.156264717,0.010302457,-0.010964083,0.021266541,0.83086,0.264482846,0.633109067,-0.667846965,2.954860179,1.33431672,1.981859178,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,47.92208217,0,0,0,1,0,3,2,14,5,0,0,4.321290399,1.945910149,3.717926231,4.518026565,106,555,449,0.778162912,21,3,8,1.172159597,0,0,56,54,0.093587522,1,0.001733102,1,0.001733102,0.097053726,16,0.027729636,0,0,6,0.010398614,61,0.105719237,0,0,27,0.046793761,18,0.031195841,0.393414211,3,0.005199307,19,0.032928943,577,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0691_U1,WS0691,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.427315819,0.6,4,0.108108108,4.692339208,2.915610864,3.098838255,3.173291156,3.183620027,0.120177833,0.059376645,0.179554478,0.030576923,-0.012179487,0.04275641,0.84604,0.346369652,0.596216753,-0.206795363,2.938037024,1.514762526,0.949257332,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,1,0,0,2,0,0,0,0,2,40.89437497,0,0,0,0,0,1,1,15,0,3,0,4.16924587,1.791759469,3.953927112,4.479381443,2,398,396,0.912442396,21,2,12,1.457121134,0,0,24,22,0.050691244,2,0.004608295,0,0,0.055299539,8,0.01843318,0,0,9,0.020737327,27,0.062211982,0,0,22,0.050691244,11,0.025345622,0.417050691,1,0.002304147,3,0.006912442,434,No,,1,Persuade,Annotator2,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0691_U2,WS0691,English,No one helped me,Not at all,1,1,I completed the assignment on a laptop or desktop computer.,6.313842913,0.631578947,6,0.12244898,4.81582795,3.250367776,3.347706584,3.191611046,3.494829497,0.096660822,0.037338501,0.133999323,0.019702842,-0.006007752,0.025710594,0.72343,0.413557243,0.566715997,-0.293383619,2.824727648,1.505801574,1.376436593,0,0,0,0,0,0,0,0,3,0,0,0,0,0,0,0,0,2,1,0,0,0,1,2,0,0,0,0,0,36.31305748,0,0,0,0,1,0,1,14,1,3,0,4.348986781,1.609437912,3.585580806,4.741602067,8,293,285,0.662790698,18,2,9,1.341043237,0,0,24,21,0.048837209,3,0.006976744,0,0,0.055813953,14,0.03255814,3,0.006976744,9,0.020930233,32,0.074418605,0,0,21,0.048837209,16,0.037209302,0.518604651,2,0.004651163,6,0.013953488,430,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0691_U3,WS0691,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.09288356,0.333333333,1,0.032258065,3.50429728,3.357337339,3.191886269,2.916997135,3.253024365,0.091300723,0.058790763,0.150091486,0.018871595,-0.031420233,0.050291829,0.22693,0.293307831,0.575160509,0.054211632,2.726199273,0.68772043,0.477024867,0,1,0,0,0,0,1,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,3,0,0,0,0,0,23.65261536,0,0,0,0,0,0,2,4,0,3,0,3.927896355,1.609437912,3.853577498,4.618110236,68,282,214,0.756183746,8,2,9,1.515901915,0,0,18,12,0.042402827,1,0.003533569,5,0.017667845,0.06360424,7,0.024734982,0,0,8,0.028268551,20,0.070671378,0,0,11,0.038869258,9,0.03180212,0.540636042,0,0,0,0,283,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0691_U4,WS0691,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.349887962,0.5,3,0.2,5.303304908,1.167857453,3.25904929,2.298631966,3.506052384,0.114304029,0.024945055,0.139249084,0.034807692,-0.007115385,0.041923077,0,0.21203117,0.732119658,-0.616295999,2.788850445,0.277775683,0.202761531,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.171265867,0,0,0,0,0,1,0,5,0,0,0,4.17438727,0.693147181,2.373602224,4.553846154,101,124,23,0.164285714,1,0,2,1.184285738,0,0,6,4,0.028571429,1,0.007142857,1,0.007142857,0.042857143,3,0.021428571,0,0,2,0.014285714,16,0.114285714,0,0,6,0.042857143,1,0.007142857,0.6,1,0.007142857,0,0,140,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0692_U1,WS0692,English,No one helped me,A lot,0,1,I completed the assignment on a laptop or desktop computer.,6.579220798,0.733333333,6,0.193548387,5.270680909,2.448278772,2.510295607,2.746648608,2.468586014,0.107360191,0.050439085,0.157799276,0.033571429,-0.008367347,0.041938776,0.73448,0.262446223,0.692279592,-0.300431798,3.093184695,0.959674008,0.540189689,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31.74050529,0,0,0,0,0,1,1,13,0,0,0,4.114963849,1.386294361,3.302938188,4.542857143,38,137,99,0.361313869,13,1,4,1.193083955,0,0,20,18,0.065693431,1,0.003649635,1,0.003649635,0.072992701,5,0.018248175,0,0,1,0.003649635,29,0.105839416,0,0,16,0.058394161,8,0.02919708,0.467153285,1,0.003649635,2,0.00729927,274,No,,1,Persuade,Annotator2,Final,4,Low Value Argument--No Source Integration with Claims Unsupported
WS0692_U2,WS0692,English,No one helped me,Somewhat,0,1,I completed the assignment on a laptop or desktop computer.,6.542304648,0.666666667,2,0.057142857,4.062903036,3.179880216,3.29304591,2.996215831,3.535581432,0.090409256,0.058079939,0.148489195,0.022991968,-0.014859438,0.037851406,0.60217,0.254328472,0.675063114,-0.399675333,3.018401514,0.450394739,2.116974456,0,0,0,0,0,0,0,0,3,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,1,16.07344101,0,0,0,0,1,0,1,8,0,0,0,4.414816457,1.098612289,3.025629535,4.286290323,36,246,210,0.786516854,8,1,8,1.490836676,0,0,13,10,0.037453184,1,0.003745318,2,0.007490637,0.048689139,7,0.026217228,0,0,6,0.02247191,29,0.108614232,0,0,10,0.037453184,11,0.041198502,0.531835206,0,0,3,0.011235955,267,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0692_U3,WS0692,English,No one helped me,A lot,1,1,I completed the assignment on a laptop or desktop computer.,6.585550066,0.666666667,1,0.026315789,3.307464904,3.305087026,3.130810596,2.832987627,3.253392098,0.087941666,0.079369164,0.16731083,0.01287594,-0.019454887,0.032330827,0.48133,0.23171681,0.654160208,-0.192676366,2.70482189,0.764444713,0.759736782,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,0,0,0,0,2,0,0,0,0,0,21.83647285,0,0,0,0,3,1,1,10,0,0,0,4.197201948,1.386294361,3.721198221,4.409774436,33,235,202,0.701388889,9,1,5,1.263898959,0,0,16,9,0.03125,0,0,7,0.024305556,0.055555556,5,0.017361111,0,0,2,0.006944444,20,0.069444444,0,0,13,0.045138889,10,0.034722222,0.53125,3,0.010416667,3,0.010416667,288,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0692_U4,WS0692,English,No one helped me,Somewhat,1,1,I completed the assignment on a laptop or desktop computer.,6.125824401,0.5,1,0.1,4.615120517,1.889149098,3.026772052,2.33687412,3.109713861,0.104069767,0.022674419,0.126744186,0.011918605,-0.003488372,0.015406977,0,0.016000141,0.819795349,-0.404486698,3.445717933,0.315744852,0.301971176,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.231972285,0,0,0,0,0,1,1,4,0,0,0,3.355735008,1.098612289,3.123019899,4.220930233,24,64,40,0.434782609,2,0,2,1.356773853,0,0,3,1,0.010869565,1,0.010869565,1,0.010869565,0.032608696,3,0.032608696,0,0,1,0.010869565,11,0.119565217,0,0,7,0.076086957,1,0.010869565,0.782608696,0,0,0,0,92,Yes,,2,Inform/Explore,Annotator2,Final,N/A,N/A
WS0693_U1,WS0693,English,No one helped me,Somewhat,1,0,I completed the assignment on a laptop or desktop computer.,6.397889646,0.696969697,7,0.184210526,5.221493158,2.083481674,0.924652001,2.738473394,0.811944354,0.107021599,0.046570581,0.15356767,0.017401961,-0.018259804,0.035661765,0.99999,0.576845412,0.412037037,-0.885857236,2.86720268,7.618498113,0.740637603,0,0,0,0,1,0,0,0,1,0,0,0,2,0,0,0,0,0,0,5,0,3,0,0,0,0,0,0,2,48.97288987,0,0,8,0,0,1,5,25,0,2,0,3.43893771,2.564949357,3.662551258,5.540740741,4,415,411,0.870762712,32,8,8,1.254043948,0,0,5,3,0.006355932,1,0.002118644,1,0.002118644,0.01059322,2,0.004237288,0,0,14,0.029661017,37,0.078389831,1,0.002118644,41,0.086864407,5,0.01059322,0.48940678,0,0,0,0,472,Yes,,1,Persuade,Annotator2,Final,N/A,N/A
WS0693_U2,WS0693,English,No one helped me,Not at all,1,0,"I handwrote the assignment first, then I typed it onto an electronic device (such as computer, tablet, or phone).",6.488741536,0.592592593,10,0.14084507,4.954735409,3.300722885,3.53355957,3.470257941,3.517479367,0.136116977,0.058290608,0.194407585,0.02197327,-0.019300314,0.041273585,0.87921,0.283092503,0.681165873,0.188776451,2.718593364,1.751919287,2.531320771,0,0,0,0,1,0,0,0,4,1,0,0,0,0,0,0,0,4,0,0,0,0,0,3,0,0,0,0,4,69.13055443,0,0,0,0,3,3,3,16,4,1,0,4.248495242,2.197224577,3.604814793,4.595238095,46,563,517,0.736467236,21,4,12,1.257534996,0,0,22,17,0.024216524,0,0,5,0.007122507,0.031339031,6,0.008547009,2,0.002849003,18,0.025641026,44,0.062678063,0,0,31,0.044159544,16,0.022792023,0.43019943,2,0.002849003,2,0.002849003,702,No,,1,Persuade,Annotator2,Final,N/A,N/A