-
Notifications
You must be signed in to change notification settings - Fork 0
/
HR_comma_sep.csv
We can't make this file beautiful and searchable because it's too large.
15001 lines (15001 loc) · 828 KB
/
HR_comma_sep.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
999
1000
EmpName,left,satisfaction_level,last_evaluation,number_project,average_montly_hours,time_spend_company,Work_accident,promotion_last_5years,Department,salary
Scott Herrera,1,0.38,0.53,2.0,157.0,3.0,0,0,sales,low
Michael Sanchez,1,0.8,0.86,5.0,262.0,6.0,0,0,sales,medium
William Lowe,1,0.11,0.88,7.0,272.0,4.0,0,0,sales,medium
Laura Casey,1,0.72,0.87,5.0,223.0,5.0,0,0,sales,low
Nathan Grant,1,0.37,0.52,2.0,159.0,3.0,0,0,sales,low
Nelle Leonard,1,0.41,0.5,2.0,153.0,3.0,0,0,sales,low
Blake Bryant,1,0.1,0.77,6.0,247.0,4.0,0,0,sales,low
Lida Watson,1,0.92,0.85,5.0,259.0,5.0,0,0,sales,low
Bernard Houston,1,0.89,1.0,5.0,224.0,5.0,0,0,sales,low
Cordelia Glover,1,0.42,0.53,2.0,142.0,3.0,0,0,sales,low
Hunter Willis,1,0.45,0.54,2.0,135.0,3.0,0,0,sales,low
Flora Peters,1,0.11,0.81,6.0,305.0,4.0,0,0,sales,low
Zachary Jordan,1,0.84,0.92,4.0,234.0,5.0,0,0,sales,low
Eddie Adams,1,0.41,0.55,2.0,148.0,3.0,0,0,sales,low
Duane Richardson,1,0.36,0.56,2.0,137.0,3.0,0,0,sales,low
Sean Klein,1,0.38,0.54,2.0,143.0,3.0,0,0,sales,low
Clyde Benson,1,0.45,0.47,2.0,160.0,3.0,0,0,sales,low
Wayne Rodriguez,1,0.78,0.99,4.0,255.0,6.0,0,0,sales,low
Hilda Johnston,1,0.45,0.51,2.0,160.0,3.0,1,1,sales,low
Isabella Blair,1,0.76,0.89,5.0,262.0,5.0,0,0,sales,low
Julian Patrick,1,0.11,0.83,6.0,282.0,4.0,0,0,sales,low
Lenora Schultz,1,0.38,0.55,2.0,147.0,3.0,0,0,sales,low
Kathryn Burgess,1,0.09,0.95,6.0,304.0,4.0,0,0,sales,low
Susan Sharp,1,0.46,0.57,2.0,139.0,3.0,0,0,sales,low
Luis Williamson,1,0.4,0.53,2.0,158.0,3.0,0,0,sales,low
Louisa Scott,1,0.89,0.92,5.0,242.0,5.0,0,0,sales,low
Milton Floyd,1,0.82,0.87,4.0,239.0,5.0,0,0,sales,low
Emilie Wise,1,0.4,0.49,2.0,135.0,3.0,0,0,sales,low
Carolyn Riley,1,0.41,0.46,2.0,128.0,3.0,0,0,accounting,low
Harriett Hernandez,1,0.38,0.5,2.0,132.0,3.0,0,0,accounting,low
Adam Simpson,1,0.09,0.62,6.0,294.0,4.0,0,0,accounting,low
Lena Tucker,1,0.45,0.57,2.0,134.0,3.0,0,0,hr,low
Joe Mack,1,0.4,0.51,2.0,145.0,3.0,0,0,hr,low
Cecelia Ortiz,1,0.45,0.55,2.0,140.0,3.0,0,0,hr,low
Eugenia McCarthy,1,0.84,0.87,4.0,246.0,6.0,0,0,hr,low
Luella Hubbard,1,0.1,0.94,6.0,255.0,4.0,0,0,technical,low
Christian Terry,1,0.38,0.46,2.0,137.0,3.0,0,0,technical,low
Cecelia Wheeler,1,0.45,0.5,2.0,126.0,3.0,0,0,technical,low
Benjamin Gregory,1,0.11,0.89,6.0,306.0,4.0,0,0,technical,low
Julia Holmes,1,0.41,0.54,2.0,152.0,3.0,0,0,technical,low
Philip Tyler,1,0.87,0.88,5.0,269.0,5.0,0,0,technical,low
Linnie Byrd,1,0.45,0.48,2.0,158.0,3.0,0,0,technical,low
Alvin Erickson,1,0.4,0.46,2.0,127.0,3.0,0,0,technical,low
Bruce Carroll,1,0.1,0.8,7.0,281.0,4.0,0,0,technical,low
Bradley Hernandez,1,0.09,0.89,6.0,276.0,4.0,0,0,technical,low
Benjamin Carter,1,0.84,0.74,3.0,182.0,4.0,0,0,technical,low
Elva Burgess,1,0.4,0.55,2.0,147.0,3.0,0,0,support,low
Adrian Jones,1,0.57,0.7,3.0,273.0,6.0,0,0,support,low
Lewis Gordon,1,0.4,0.54,2.0,148.0,3.0,0,0,support,low
Luke McKinney,1,0.43,0.47,2.0,147.0,3.0,0,0,support,low
Nathan Jones,1,0.13,0.78,6.0,152.0,2.0,0,0,support,low
Willie Martinez,1,0.44,0.55,2.0,135.0,3.0,0,0,support,low
Kate Stone,1,0.38,0.55,2.0,134.0,3.0,0,0,support,low
Leah Olson,1,0.39,0.54,2.0,132.0,3.0,0,0,support,low
Gavin Goodwin,1,0.1,0.92,7.0,307.0,4.0,0,0,support,low
Allen Hansen,1,0.37,0.46,2.0,140.0,3.0,0,0,support,low
Stella Mendoza,1,0.11,0.94,7.0,255.0,4.0,0,0,support,low
Leon Dean,1,0.1,0.81,6.0,309.0,4.0,0,0,technical,low
Georgie Wong,1,0.38,0.54,2.0,128.0,3.0,0,0,technical,low
Margaret Dixon,1,0.85,1.0,4.0,225.0,5.0,0,0,technical,low
Harriett Hughes,1,0.85,0.91,5.0,226.0,5.0,0,0,management,medium
Lela Little,1,0.11,0.93,7.0,308.0,4.0,0,0,IT,medium
Dustin Peters,1,0.1,0.95,6.0,244.0,5.0,0,0,IT,medium
Kate Barton,1,0.36,0.56,2.0,132.0,3.0,0,0,IT,medium
Olivia Davidson,1,0.11,0.94,6.0,286.0,4.0,0,0,IT,medium
Betty Hardy,1,0.81,0.7,6.0,161.0,4.0,0,0,IT,medium
Gertrude Carpenter,1,0.43,0.54,2.0,153.0,3.0,0,0,product_mng,medium
Charlie Mack,1,0.9,0.98,4.0,264.0,6.0,0,0,product_mng,medium
Winifred Hanson,1,0.76,0.86,5.0,223.0,5.0,1,0,product_mng,medium
Winnie Stokes,1,0.43,0.5,2.0,135.0,3.0,0,0,product_mng,medium
Sam Wolfe,1,0.74,0.99,2.0,277.0,3.0,0,0,IT,medium
Rosetta Green,1,0.09,0.77,5.0,275.0,4.0,0,0,product_mng,medium
Mable Woods,1,0.45,0.49,2.0,149.0,3.0,0,0,product_mng,high
Tyler Simon,1,0.09,0.87,7.0,295.0,4.0,0,0,product_mng,low
Roger Campbell,1,0.11,0.97,6.0,277.0,4.0,0,0,product_mng,medium
Randy Newman,1,0.11,0.79,7.0,306.0,4.0,0,0,product_mng,medium
Linnie Salazar,1,0.1,0.83,6.0,295.0,4.0,0,0,product_mng,medium
Mason Hall,1,0.4,0.54,2.0,137.0,3.0,0,0,marketing,medium
Betty Hudson,1,0.43,0.56,2.0,157.0,3.0,0,0,sales,low
Austin Adkins,1,0.39,0.56,2.0,142.0,3.0,0,0,accounting,low
William Watson,1,0.45,0.54,2.0,140.0,3.0,0,0,support,low
Gregory Berry,1,0.38,0.49,2.0,151.0,3.0,0,0,technical,low
Bobby Ramirez,1,0.79,0.59,4.0,139.0,3.0,0,1,management,low
Daisy Marsh,1,0.84,0.85,4.0,249.0,6.0,0,0,marketing,low
Edna Nichols,1,0.11,0.77,6.0,291.0,4.0,0,0,marketing,low
Luis Bridges,1,0.11,0.87,6.0,305.0,4.0,0,0,marketing,low
Elva Obrien,1,0.17,0.84,5.0,232.0,3.0,0,0,sales,low
Mina Greer,1,0.44,0.45,2.0,132.0,3.0,0,0,sales,low
Mina Love,1,0.37,0.57,2.0,130.0,3.0,0,0,sales,low
Richard Sharp,1,0.1,0.79,6.0,291.0,4.0,0,0,sales,low
Charles Houston,1,0.4,0.5,2.0,130.0,3.0,0,0,sales,low
Minerva Patton,1,0.89,1.0,5.0,246.0,5.0,0,0,sales,low
Landon Curtis,1,0.42,0.48,2.0,143.0,3.0,0,0,sales,low
Peter Barber,1,0.46,0.55,2.0,129.0,3.0,0,0,sales,low
Ernest Bates,1,0.09,0.83,6.0,255.0,4.0,0,0,sales,low
Lulu Cummings,1,0.37,0.51,2.0,155.0,3.0,0,0,sales,low
Miguel Carlson,1,0.1,0.77,6.0,265.0,4.0,0,0,sales,low
Terry Estrada,1,0.1,0.84,6.0,279.0,4.0,0,0,sales,low
William Burns,1,0.11,0.97,6.0,284.0,4.0,0,0,sales,low
Hettie Padilla,1,0.9,1.0,5.0,221.0,6.0,0,0,sales,medium
Warren Stewart,1,0.38,0.52,2.0,154.0,3.0,0,0,sales,medium
Rosalie Hicks,1,0.36,0.52,2.0,147.0,3.0,0,0,sales,medium
Anne Hodges,1,0.42,0.46,2.0,150.0,3.0,0,0,sales,medium
Harriet Gutierrez,1,0.09,0.94,7.0,267.0,4.0,0,0,sales,medium
Noah Francis,1,0.43,0.52,2.0,158.0,3.0,0,0,sales,medium
Eddie Mack,1,0.24,0.46,7.0,224.0,5.0,0,0,accounting,medium
Violet Stanley,1,0.91,1.0,4.0,257.0,5.0,0,0,accounting,medium
Brandon Lewis,1,0.44,0.5,2.0,148.0,3.0,0,0,accounting,medium
Genevieve Tyler,1,0.71,0.87,3.0,177.0,4.0,0,0,hr,medium
Chester Ferguson,1,0.4,0.49,2.0,155.0,3.0,0,0,hr,medium
Russell Lindsey,1,0.43,0.47,2.0,144.0,3.0,0,0,hr,medium
Daisy Parker,1,0.09,0.85,6.0,289.0,4.0,0,0,hr,high
Luke Chavez,1,0.43,0.52,2.0,160.0,3.0,0,0,technical,low
Scott Freeman,1,0.9,0.96,4.0,258.0,5.0,0,0,technical,medium
Adeline Cohen,1,0.84,1.0,5.0,234.0,5.0,0,0,technical,medium
Elsie Bowers,1,0.37,0.48,2.0,137.0,3.0,0,0,technical,medium
Lucille Stone,1,0.86,0.68,5.0,263.0,2.0,0,0,technical,medium
Sallie Briggs,1,0.11,0.84,6.0,251.0,4.0,0,0,technical,low
Albert Maldonado,1,0.37,0.57,2.0,133.0,3.0,0,0,technical,low
Isabella Cohen,1,0.4,0.46,2.0,132.0,3.0,0,0,technical,low
Jordan Simmons,1,0.14,0.62,4.0,158.0,4.0,1,0,technical,low
Fanny Townsend,1,0.4,0.46,2.0,135.0,3.0,0,0,technical,low
Evelyn Kim,1,0.75,1.0,4.0,216.0,6.0,0,0,technical,low
Alice McKenzie,1,0.11,0.84,6.0,300.0,5.0,1,0,support,low
Melvin Gibson,1,0.46,0.49,2.0,138.0,3.0,0,0,support,low
Helena Martinez,1,0.11,0.92,6.0,260.0,4.0,0,0,support,low
Bess Obrien,1,0.38,0.49,2.0,132.0,3.0,0,0,support,low
Madge Maldonado,1,0.7,0.89,3.0,183.0,5.0,0,0,support,low
Lucille Cruz,1,0.09,0.82,6.0,250.0,4.0,0,0,support,low
Christian Cain,1,0.37,0.45,2.0,151.0,3.0,0,0,support,low
Jesus Castro,1,0.1,0.83,6.0,292.0,4.0,0,0,support,low
Kyle Erickson,1,0.38,0.57,2.0,140.0,3.0,0,0,support,low
Anthony Kelly,1,0.9,1.0,5.0,221.0,5.0,0,0,support,low
Luis Massey,1,0.44,0.51,2.0,138.0,3.0,0,0,support,low
Nancy Jacobs,1,0.36,0.5,2.0,132.0,3.0,0,0,technical,low
Nannie Willis,1,0.31,0.84,7.0,133.0,5.0,0,0,technical,low
Eugene Henderson,1,0.1,0.84,6.0,283.0,4.0,1,0,technical,low
Kyle Bennett,1,0.42,0.48,2.0,129.0,3.0,0,0,management,low
Brian Gordon,1,0.74,1.0,4.0,249.0,5.0,0,0,IT,low
Seth Maldonado,1,0.73,0.87,5.0,257.0,5.0,0,0,IT,low
Leo Banks,1,0.09,0.96,6.0,245.0,4.0,0,0,IT,low
Maud Robinson,1,0.45,0.53,2.0,155.0,3.0,0,0,IT,low
Cole Clayton,1,0.11,0.8,6.0,256.0,4.0,0,0,IT,low
Patrick Montgomery,1,0.37,0.47,2.0,152.0,3.0,0,0,product_mng,low
Mitchell Bell,1,0.84,0.99,4.0,267.0,5.0,0,0,product_mng,low
Troy McGee,1,0.41,0.46,2.0,151.0,3.0,0,0,product_mng,low
Kate Sanders,1,0.76,0.92,4.0,239.0,5.0,0,0,product_mng,low
Jane Flores,1,0.11,0.87,6.0,306.0,4.0,0,0,IT,low
Marian Luna,1,0.84,0.88,4.0,263.0,5.0,1,0,marketing,low
Joe Bryan,1,0.39,0.5,2.0,147.0,3.0,0,0,marketing,low
Hilda Becker,1,0.11,0.91,6.0,278.0,4.0,0,0,marketing,low
Jorge Warner,1,0.45,0.56,2.0,154.0,3.0,0,0,marketing,low
Lucile Hunter,1,0.37,0.52,2.0,143.0,3.0,0,0,marketing,low
Phoebe Miles,1,0.4,0.52,2.0,155.0,3.0,0,0,marketing,low
Mable Santiago,1,0.39,0.48,2.0,160.0,3.0,0,0,sales,low
Brian Peterson,1,0.11,0.8,6.0,304.0,4.0,0,0,accounting,low
Evan Rowe,1,0.83,1.0,5.0,240.0,5.0,0,0,support,low
Johnny Palmer,1,0.11,0.92,6.0,305.0,4.0,0,0,technical,low
Norman Campbell,1,0.39,0.5,2.0,136.0,3.0,0,0,management,low
Luke Wise,1,0.45,0.45,2.0,132.0,3.0,0,0,marketing,low
Alexander Mack,1,0.1,0.95,7.0,301.0,4.0,0,0,marketing,low
Austin Salazar,1,0.9,0.98,5.0,243.0,6.0,0,0,marketing,low
Oscar Gordon,1,0.45,0.51,2.0,147.0,3.0,0,0,sales,low
Isaiah Goodwin,1,0.79,0.89,5.0,239.0,5.0,0,0,sales,low
Ian McCoy,1,0.9,0.99,5.0,260.0,5.0,0,0,sales,low
Mathilda Reid,1,0.11,0.84,7.0,296.0,4.0,0,0,sales,low
Marcus Cunningham,1,0.43,0.55,2.0,129.0,3.0,0,0,sales,low
Craig Clarke,1,0.31,0.54,5.0,132.0,5.0,0,0,sales,low
Norman Henderson,1,0.32,0.5,2.0,135.0,5.0,0,0,sales,low
Jackson Barnett,1,0.45,0.57,2.0,158.0,3.0,0,0,sales,low
Brent Guerrero,1,0.81,0.99,4.0,259.0,5.0,0,0,sales,low
Gene Mack,1,0.41,0.46,2.0,160.0,3.0,0,1,sales,low
Cora Ortega,1,0.11,0.78,7.0,278.0,4.0,0,0,sales,low
Lena Logan,1,0.1,0.88,6.0,284.0,4.0,0,0,sales,low
Jayden Vaughn,1,0.7,0.53,2.0,274.0,4.0,0,0,sales,low
Jeanette Cruz,1,0.54,0.74,4.0,164.0,2.0,0,0,sales,low
Lottie James,1,0.41,0.48,2.0,148.0,3.0,0,0,sales,low
Lucy Carr,1,0.38,0.5,2.0,140.0,3.0,0,0,sales,medium
Duane Shelton,1,0.37,0.51,2.0,127.0,3.0,0,0,sales,medium
Sallie Beck,1,0.11,0.85,6.0,308.0,5.0,0,0,sales,medium
Austin Parks,1,0.4,0.47,2.0,146.0,3.0,0,0,sales,medium
Emma Henry,1,0.1,0.84,6.0,261.0,4.0,0,0,accounting,medium
Cornelia Rice,1,0.89,0.99,5.0,257.0,5.0,0,0,accounting,medium
Cory Stokes,1,0.11,0.8,6.0,285.0,4.0,0,0,accounting,medium
Christina Tucker,1,0.36,0.55,2.0,141.0,3.0,0,0,hr,medium
Nina Atkins,1,0.4,0.46,2.0,127.0,3.0,0,0,hr,medium
Hilda Armstrong,1,0.09,0.85,6.0,297.0,4.0,0,0,hr,medium
Micheal Bowman,1,0.4,0.46,2.0,143.0,3.0,0,0,hr,medium
Stephen Ingram,1,0.37,0.55,2.0,152.0,3.0,0,0,technical,medium
Lois Wolfe,1,0.44,0.51,2.0,156.0,3.0,0,0,technical,high
Brandon Davidson,1,0.09,0.8,7.0,283.0,5.0,0,0,technical,low
John May,1,0.92,0.87,4.0,226.0,6.0,1,0,technical,medium
Lora Shelton,1,0.74,0.91,4.0,232.0,5.0,0,0,technical,medium
Wayne Schmidt,1,0.09,0.82,6.0,249.0,4.0,0,0,technical,medium
Adelaide Simmons,1,0.89,0.95,4.0,275.0,5.0,0,0,technical,medium
Harvey Medina,1,0.09,0.8,6.0,304.0,4.0,0,0,technical,low
Tommy Reese,1,0.27,0.54,7.0,278.0,3.0,0,0,technical,low
Winifred Bowen,1,0.1,0.91,6.0,287.0,4.0,0,0,technical,low
Rena Gonzales,1,0.1,0.89,7.0,285.0,4.0,0,0,technical,low
Jayden Ramirez,1,0.77,0.94,5.0,226.0,6.0,0,0,support,low
Adelaide Kennedy,1,0.9,0.82,5.0,259.0,5.0,0,0,support,low
Bertie Sutton,1,0.39,0.5,2.0,135.0,3.0,0,0,support,low
Sam Spencer,1,0.76,1.0,5.0,219.0,5.0,0,0,support,low
Carolyn Ray,1,0.1,0.93,6.0,256.0,4.0,0,0,support,low
Alfred Snyder,1,0.87,0.9,5.0,254.0,6.0,0,0,support,low
Birdie Shaw,1,0.38,0.5,2.0,153.0,3.0,0,0,support,low
Craig Brooks,1,0.77,0.99,5.0,228.0,5.0,0,0,support,low
Richard Bryan,1,0.78,0.87,4.0,228.0,5.0,0,0,support,low
Chad Baldwin,1,0.44,0.5,2.0,128.0,3.0,0,0,support,low
Rachel Gibson,1,0.38,0.52,2.0,153.0,3.0,0,0,support,low
Ralph Reyes,1,0.43,0.46,2.0,156.0,3.0,0,0,technical,low
Leah Diaz,1,0.39,0.5,4.0,294.0,3.0,0,0,technical,low
Maude Lambert,1,0.88,1.0,5.0,219.0,5.0,0,0,technical,low
Gordon Lucas,1,0.45,0.46,2.0,153.0,3.0,0,0,management,low
Mayme Harper,1,0.4,0.53,2.0,151.0,3.0,0,0,IT,low
Matilda Abbott,1,0.36,0.51,2.0,155.0,3.0,0,0,IT,low
Hallie Bradley,1,0.36,0.48,2.0,158.0,3.0,0,0,IT,low
Lucinda Terry,1,0.9,0.98,5.0,245.0,5.0,0,0,IT,low
Sadie Mann,1,0.43,0.53,2.0,131.0,3.0,0,0,IT,low
Jimmy Austin,1,0.89,0.87,5.0,225.0,5.0,0,0,product_mng,low
Florence Lawson,1,0.1,0.84,6.0,286.0,4.0,0,0,product_mng,low
Edward Figueroa,1,0.37,0.5,2.0,135.0,3.0,0,0,product_mng,low
Samuel Page,1,0.37,0.51,2.0,153.0,3.0,0,0,product_mng,low
Myra Brown,1,0.87,0.9,5.0,252.0,5.0,0,0,IT,low
Ethan Newton,1,0.4,0.56,2.0,149.0,3.0,0,0,accounting,low
Estella Diaz,1,0.9,0.97,4.0,258.0,5.0,0,0,accounting,low
Barry McGee,1,0.37,0.46,2.0,158.0,3.0,0,0,hr,low
Kate Brock,1,0.44,0.54,2.0,149.0,3.0,0,0,hr,low
Katherine Todd,1,0.85,0.95,5.0,236.0,5.0,0,0,hr,low
Sylvia King,1,0.78,0.98,5.0,239.0,6.0,0,0,marketing,low
Lee Moran,1,0.42,0.47,2.0,159.0,3.0,0,0,marketing,low
Cameron Aguilar,1,0.92,0.99,5.0,255.0,6.0,0,0,sales,low
Bernard Douglas,1,0.11,0.83,6.0,244.0,4.0,0,0,accounting,low
Jackson Jones,1,0.42,0.56,2.0,134.0,3.0,0,0,support,low
Shawn Gonzalez,1,0.48,0.57,4.0,270.0,4.0,0,0,technical,low
Sean West,1,0.83,0.85,4.0,255.0,5.0,0,0,management,low
Nettie Vaughn,1,0.4,0.53,2.0,151.0,3.0,0,0,marketing,low
Sophia Townsend,1,0.43,0.45,2.0,135.0,3.0,0,0,marketing,low
Melvin Bass,1,0.43,0.53,2.0,146.0,3.0,0,0,marketing,low
Luke Collier,1,0.1,0.97,7.0,254.0,4.0,0,0,sales,low
Shawn Payne,1,0.1,0.87,7.0,289.0,4.0,0,0,sales,low
Tom Bridges,1,0.37,0.46,2.0,156.0,3.0,0,0,sales,low
Theodore Gonzalez,1,0.38,0.53,2.0,156.0,3.0,0,0,sales,low
Helen Perkins,1,0.4,0.5,2.0,128.0,3.0,0,0,sales,low
Bess Daniel,1,0.89,0.86,5.0,275.0,5.0,0,0,sales,low
Hannah Johnson,1,0.45,0.46,2.0,155.0,3.0,0,0,sales,low
Brian Lynch,1,0.37,0.48,2.0,159.0,3.0,0,0,sales,low
Daisy Daniels,1,0.46,0.49,2.0,148.0,3.0,0,0,sales,low
Abbie Terry,1,0.87,0.91,4.0,228.0,5.0,0,0,sales,low
Lillian Nelson,1,0.11,0.84,6.0,298.0,4.0,0,0,sales,low
Lela Douglas,1,0.79,0.87,5.0,261.0,5.0,0,0,sales,low
Carlos Schmidt,1,0.79,0.92,5.0,254.0,6.0,0,0,sales,low
Ella Washington,1,0.19,0.59,7.0,192.0,3.0,0,0,sales,low
Norman Reyes,1,0.87,0.98,4.0,248.0,5.0,0,0,sales,low
Jason Pierce,1,0.6,0.92,2.0,258.0,5.0,0,0,sales,low
Lora Harper,1,0.44,0.45,2.0,156.0,3.0,0,0,sales,medium
Blake Morton,1,0.11,0.81,6.0,266.0,4.0,1,0,sales,medium
Anthony Nichols,1,0.42,0.54,2.0,156.0,3.0,0,0,sales,medium
Curtis French,1,0.88,0.88,5.0,232.0,5.0,1,0,accounting,medium
Jordan Stokes,1,0.11,0.84,6.0,287.0,4.0,0,0,accounting,medium
Earl Blair,1,0.46,0.46,2.0,154.0,3.0,0,0,accounting,medium
Jane Peters,1,0.82,0.97,5.0,263.0,5.0,0,0,hr,medium
Max Logan,1,0.44,0.56,2.0,131.0,3.0,0,0,hr,medium
Christopher Frank,1,0.11,0.78,6.0,260.0,4.0,0,0,hr,medium
Christina Grant,1,0.42,0.5,2.0,139.0,3.0,0,0,hr,medium
Blanche Gutierrez,1,0.84,0.93,4.0,251.0,5.0,0,0,technical,medium
Fanny Zimmerman,1,0.11,0.95,6.0,286.0,4.0,0,0,technical,medium
Leroy Copeland,1,0.45,0.53,2.0,129.0,3.0,0,0,technical,high
Bradley Williamson,1,0.38,0.56,2.0,156.0,3.0,0,0,technical,low
Shane Sparks,1,0.38,0.86,6.0,139.0,6.0,0,0,technical,medium
Emma Phelps,1,0.44,0.51,2.0,127.0,3.0,0,0,technical,medium
Myra Stevenson,1,0.11,0.84,6.0,251.0,4.0,0,0,technical,medium
Warren Henry,1,0.81,0.93,5.0,270.0,5.0,0,0,technical,medium
Marion Gardner,1,0.09,0.96,6.0,296.0,4.0,0,0,technical,low
Lottie Tran,1,0.11,0.9,6.0,254.0,4.0,0,0,technical,low
Lura Lowe,1,0.81,0.95,5.0,238.0,6.0,0,0,technical,low
Mildred Cook,1,0.1,0.97,6.0,267.0,4.0,1,0,support,low
Marvin Baldwin,1,0.74,0.89,5.0,229.0,6.0,0,0,support,low
Barry Erickson,1,0.09,0.78,6.0,254.0,4.0,0,0,support,low
Adeline McBride,1,0.82,0.81,4.0,233.0,4.0,1,0,support,low
Lucas Summers,1,0.1,0.98,6.0,268.0,4.0,0,0,support,low
Teresa Mullins,1,0.27,0.56,3.0,301.0,3.0,0,0,support,low
Bill Barber,1,0.83,0.92,5.0,267.0,6.0,0,0,support,low
Keith Poole,1,0.1,0.93,6.0,289.0,4.0,1,0,support,low
Leon Salazar,1,0.38,0.47,2.0,144.0,3.0,0,0,support,low
Olga White,1,0.4,0.56,2.0,148.0,3.0,0,0,support,low
Isabel Saunders,1,0.11,0.83,6.0,306.0,4.0,0,0,support,low
Lucy Vega,1,0.11,0.79,6.0,292.0,4.0,0,1,technical,low
Dora Harmon,1,0.82,0.91,5.0,232.0,5.0,0,0,technical,low
Jeremiah Miles,1,0.36,0.48,2.0,137.0,3.0,0,0,technical,low
Miguel Pope,1,0.4,0.46,2.0,128.0,3.0,0,0,management,low
Austin Hamilton,1,0.87,0.84,5.0,231.0,5.0,0,0,IT,low
Amanda Hall,1,0.41,0.49,2.0,146.0,3.0,0,0,IT,low
Emilie Walton,1,0.11,0.91,6.0,308.0,4.0,1,0,IT,low
Lina Daniels,1,0.1,0.93,6.0,253.0,4.0,0,0,IT,medium
Dylan Atkins,1,0.38,0.51,2.0,146.0,3.0,0,0,IT,medium
Della Mack,1,0.39,0.55,2.0,156.0,3.0,0,0,product_mng,medium
Maurice Kennedy,1,0.4,0.52,2.0,147.0,3.0,0,0,product_mng,medium
Eula Bowman,1,0.45,0.48,2.0,136.0,3.0,0,0,product_mng,medium
Eula Gordon,1,0.74,0.84,5.0,249.0,5.0,0,0,product_mng,medium
Lucy Martin,1,0.45,0.55,2.0,151.0,3.0,0,0,IT,medium
Katie Floyd,1,0.12,1.0,3.0,278.0,4.0,0,0,RandD,medium
Charles Kennedy,1,0.1,0.77,7.0,250.0,5.0,0,0,RandD,medium
Lelia Hawkins,1,0.37,0.55,2.0,127.0,3.0,0,0,RandD,medium
Jeffery Casey,1,0.89,0.87,5.0,255.0,5.0,0,0,RandD,medium
Samuel Stone,1,0.45,0.47,2.0,135.0,3.0,0,0,RandD,medium
Eugene Kelly,1,0.37,0.46,2.0,149.0,3.0,0,0,marketing,high
Lula Norris,1,0.11,0.81,5.0,287.0,4.0,0,0,sales,low
Charles Morris,1,0.41,0.48,2.0,145.0,3.0,0,0,accounting,medium
Winnie Henry,1,0.1,0.94,6.0,285.0,4.0,0,0,support,medium
Elijah Brewer,1,0.1,0.93,7.0,305.0,4.0,0,0,technical,medium
Rena Owen,1,0.11,0.95,7.0,300.0,4.0,0,0,management,medium
Chester Bass,1,0.4,0.54,2.0,139.0,3.0,0,0,marketing,low
Josie Ray,1,0.41,0.49,2.0,130.0,3.0,0,0,marketing,low
Mittie Young,1,0.1,0.81,6.0,268.0,4.0,0,0,marketing,low
Mable Bryant,1,0.73,0.86,4.0,245.0,6.0,0,0,sales,low
Franklin Haynes,1,0.43,0.47,2.0,135.0,3.0,0,0,sales,low
Ida Lindsey,1,0.37,0.46,2.0,153.0,3.0,0,0,sales,low
Logan Fox,1,0.11,0.94,6.0,276.0,4.0,0,0,sales,low
Sylvia Carroll,1,0.4,0.46,2.0,130.0,3.0,0,0,sales,low
Theodore Warner,1,0.41,0.54,2.0,153.0,3.0,1,0,sales,low
Gerald Sanchez,1,0.82,0.84,5.0,244.0,5.0,0,0,sales,low
Polly Stokes,1,0.61,0.47,2.0,253.0,3.0,0,0,sales,low
Olivia Wise,1,0.11,0.91,7.0,287.0,4.0,0,0,sales,low
Esther Morrison,1,0.37,0.45,2.0,131.0,3.0,0,0,sales,low
Leonard Parsons,1,0.41,0.52,2.0,135.0,3.0,0,0,sales,low
Kathryn Morris,1,0.37,0.52,2.0,157.0,3.0,0,0,sales,low
Paul Bates,1,0.88,0.99,5.0,262.0,6.0,0,0,sales,low
Tyler Gibson,1,0.1,0.85,6.0,266.0,4.0,0,0,sales,low
Violet Luna,1,0.44,0.48,2.0,148.0,3.0,0,0,sales,low
Leonard Byrd,1,0.38,0.57,2.0,140.0,3.0,0,0,sales,low
Lola Love,1,0.11,0.85,7.0,302.0,4.0,0,0,sales,low
Tony Mack,1,0.09,0.98,6.0,271.0,4.0,0,0,sales,low
Lenora Elliott,1,0.45,0.52,2.0,145.0,3.0,0,0,sales,medium
Sara Moreno,1,0.1,0.81,6.0,290.0,4.0,0,0,accounting,medium
Gilbert Holland,1,0.45,0.47,2.0,151.0,3.0,0,0,accounting,medium
Lottie Herrera,1,0.77,0.87,5.0,266.0,5.0,0,0,accounting,medium
Stella Simmons,1,0.44,0.51,2.0,140.0,3.0,0,0,hr,medium
Ricardo Lambert,1,0.39,0.5,2.0,142.0,3.0,0,0,hr,medium
Kevin Love,1,0.1,0.91,6.0,246.0,4.0,0,0,hr,medium
Vera Conner,1,0.09,0.89,7.0,308.0,5.0,0,0,hr,medium
Beatrice Knight,1,0.37,0.47,2.0,141.0,3.0,0,0,technical,medium
Luke Cross,1,0.9,1.0,5.0,232.0,5.0,0,0,technical,medium
Adrian Becker,1,0.41,0.56,2.0,143.0,3.0,0,0,technical,medium
Norman Stephens,1,0.37,0.52,2.0,155.0,3.0,0,0,technical,medium
Clyde Johnston,1,0.1,0.86,6.0,278.0,4.0,0,0,technical,high
Douglas Reese,1,0.81,1.0,4.0,253.0,5.0,0,0,technical,low
Viola Collier,1,0.11,0.8,6.0,282.0,4.0,0,0,technical,medium
Ray Holloway,1,0.11,0.84,7.0,264.0,4.0,0,0,technical,medium
Corey Phillips,1,0.4,0.46,2.0,149.0,3.0,0,0,technical,medium
Jeremiah Carpenter,1,0.09,0.8,6.0,304.0,5.0,0,0,technical,medium
Jerome Carr,1,0.48,0.93,3.0,219.0,6.0,0,0,technical,low
Cynthia Park,1,0.91,0.91,4.0,262.0,6.0,0,0,support,low
Keith Goodman,1,0.43,0.57,2.0,135.0,3.0,0,0,support,low
Carrie Herrera,1,0.33,0.88,6.0,219.0,5.0,0,0,support,low
Andre Vasquez,1,0.41,0.57,2.0,136.0,3.0,0,0,support,low
Tommy Weaver,1,0.41,0.55,2.0,154.0,3.0,0,0,support,low
Luis Cain,1,0.37,0.54,2.0,149.0,3.0,0,0,support,low
Willie Santos,1,0.31,0.62,6.0,135.0,5.0,0,0,support,low
Oscar Delgado,1,0.09,0.91,6.0,275.0,4.0,0,0,support,low
Nathaniel Poole,1,0.1,0.87,6.0,290.0,4.0,0,0,support,low
Rosie Stephens,1,0.76,0.9,4.0,263.0,5.0,0,0,support,low
Phillip Tyler,1,0.41,0.54,2.0,145.0,3.0,0,0,support,low
Gertrude McKenzie,1,0.72,0.96,5.0,267.0,5.0,0,0,technical,low
Allen Cobb,1,0.4,0.5,2.0,141.0,3.0,1,0,technical,low
Alex Graves,1,0.91,0.87,4.0,235.0,5.0,0,0,technical,low
Russell Barrett,1,0.1,0.83,6.0,258.0,4.0,0,0,management,low
Barry Castillo,1,0.4,0.56,2.0,131.0,3.0,0,0,IT,low
Francis Morris,1,0.82,0.86,5.0,243.0,5.0,0,0,IT,low
Jeremy Valdez,1,0.1,0.82,6.0,266.0,4.0,0,0,IT,low
Jerry Cain,1,0.37,0.45,2.0,142.0,3.0,0,0,IT,low
Julia Hale,1,0.36,0.51,2.0,135.0,3.0,0,0,IT,low
Mitchell Harris,1,0.39,0.48,2.0,141.0,3.0,0,0,product_mng,medium
Henry Price,1,0.36,0.57,2.0,142.0,3.0,0,0,product_mng,medium
Lee Holland,1,0.86,0.84,5.0,254.0,5.0,0,0,product_mng,medium
Maria Holland,1,0.73,0.99,5.0,262.0,5.0,0,0,product_mng,medium
Jerome Patterson,1,0.56,0.71,4.0,296.0,2.0,0,0,IT,medium
Johnny Swanson,1,0.44,0.56,2.0,158.0,3.0,0,0,accounting,medium
Mabelle Payne,1,0.31,0.56,4.0,238.0,2.0,0,0,accounting,medium
Charlotte Day,1,0.77,0.93,4.0,231.0,5.0,0,0,hr,medium
Rhoda Stewart,1,0.44,0.45,2.0,156.0,3.0,0,0,hr,medium
Mark Munoz,1,0.38,0.46,2.0,145.0,3.0,0,0,hr,medium
Rebecca Cannon,1,0.45,0.48,2.0,144.0,3.0,0,0,marketing,medium
Jeremy Bradley,1,0.38,0.51,2.0,159.0,3.0,0,0,sales,medium
Oscar Page,1,0.36,0.48,2.0,156.0,3.0,0,0,accounting,high
Rena Farmer,1,0.75,0.9,5.0,256.0,5.0,0,0,support,low
Ann Hampton,1,0.1,0.93,6.0,298.0,4.0,0,0,technical,medium
Tommy Rhodes,1,0.1,0.97,6.0,247.0,4.0,0,0,management,medium
Joshua Walsh,1,0.45,0.5,2.0,157.0,3.0,0,0,marketing,medium
Lily Jensen,1,0.42,0.57,2.0,154.0,3.0,1,0,marketing,medium
Rosa Bass,1,0.78,1.0,4.0,253.0,5.0,0,0,marketing,low
Chester Harrington,1,0.45,0.55,2.0,148.0,3.0,0,0,sales,low
Lucas Estrada,1,0.84,1.0,4.0,261.0,5.0,0,0,sales,low
Alejandro Flowers,1,0.11,0.93,6.0,282.0,4.0,0,0,sales,low
Tony Roberson,1,0.42,0.56,2.0,133.0,3.0,0,0,sales,low
Eula Gilbert,1,0.45,0.46,2.0,128.0,3.0,0,0,sales,low
Anne Quinn,1,0.46,0.57,2.0,139.0,3.0,0,0,sales,low
Tom Ortiz,1,0.09,0.79,6.0,293.0,5.0,0,0,sales,low
Andrew Taylor,1,0.87,0.83,4.0,265.0,6.0,0,0,sales,low
Jerry Cortez,1,0.1,0.87,6.0,250.0,4.0,0,0,sales,low
Mina Rogers,1,0.91,1.0,5.0,251.0,6.0,0,0,sales,low
Anthony Robbins,1,0.76,0.92,4.0,246.0,5.0,0,0,sales,low
Georgie Black,1,0.74,1.0,5.0,275.0,5.0,0,0,sales,low
Timothy Miller,1,0.92,0.93,5.0,240.0,5.0,0,0,sales,low
Phoebe Gregory,1,0.76,0.87,5.0,245.0,5.0,0,0,sales,low
Edwin Dawson,1,0.47,0.5,4.0,254.0,4.0,0,0,sales,low
Bertha Wilkins,1,0.73,0.99,5.0,241.0,5.0,0,0,sales,low
Sophia Barber,1,0.09,0.94,6.0,257.0,4.0,0,0,sales,low
Randall Perez,1,0.91,0.92,4.0,246.0,5.0,0,0,sales,low
Susan Stephens,1,0.82,0.98,4.0,233.0,5.0,0,0,sales,low
Christopher Rowe,1,0.28,0.45,6.0,218.0,4.0,0,0,accounting,low
Nell Scott,1,0.84,0.99,4.0,262.0,6.0,0,0,accounting,medium
Ora Owen,1,0.45,0.53,2.0,138.0,3.0,0,0,accounting,medium
Gavin Fisher,1,0.45,0.54,2.0,142.0,3.0,0,0,hr,medium
Rosie Rios,1,0.91,0.97,5.0,233.0,5.0,0,0,hr,medium
Rosa Hunt,1,0.42,0.48,2.0,155.0,3.0,0,0,hr,medium
Jayden Lamb,1,0.82,1.0,4.0,229.0,6.0,0,0,hr,medium
Dominic Owen,1,0.11,0.9,6.0,264.0,4.0,0,0,technical,medium
Elizabeth Stanley,1,0.42,0.53,3.0,199.0,4.0,0,0,technical,medium
Clifford Flowers,1,0.82,0.85,4.0,223.0,5.0,0,0,technical,medium
Virgie Johnston,1,0.09,0.96,6.0,268.0,4.0,0,0,technical,medium
Nancy Rogers,1,0.1,0.94,6.0,287.0,4.0,0,0,technical,medium
Douglas Higgins,1,0.86,1.0,5.0,257.0,5.0,0,0,technical,medium
Jesus Miller,1,0.4,0.46,2.0,143.0,3.0,0,0,technical,high
Beatrice Ball,1,0.45,0.46,2.0,130.0,3.0,0,0,technical,low
Allie Robbins,1,0.42,0.51,2.0,136.0,3.0,0,0,technical,medium
Ella Schwartz,1,0.74,0.92,4.0,261.0,5.0,0,0,technical,medium
Jose Fox,1,0.55,0.6,3.0,180.0,4.0,0,0,technical,medium
Harriett Colon,1,0.37,0.45,2.0,126.0,3.0,0,0,support,medium
Lettie Baker,1,0.41,0.52,2.0,127.0,3.0,1,0,support,low
Benjamin McCormick,1,0.89,0.65,5.0,195.0,6.0,0,0,support,low
Lloyd Howell,1,0.41,0.57,2.0,160.0,3.0,0,0,support,low
Ida Becker,1,0.44,0.51,2.0,150.0,3.0,0,0,support,low
Edna Martinez,1,0.87,0.84,4.0,264.0,6.0,0,0,support,low
Roy Hunt,1,0.1,0.84,6.0,309.0,4.0,0,0,support,low
Ophelia Green,1,0.41,0.47,2.0,135.0,3.0,0,0,support,low
Ray Lopez,1,0.11,0.85,6.0,261.0,4.0,0,0,support,low
Mayme Baldwin,1,0.43,0.53,2.0,160.0,3.0,0,0,support,low
Teresa Mitchell,1,0.77,0.9,4.0,237.0,5.0,0,0,support,low
Henrietta Bishop,1,0.41,0.52,2.0,136.0,3.0,0,0,technical,low
Jordan Miles,1,0.41,0.48,2.0,139.0,3.0,0,0,technical,low
Clara Lawson,1,0.36,0.78,2.0,151.0,4.0,0,0,technical,low
Joe Chandler,1,0.77,1.0,5.0,229.0,5.0,0,0,management,low
Blake Nguyen,1,0.81,0.98,5.0,245.0,5.0,0,0,IT,low
James Wong,1,0.39,0.54,2.0,127.0,3.0,0,0,IT,low
Flora Watson,1,0.09,0.94,6.0,283.0,5.0,0,0,IT,low
Ricardo Ballard,1,0.44,0.46,2.0,143.0,3.0,0,0,IT,low
Lula Wallace,1,0.1,0.84,5.0,298.0,4.0,0,0,IT,low
Billy Wilkins,1,0.36,0.48,2.0,159.0,3.0,0,0,product_mng,low
Lillie Conner,1,0.81,0.92,5.0,239.0,5.0,0,0,product_mng,low
Nina Briggs,1,0.81,0.9,4.0,226.0,5.0,0,0,product_mng,medium
Logan Phelps,1,0.85,0.98,5.0,248.0,5.0,0,0,product_mng,medium
Eva Gordon,1,0.1,0.87,6.0,286.0,4.0,0,0,IT,medium
Rebecca Bailey,1,0.37,0.54,2.0,145.0,3.0,0,0,RandD,medium
Isaac Sandoval,1,0.09,0.97,7.0,254.0,4.0,1,0,RandD,medium
Hulda Wade,1,0.44,0.53,2.0,127.0,3.0,0,0,RandD,medium
Gertrude Francis,1,0.86,0.93,5.0,223.0,5.0,0,0,RandD,medium
Logan Carroll,1,0.77,1.0,4.0,255.0,5.0,0,0,RandD,medium
Louis Douglas,1,0.41,0.48,2.0,136.0,3.0,0,0,marketing,medium
Calvin Oliver,1,0.4,0.48,2.0,137.0,3.0,0,0,sales,medium
Birdie Bryant,1,0.43,0.49,2.0,135.0,3.0,0,0,accounting,medium
Ian Stevenson,1,0.43,0.5,2.0,137.0,3.0,0,0,support,medium
Timothy Sanchez,1,0.8,0.53,3.0,255.0,5.0,0,0,technical,high
Elnora Gonzales,1,0.8,0.85,4.0,273.0,5.0,0,0,management,low
May Summers,1,0.82,0.98,5.0,234.0,5.0,0,0,marketing,medium
Sarah Weaver,1,0.37,0.54,2.0,152.0,3.0,0,0,marketing,medium
Cecelia Simon,1,0.37,0.48,2.0,134.0,3.0,0,0,marketing,medium
Gavin Newman,1,0.09,0.95,6.0,292.0,4.0,0,0,sales,medium
Caroline Frank,1,0.9,0.92,5.0,245.0,5.0,0,0,sales,low
Olivia Herrera,1,0.41,0.52,2.0,159.0,3.0,0,0,sales,low
Millie Barber,1,0.1,0.85,6.0,260.0,4.0,0,0,sales,low
Lydia Hunt,1,0.44,0.53,2.0,149.0,3.0,0,0,sales,low
Lola Olson,1,0.89,0.85,5.0,266.0,5.0,0,0,sales,low
Fred McDonald,1,0.42,0.56,2.0,149.0,3.0,0,0,sales,low
Ronald Floyd,1,0.87,1.0,5.0,242.0,5.0,0,0,sales,low
Carrie Jimenez,1,0.45,0.57,2.0,134.0,3.0,0,0,sales,low
Belle Figueroa,1,0.11,0.87,5.0,271.0,4.0,0,0,sales,low
Travis Beck,1,0.09,0.79,6.0,275.0,4.0,0,0,sales,low
Mamie Barton,1,0.76,0.83,5.0,227.0,5.0,0,0,sales,low
Nathan Williamson,1,0.11,0.96,7.0,277.0,5.0,0,0,sales,low
Edward Singleton,1,0.37,0.49,2.0,151.0,3.0,0,0,sales,low
Daniel Bishop,1,0.1,0.79,6.0,274.0,4.0,0,0,sales,low
Janie Williams,1,0.77,0.87,4.0,242.0,6.0,0,0,sales,low
Eugenia Matthews,1,0.42,0.54,2.0,143.0,3.0,1,0,sales,low
Joshua Reynolds,1,0.38,0.52,2.0,145.0,3.0,0,0,sales,low
Myra Lindsey,1,0.32,0.95,5.0,172.0,2.0,0,0,sales,low
Barbara Lloyd,1,0.38,0.49,2.0,135.0,3.0,0,0,accounting,low
Dean Rodriguez,1,0.19,1.0,4.0,192.0,4.0,0,0,accounting,low
Elnora Cummings,1,0.1,0.83,7.0,276.0,4.0,0,0,accounting,low
Maud Ellis,1,0.76,0.88,4.0,206.0,4.0,0,0,hr,medium
Ollie Burke,1,0.53,0.56,4.0,281.0,6.0,0,0,hr,medium
Kenneth Keller,1,0.39,0.51,2.0,151.0,3.0,0,0,hr,medium
Vincent Peters,1,0.11,0.83,6.0,244.0,4.0,0,0,hr,medium
Belle Ball,1,0.1,0.94,6.0,309.0,4.0,0,0,technical,medium
Kyle Hammond,1,0.84,1.0,5.0,218.0,5.0,0,0,technical,medium
Isaiah Cox,1,0.82,0.99,4.0,263.0,6.0,0,0,technical,medium
Lelia Mann,1,0.1,0.82,6.0,244.0,4.0,0,0,technical,medium
Michael Wallace,1,0.59,0.49,7.0,263.0,4.0,0,0,technical,medium
Amanda Porter,1,0.44,0.48,2.0,143.0,3.0,0,0,technical,medium
Carrie Bowen,1,0.89,0.95,2.0,181.0,5.0,0,0,technical,medium
Cynthia Pratt,1,0.91,0.84,5.0,265.0,5.0,0,0,technical,medium
Isabel James,1,0.66,0.57,5.0,161.0,5.0,0,0,technical,high
Anne Butler,1,0.11,0.87,7.0,282.0,5.0,0,0,technical,low
Gary Potter,1,0.43,0.51,2.0,155.0,3.0,0,0,technical,medium
Hannah Martin,1,0.78,0.83,4.0,217.0,6.0,0,0,support,medium
Eliza Chambers,1,0.11,0.97,6.0,289.0,5.0,0,0,support,medium
Mitchell Arnold,1,0.83,0.98,4.0,259.0,5.0,0,0,support,medium
Leo Copeland,1,0.39,0.54,2.0,158.0,3.0,0,0,support,low
Lola Weaver,1,0.38,0.55,2.0,158.0,3.0,0,0,support,low
Theodore Brewer,1,0.37,0.57,2.0,155.0,3.0,0,0,support,low
Douglas Jacobs,1,0.44,0.48,2.0,146.0,3.0,0,0,support,low
Lydia Hammond,1,0.53,0.85,2.0,164.0,5.0,0,0,support,low
Brian Francis,1,0.09,0.96,6.0,259.0,4.0,0,0,support,low
Duane Chambers,1,0.11,0.89,6.0,293.0,4.0,0,0,support,low
Birdie Reynolds,1,0.83,0.96,5.0,275.0,5.0,0,0,support,low
Russell Freeman,1,0.88,1.0,5.0,219.0,6.0,1,0,technical,low
Micheal Gill,1,0.1,0.89,6.0,247.0,4.0,0,0,technical,low
Luis Lee,1,0.09,0.86,7.0,309.0,4.0,0,0,technical,low
Chad Becker,1,0.44,0.54,2.0,151.0,3.0,0,0,management,low
Chester Silva,1,0.39,0.51,2.0,129.0,3.0,0,0,IT,low
Annie Frazier,1,0.87,0.94,4.0,274.0,5.0,0,0,IT,low
Ida Glover,1,0.74,0.99,4.0,233.0,5.0,0,0,IT,low
Michael Mathis,1,0.1,0.95,7.0,289.0,4.0,0,0,IT,low
Danny Caldwell,1,0.74,0.82,4.0,239.0,6.0,0,0,IT,low
Oscar Alvarez,1,0.75,0.99,5.0,221.0,5.0,0,0,product_mng,low
Erik Buchanan,1,0.41,0.56,2.0,150.0,3.0,0,0,product_mng,low
Seth Gibbs,1,0.41,0.45,2.0,144.0,3.0,1,0,product_mng,low
Kathryn Perez,1,0.09,0.9,7.0,289.0,4.0,0,0,product_mng,low
Lydia Tate,1,0.09,0.8,6.0,301.0,5.0,0,0,IT,medium
Hilda Day,1,0.39,0.57,2.0,145.0,3.0,0,0,accounting,medium
Ernest Morton,1,0.4,0.56,2.0,137.0,3.0,0,0,accounting,medium
Ian Tyler,1,0.37,0.54,2.0,131.0,3.0,1,0,hr,medium
Ophelia Gibbs,1,0.1,0.84,6.0,246.0,4.0,0,0,hr,medium
Edna Cross,1,0.43,0.51,2.0,136.0,3.0,0,0,hr,medium
Derek Ward,1,0.75,0.85,5.0,240.0,6.0,1,0,marketing,medium
Betty Williamson,1,0.37,0.56,2.0,156.0,3.0,0,0,sales,medium
Clifford Yates,1,0.11,0.85,6.0,305.0,4.0,0,0,accounting,medium
Lura Perkins,1,0.45,0.45,2.0,154.0,3.0,1,0,support,medium
Nicholas Lloyd,1,0.87,1.0,5.0,261.0,5.0,1,0,technical,medium
Brandon Wagner,1,0.11,0.94,7.0,244.0,4.0,0,0,management,medium
Beatrice Terry,1,0.45,0.54,2.0,129.0,3.0,0,0,marketing,high
Max Wilson,1,0.81,0.87,4.0,254.0,5.0,0,0,marketing,low
Juan Becker,1,0.77,0.91,5.0,236.0,5.0,0,0,marketing,medium
Charlotte Poole,1,0.89,0.92,5.0,237.0,5.0,0,0,sales,medium
Lettie Nash,1,0.43,0.49,2.0,135.0,3.0,0,0,sales,medium
Frederick Houston,1,0.78,1.0,5.0,236.0,5.0,0,0,sales,medium
Viola Shaw,1,0.37,0.47,2.0,149.0,3.0,0,0,sales,low
Christopher Wheeler,1,0.37,0.5,2.0,141.0,3.0,0,0,sales,low
Eula Rios,1,0.85,0.82,4.0,270.0,5.0,0,0,sales,low
Edward Colon,1,0.41,0.47,2.0,138.0,3.0,0,0,sales,low
Dennis Henry,1,0.11,0.96,6.0,298.0,4.0,0,0,sales,low
Sarah Sutton,1,0.75,0.99,5.0,254.0,5.0,0,0,sales,low
Susie Farmer,1,0.82,0.85,5.0,248.0,5.0,0,0,sales,low
Troy Estrada,1,0.79,1.0,5.0,257.0,6.0,0,0,sales,low
Gabriel Moreno,1,0.43,0.53,2.0,150.0,3.0,0,0,sales,low
Minnie Miles,1,0.1,0.9,7.0,281.0,4.0,0,0,sales,low
Jeffery Butler,1,0.46,0.48,2.0,141.0,3.0,1,0,sales,low
Annie Jones,1,0.43,0.57,2.0,157.0,3.0,0,0,sales,low
Ann Johnston,1,0.43,0.55,2.0,136.0,3.0,0,0,sales,low
Leo Banks,1,0.11,0.8,7.0,296.0,4.0,0,0,sales,low
Glen Farmer,1,0.09,0.86,6.0,279.0,4.0,0,0,sales,low
Ronnie Griffin,1,0.37,0.53,2.0,131.0,3.0,0,0,sales,low
Todd Blair,1,0.4,0.57,2.0,160.0,3.0,0,0,accounting,low
Evelyn Walker,1,0.1,0.77,7.0,291.0,4.0,0,0,accounting,low
Tommy Curtis,1,0.41,0.53,2.0,157.0,3.0,0,0,accounting,low
Nelle Holland,1,0.79,0.58,3.0,294.0,4.0,0,0,hr,low
Eleanor Roy,1,0.11,0.79,7.0,310.0,4.0,0,0,hr,low
Alma Lawson,1,0.1,0.97,6.0,282.0,4.0,0,0,hr,medium
Irene Marshall,1,0.44,0.51,2.0,134.0,3.0,0,0,hr,medium
Dennis Nichols,1,0.25,0.46,4.0,214.0,4.0,0,0,technical,medium
Iva Black,1,0.44,0.52,2.0,137.0,3.0,0,0,technical,medium
Rhoda Hampton,1,0.73,1.0,4.0,252.0,5.0,0,0,technical,medium
Ada Atkins,1,0.75,0.97,5.0,243.0,6.0,0,0,technical,medium
Fred Conner,1,0.36,0.47,2.0,148.0,3.0,0,0,technical,medium
Franklin Coleman,1,0.37,0.49,2.0,151.0,3.0,0,0,technical,medium
Isaiah Wright,1,0.39,0.49,2.0,129.0,3.0,0,0,technical,medium
Vera Hines,1,0.48,0.78,2.0,198.0,2.0,0,0,technical,medium
Maud Sanders,1,0.57,0.72,4.0,275.0,6.0,0,0,technical,medium
Julian Bowers,1,0.9,0.96,5.0,243.0,5.0,0,0,technical,medium
Blanche Barnett,1,0.39,0.55,2.0,159.0,3.0,0,0,technical,high
Randall Moreno,1,0.44,0.51,2.0,145.0,3.0,0,0,support,low
Dale Clark,1,0.81,0.88,5.0,242.0,5.0,0,0,support,medium
Willie Lane,1,0.74,0.87,5.0,242.0,5.0,0,0,support,medium
Mabelle Fuller,1,0.44,0.56,2.0,145.0,3.0,0,0,support,medium
Stella Bates,1,0.41,0.56,2.0,154.0,3.0,0,1,support,medium
Rhoda Buchanan,1,0.4,0.51,2.0,139.0,3.0,0,0,support,low
Linnie Adams,1,0.46,0.57,2.0,152.0,3.0,0,0,support,low
Alejandro Moss,1,0.8,0.83,2.0,211.0,3.0,0,0,support,low
Melvin Grant,1,0.87,0.9,5.0,258.0,5.0,0,0,support,low
Alta Valdez,1,0.39,0.54,2.0,155.0,3.0,0,0,support,low
Dominic Gonzales,1,0.38,0.55,2.0,148.0,3.0,0,0,support,low
Madge Lynch,1,0.66,0.67,2.0,255.0,3.0,0,0,technical,low
Miguel Webster,1,0.1,0.8,6.0,264.0,4.0,0,0,technical,low
Willie Lyons,1,0.37,0.54,2.0,132.0,3.0,0,0,technical,low
Olga Sandoval,1,0.1,0.77,6.0,255.0,4.0,0,0,management,low
Jason McBride,1,0.09,0.87,5.0,263.0,4.0,0,0,IT,low
Jesse Matthews,1,0.86,0.84,5.0,222.0,5.0,0,0,IT,low
Alice Caldwell,1,0.11,0.9,6.0,263.0,4.0,0,0,IT,low
Mike Christensen,1,0.37,0.46,2.0,157.0,3.0,0,0,IT,low
Abbie Doyle,1,0.11,0.92,7.0,307.0,4.0,0,0,IT,low
Danny Logan,1,0.77,0.98,5.0,259.0,6.0,0,0,product_mng,low
Elijah Fowler,1,0.84,0.94,5.0,222.0,6.0,0,0,product_mng,low
Theresa Tyler,1,0.1,0.84,7.0,250.0,4.0,0,0,product_mng,low
Trevor Nunez,1,0.83,0.9,5.0,245.0,5.0,0,0,product_mng,low
Blake Griffin,1,0.11,0.79,6.0,292.0,4.0,0,0,IT,low
Gabriel Pope,1,0.86,0.92,5.0,252.0,5.0,0,0,RandD,low
Celia Brady,1,0.38,0.56,2.0,161.0,3.0,0,0,RandD,medium
Rose Garza,1,0.11,0.88,5.0,250.0,4.0,0,0,RandD,medium
Gavin Patton,1,0.45,0.49,2.0,134.0,3.0,0,0,RandD,medium
Henry McGee,1,0.1,0.85,7.0,279.0,4.0,0,0,RandD,medium
Eugenia Davis,1,0.09,0.95,7.0,256.0,4.0,0,0,marketing,medium
Barbara Webb,1,0.39,0.53,2.0,127.0,3.0,0,0,sales,medium
Sophia Brock,1,0.37,0.47,2.0,138.0,3.0,1,0,accounting,medium
Pearl Sanchez,1,0.81,0.97,5.0,243.0,5.0,0,0,support,medium
Ola Robinson,1,0.09,0.9,7.0,296.0,4.0,0,0,technical,medium
Dennis McDaniel,1,0.1,0.88,7.0,267.0,4.0,0,0,management,medium
Isaiah Peters,1,0.39,0.49,2.0,144.0,3.0,0,0,marketing,medium
Sue Stevenson,1,0.83,0.95,4.0,251.0,5.0,0,0,marketing,medium
Ann Schultz,1,0.45,0.57,2.0,148.0,3.0,0,0,marketing,high
Tommy Silva,1,0.43,0.51,2.0,141.0,3.0,0,0,sales,low
Alice Graham,1,0.8,0.75,3.0,268.0,2.0,0,0,sales,medium
Jim Roberson,1,0.1,0.86,6.0,247.0,4.0,0,0,sales,medium
Ida Ramirez,1,0.1,0.55,2.0,247.0,4.0,0,0,sales,medium
Eliza Nichols,1,0.36,0.52,2.0,146.0,3.0,0,0,sales,medium
Elsie Lamb,1,0.38,0.5,2.0,140.0,3.0,0,0,sales,low
Bobby Powell,1,0.78,0.98,5.0,263.0,6.0,0,0,sales,low
Adelaide Moran,1,0.44,0.49,2.0,145.0,3.0,0,0,sales,low
Rosie Tran,1,0.41,0.46,2.0,156.0,3.0,1,0,sales,low
Bradley Allen,1,0.72,0.85,5.0,244.0,6.0,0,0,sales,low
Laura Luna,1,0.46,0.54,2.0,144.0,3.0,0,0,sales,low
Sara Bowman,1,0.1,0.9,7.0,286.0,4.0,0,0,sales,low
Leon Valdez,1,0.34,0.67,4.0,141.0,2.0,0,0,sales,low
Allen Craig,1,0.11,0.89,6.0,260.0,5.0,0,0,sales,low
Amelia Vaughn,1,0.38,0.56,2.0,154.0,3.0,0,0,sales,low
Nell Glover,1,0.82,0.92,5.0,225.0,5.0,0,0,sales,low
Leah Casey,1,0.39,0.57,2.0,127.0,3.0,0,0,sales,low
Bettie Larson,1,0.44,0.53,2.0,140.0,3.0,0,0,sales,low
Eugene Frazier,1,0.43,0.52,2.0,147.0,3.0,0,0,sales,low
Micheal Warren,1,0.84,0.83,4.0,227.0,5.0,0,0,accounting,low
Joel Hicks,1,0.43,0.48,2.0,153.0,3.0,0,0,accounting,low
Elmer Lucas,1,0.37,0.52,2.0,128.0,3.0,0,0,accounting,low
Warren Bowman,1,0.74,0.97,4.0,228.0,5.0,0,0,hr,low
Derek Padilla,1,0.73,0.97,5.0,235.0,5.0,0,0,hr,low
Hulda Miller,1,0.37,0.47,2.0,148.0,3.0,0,0,hr,low
Grace Palmer,1,0.58,0.62,4.0,238.0,3.0,0,0,hr,low
Marie Hopkins,1,0.4,0.54,2.0,141.0,3.0,0,0,technical,medium
Dustin Ball,1,0.51,0.83,5.0,249.0,4.0,0,0,technical,medium
Jerome Sandoval,1,0.46,0.5,2.0,151.0,3.0,0,0,technical,medium
Nell Lindsey,1,0.45,0.54,2.0,129.0,3.0,0,0,technical,medium
Clarence Perkins,1,0.46,0.5,2.0,156.0,3.0,0,0,technical,medium
Nicholas Lewis,1,0.39,0.45,2.0,134.0,3.0,0,0,technical,medium
Hallie Reeves,1,0.09,0.88,6.0,269.0,4.0,0,0,technical,medium
Mable Burke,1,0.09,0.77,6.0,290.0,4.0,0,0,technical,medium
Lucille Andrews,1,0.37,0.51,2.0,132.0,3.0,0,0,technical,medium
Agnes Roberson,1,0.1,0.89,7.0,308.0,4.0,0,0,technical,medium
Ray Harrington,1,0.77,1.0,4.0,232.0,5.0,0,0,technical,medium
Harriett Nichols,1,0.79,0.86,5.0,235.0,5.0,0,0,support,medium
Augusta Crawford,1,0.43,0.55,2.0,130.0,3.0,0,0,support,high
Catherine Quinn,1,0.38,0.53,2.0,146.0,3.0,0,0,support,low
Margaret Norris,1,0.77,0.91,5.0,221.0,6.0,0,0,support,medium
Olivia Pena,1,0.44,0.5,2.0,130.0,3.0,0,0,support,medium
Leon Cox,1,0.39,0.46,2.0,136.0,3.0,0,0,support,medium
Harold Floyd,1,0.78,0.89,5.0,274.0,6.0,0,0,support,medium
Hannah Bryant,1,0.1,0.79,6.0,256.0,5.0,0,0,support,low
Harriett Ellis,1,0.1,0.77,5.0,276.0,4.0,0,0,support,low
Chris Stanley,1,0.75,0.85,5.0,267.0,5.0,0,0,support,low
Milton Bates,1,0.46,0.62,6.0,213.0,3.0,0,0,support,low
Nell Bell,1,0.91,0.97,4.0,274.0,6.0,0,0,technical,low
Irene Baldwin,1,0.1,0.92,6.0,258.0,4.0,0,0,technical,low
Virginia Alvarez,1,0.72,0.6,3.0,153.0,5.0,0,0,technical,low
Anne Wagner,1,0.11,0.95,6.0,245.0,4.0,0,0,management,low
Fred Blair,1,0.11,0.94,6.0,264.0,4.0,0,0,IT,low
Raymond Murphy,1,0.46,0.57,2.0,154.0,3.0,0,0,IT,low
Etta Hughes,1,0.37,0.46,2.0,149.0,3.0,0,0,IT,low
Seth Gordon,1,0.46,0.5,2.0,157.0,3.0,0,0,IT,low
Jeffrey Pope,1,0.43,0.57,2.0,127.0,3.0,0,0,IT,low
Fred Jacobs,1,0.11,0.82,6.0,270.0,4.0,0,0,product_mng,low
Laura Padilla,1,0.73,0.89,5.0,236.0,6.0,0,0,product_mng,low
Nora Warren,1,0.43,0.47,2.0,158.0,3.0,0,0,product_mng,low
Ellen Cruz,1,0.86,1.0,5.0,229.0,5.0,0,0,product_mng,low
Gilbert Green,1,0.1,0.83,6.0,269.0,4.0,0,0,IT,low
Bessie Allen,1,0.4,0.49,2.0,128.0,3.0,0,0,sales,low
Cynthia Blake,1,0.11,0.87,7.0,278.0,4.0,0,0,sales,low
Luis Fernandez,1,0.86,0.98,3.0,158.0,5.0,0,0,sales,low
Gary Flores,1,0.42,1.0,3.0,202.0,3.0,0,0,sales,medium
Lillie Santiago,1,0.79,0.84,4.0,240.0,5.0,0,0,sales,medium
Willie Freeman,1,0.1,0.96,7.0,255.0,4.0,0,0,marketing,medium
Minerva Lynch,1,0.09,0.92,7.0,254.0,4.0,0,0,sales,medium
Janie Copeland,1,0.09,0.82,6.0,257.0,4.0,0,0,accounting,medium
Jorge Bailey,1,0.87,1.0,4.0,228.0,5.0,0,0,support,medium
Herbert Hall,1,0.36,0.49,2.0,145.0,3.0,0,0,technical,medium
Allen Rhodes,1,0.42,0.75,3.0,218.0,4.0,0,0,management,medium
Shawn Jenkins,1,0.84,0.86,5.0,268.0,5.0,0,0,marketing,medium
Nannie Andrews,1,0.1,0.83,6.0,278.0,4.0,0,0,marketing,medium
Eugenia Glover,1,0.78,0.71,3.0,249.0,5.0,0,0,marketing,medium
Frederick Barnes,1,0.35,0.99,3.0,236.0,4.0,0,0,sales,medium
Laura Obrien,1,0.1,0.81,7.0,291.0,4.0,0,0,sales,high
Gary Tyler,1,0.11,0.8,6.0,306.0,4.0,0,0,sales,low
Mark Berry,1,0.43,0.48,2.0,135.0,3.0,0,0,sales,medium
Jennie Mitchell,1,0.38,0.45,2.0,156.0,3.0,0,0,sales,medium
Winnie Norman,1,0.46,0.54,2.0,143.0,3.0,0,0,sales,medium
Lena Ramsey,1,0.89,0.82,4.0,243.0,5.0,0,0,sales,medium
Dylan Malone,1,0.45,0.5,2.0,147.0,3.0,0,0,sales,low
Inez Stevenson,1,0.44,0.53,2.0,159.0,3.0,0,0,sales,low
Addie Estrada,1,0.74,0.54,5.0,216.0,3.0,0,0,sales,low
William Vega,1,0.45,0.54,2.0,152.0,3.0,0,0,sales,low
Cynthia Roy,1,0.79,0.93,4.0,226.0,5.0,0,0,sales,low
Mabelle Bridges,1,0.79,0.91,5.0,271.0,5.0,0,0,sales,low
Danny Young,1,0.11,0.87,6.0,255.0,4.0,0,0,sales,low
Ralph Reeves,1,0.42,0.48,2.0,140.0,3.0,0,0,sales,low
Hunter Caldwell,1,0.64,0.9,6.0,252.0,2.0,0,0,sales,low
Adeline Bates,1,0.4,0.55,2.0,159.0,3.0,0,0,sales,low
Lida Nunez,1,0.84,0.98,5.0,270.0,5.0,0,0,sales,low
Tom Fernandez,1,0.73,0.92,5.0,232.0,5.0,0,0,sales,low
Lida Lawrence,1,0.4,0.51,2.0,144.0,3.0,0,0,accounting,low
Lelia Grant,1,0.36,0.45,2.0,127.0,3.0,0,0,accounting,low
Grace Holmes,1,0.43,0.47,2.0,131.0,3.0,0,0,accounting,low
Jay Morgan,1,0.11,0.78,6.0,243.0,4.0,0,0,hr,low
Eugene Christensen,1,0.91,1.0,5.0,244.0,6.0,0,0,hr,low
Trevor Harmon,1,0.8,1.0,5.0,260.0,5.0,0,0,hr,low
Alberta Dunn,1,0.42,0.49,2.0,139.0,3.0,0,0,hr,low
Josie Mills,1,0.31,0.87,4.0,184.0,3.0,0,0,technical,low
Jared Stone,1,0.44,0.47,2.0,130.0,3.0,0,0,technical,low
Melvin Huff,1,0.38,0.54,2.0,135.0,3.0,0,0,technical,medium
Georgie Lawson,1,0.45,0.56,2.0,146.0,3.0,0,0,technical,medium
Kyle Riley,1,0.43,0.46,2.0,149.0,3.0,0,0,technical,medium
Mark Terry,1,0.45,0.46,2.0,153.0,3.0,1,0,technical,medium
Richard Reynolds,1,0.43,0.57,2.0,160.0,3.0,0,0,technical,medium
Charlie Spencer,1,0.43,0.49,2.0,160.0,3.0,0,0,technical,medium
Eva Dawson,1,0.09,0.83,6.0,282.0,4.0,0,0,technical,medium
Edwin Massey,1,0.43,0.47,2.0,128.0,3.0,0,0,technical,medium
Dylan Watson,1,0.79,0.94,4.0,232.0,5.0,0,0,technical,medium
Mike Jennings,1,0.85,0.58,3.0,226.0,2.0,0,0,support,medium
Fanny Henry,1,0.38,0.45,2.0,129.0,3.0,0,0,support,medium
Caleb Pearson,1,0.11,0.92,7.0,255.0,4.0,0,0,support,medium
Lucas Jones,1,0.83,0.99,5.0,258.0,5.0,0,0,support,high
Mollie Holland,1,0.81,0.91,4.0,229.0,5.0,0,0,support,low
Harold Harper,1,0.42,0.56,2.0,143.0,3.0,0,0,support,medium
Randy Robbins,1,0.11,0.87,6.0,257.0,4.0,0,0,support,medium
Lina Griffin,1,0.11,0.85,7.0,275.0,4.0,0,0,support,medium
Luke Mack,1,0.1,0.89,7.0,291.0,4.0,0,0,support,medium
Curtis Ball,1,0.5,0.54,5.0,153.0,4.0,0,0,support,low
Jorge Burns,1,0.44,0.49,2.0,154.0,3.0,0,0,support,low
Robert Douglas,1,0.11,0.9,6.0,301.0,4.0,0,0,technical,low
Helen Swanson,1,0.39,0.52,2.0,134.0,3.0,0,0,technical,low
Mabelle Spencer,1,0.11,0.78,6.0,245.0,4.0,0,0,technical,low
Emily Lewis,1,0.36,0.5,2.0,132.0,3.0,0,0,management,low
Florence Dawson,1,0.43,0.51,2.0,130.0,3.0,0,0,IT,low
Walter Hopkins,1,0.4,0.5,2.0,127.0,3.0,0,0,IT,low
Glen Berry,1,0.86,0.84,4.0,246.0,6.0,0,0,IT,low
Kenneth Rodriguez,1,0.38,0.49,2.0,145.0,3.0,0,0,IT,low
Mitchell Marshall,1,0.46,0.45,2.0,138.0,3.0,0,1,IT,low
Iva Cooper,1,0.37,0.57,2.0,129.0,3.0,0,0,product_mng,low
Adam Frank,1,0.43,0.52,2.0,150.0,3.0,0,0,product_mng,low
Ora Bowers,1,0.66,0.93,5.0,253.0,5.0,0,0,product_mng,low
Nathan Jefferson,1,0.37,0.48,2.0,160.0,3.0,0,0,product_mng,low
Olivia Brady,1,0.77,0.92,5.0,235.0,5.0,0,0,IT,low
Leonard Freeman,1,0.38,0.55,2.0,151.0,3.0,0,0,sales,low
Mary Barber,1,0.39,0.54,2.0,127.0,3.0,0,0,sales,low
Lelia Alexander,1,0.41,0.55,2.0,151.0,3.0,0,0,sales,low
Russell Harper,1,0.1,0.9,7.0,290.0,4.0,0,0,sales,low
Andre Garner,1,0.09,0.93,6.0,249.0,4.0,0,0,sales,low
Trevor Palmer,1,0.41,0.47,2.0,131.0,3.0,0,0,marketing,medium
Eula Hubbard,1,0.39,0.46,2.0,159.0,3.0,0,0,sales,medium
Jesus Chavez,1,0.83,0.99,4.0,223.0,5.0,0,0,accounting,medium
Harry Erickson,1,0.09,0.87,3.0,214.0,2.0,0,0,support,medium
Lewis Potter,1,0.75,0.81,5.0,227.0,5.0,0,0,technical,medium
Marie Miles,1,0.44,0.54,2.0,127.0,3.0,0,0,management,medium
Bernard Cannon,1,0.1,0.84,6.0,293.0,5.0,0,0,marketing,medium
Martin French,1,0.42,0.46,2.0,141.0,3.0,0,0,marketing,medium
Hunter Benson,1,0.1,0.83,6.0,300.0,4.0,0,0,marketing,medium
Chad Burgess,1,0.1,0.86,6.0,309.0,4.0,0,0,sales,medium
Olga Black,1,0.31,0.77,4.0,149.0,3.0,0,0,sales,medium
Derrick Carroll,1,0.42,0.54,2.0,159.0,3.0,0,0,sales,medium
Ina Parsons,1,0.38,0.5,2.0,152.0,3.0,0,0,sales,high
Hilda Neal,1,0.39,0.57,2.0,158.0,3.0,0,0,sales,low
Amy Santiago,1,0.1,0.97,6.0,254.0,5.0,0,0,sales,medium
Christian Norman,1,0.11,0.93,6.0,294.0,4.0,0,0,sales,medium
Alex Hines,1,0.1,0.92,7.0,269.0,4.0,0,0,sales,medium
Rodney Elliott,1,0.11,0.9,7.0,247.0,4.0,0,0,sales,medium
Florence Green,1,0.44,0.65,3.0,271.0,4.0,0,0,sales,low
Ruby Wilkerson,1,0.91,0.96,4.0,232.0,5.0,0,0,sales,low
Fannie Jensen,1,0.72,1.0,4.0,245.0,5.0,0,0,sales,low
Aaron Stevens,1,0.36,0.46,2.0,132.0,3.0,0,0,sales,low
Helen Little,1,0.44,0.57,2.0,131.0,3.0,0,0,sales,low
Miguel Taylor,1,0.85,0.99,5.0,248.0,5.0,0,0,sales,low
Troy Bailey,1,0.78,0.93,5.0,225.0,5.0,0,0,sales,low
Stanley Schmidt,1,0.39,0.46,2.0,156.0,3.0,0,0,sales,low
Estelle Casey,1,0.78,0.81,3.0,222.0,2.0,0,0,sales,low
David Erickson,1,0.1,0.92,6.0,243.0,4.0,1,0,sales,low
Cordelia Moore,1,0.23,0.99,4.0,204.0,4.0,1,0,accounting,low
Douglas Watkins,1,0.11,0.87,6.0,301.0,4.0,0,0,accounting,low
Kevin Luna,1,0.9,0.83,5.0,259.0,5.0,0,0,accounting,low
Nathan Poole,1,0.91,0.89,4.0,247.0,5.0,0,0,hr,low
Francis Vaughn,1,0.11,0.79,7.0,295.0,4.0,0,0,hr,low
Belle Henderson,1,0.43,0.54,2.0,150.0,3.0,0,0,hr,low
Dorothy White,1,0.45,0.49,2.0,151.0,3.0,0,0,hr,low
Callie Hoffman,1,0.11,0.91,5.0,291.0,4.0,0,0,technical,low
Estella Alvarez,1,0.11,0.93,6.0,253.0,4.0,1,0,technical,low
Corey Rhodes,1,0.43,0.5,2.0,161.0,3.0,0,0,technical,low
Philip McLaughlin,1,0.91,0.97,4.0,251.0,6.0,0,0,technical,low
Harvey Bridges,1,0.43,0.55,2.0,153.0,3.0,0,0,technical,medium
Marguerite Perkins,1,0.85,0.82,5.0,264.0,6.0,0,0,technical,medium
Victoria Steele,1,0.1,0.77,6.0,310.0,4.0,0,0,technical,medium
Chester Adams,1,0.81,0.95,5.0,266.0,5.0,0,0,technical,medium
Roy Barnett,1,0.36,0.62,4.0,237.0,2.0,0,0,technical,medium
Sarah Pearson,1,0.45,0.54,2.0,138.0,3.0,0,0,technical,medium
Ora Lyons,1,0.86,1.0,5.0,227.0,5.0,0,0,technical,medium
Virgie Mitchell,1,0.71,1.0,4.0,300.0,5.0,0,0,support,medium
Earl Luna,1,0.11,0.97,7.0,310.0,4.0,0,0,support,medium
Eliza Brady,1,0.84,0.93,5.0,236.0,5.0,0,0,support,medium
Craig Silva,1,0.09,0.97,7.0,288.0,4.0,0,0,support,medium
Georgie Dennis,1,0.38,0.49,2.0,127.0,3.0,0,0,support,medium
Alberta Morgan,1,0.15,0.55,6.0,139.0,4.0,0,0,support,high
Louis Green,1,0.1,0.92,7.0,253.0,4.0,1,0,support,low
Joshua Cummings,1,0.8,0.97,4.0,218.0,5.0,1,0,support,medium
Aaron Sullivan,1,0.84,0.97,5.0,251.0,5.0,0,0,support,medium
Cole Mathis,1,0.11,0.87,6.0,264.0,4.0,0,0,support,medium
Martha George,1,0.89,0.79,3.0,149.0,2.0,0,0,support,medium
Lela Perez,1,0.45,0.51,2.0,138.0,3.0,0,0,technical,low
Rebecca Lewis,1,0.11,0.93,7.0,284.0,4.0,0,0,technical,low
Elnora Patton,1,0.74,0.93,5.0,244.0,5.0,0,0,technical,low
Rebecca Stevenson,1,0.41,0.5,2.0,128.0,3.0,0,0,management,low
Jimmy Price,1,0.44,0.53,2.0,154.0,3.0,0,0,IT,low
Sophia Shelton,1,0.37,0.56,2.0,138.0,3.0,0,0,IT,low
Lou Gordon,1,0.11,0.86,6.0,308.0,4.0,0,0,IT,low
Lura Oliver,1,0.1,0.93,6.0,269.0,4.0,0,0,IT,low
Catherine Russell,1,0.7,0.74,6.0,136.0,3.0,0,0,IT,low
Herbert Clarke,1,0.59,1.0,2.0,160.0,5.0,0,0,product_mng,low
Isabelle Lopez,1,0.38,0.53,2.0,138.0,3.0,0,0,product_mng,low
Frank Pope,1,0.72,0.95,4.0,220.0,5.0,0,0,product_mng,low
Viola Riley,1,0.73,1.0,5.0,274.0,5.0,0,0,product_mng,low
Devin Malone,1,0.39,0.48,2.0,161.0,3.0,0,0,IT,low
Steve Berry,1,0.89,0.82,5.0,224.0,6.0,0,0,RandD,low
Annie Black,1,0.89,1.0,4.0,260.0,5.0,0,0,RandD,low
Phillip McGuire,1,0.11,0.78,6.0,300.0,4.0,1,0,RandD,low
Lydia Ferguson,1,0.43,0.56,2.0,133.0,3.0,0,0,RandD,low
Gordon Ballard,1,0.09,0.93,6.0,308.0,4.0,0,0,RandD,low
Jay Woods,1,0.81,0.9,5.0,238.0,6.0,0,0,marketing,low
Connor Harrison,1,0.37,0.53,2.0,126.0,3.0,0,0,sales,low
Bertie Gardner,1,0.36,0.56,2.0,138.0,3.0,0,0,accounting,medium
Emilie Nguyen,1,0.11,0.85,6.0,299.0,4.0,0,0,support,medium
Lee Harmon,1,0.1,0.85,6.0,254.0,4.0,0,0,technical,medium
Lily Willis,1,0.66,0.47,7.0,156.0,2.0,0,0,management,medium
Maggie Hampton,1,0.39,0.47,2.0,152.0,3.0,0,0,marketing,medium
Landon Beck,1,0.44,0.51,2.0,146.0,3.0,0,0,marketing,medium
Maria Allison,1,0.1,0.84,6.0,253.0,4.0,0,0,marketing,medium
Dean Potter,1,0.79,0.94,5.0,227.0,6.0,0,0,sales,medium
Nathaniel Paul,1,0.1,0.81,6.0,301.0,4.0,1,0,sales,medium
Billy Wallace,1,0.54,0.94,6.0,294.0,3.0,0,0,sales,medium
Ola Owens,1,0.37,0.47,2.0,151.0,3.0,0,0,sales,medium
Minerva Little,1,0.37,0.57,2.0,128.0,3.0,0,0,sales,medium
Ida Simmons,1,0.82,0.89,5.0,217.0,5.0,0,0,sales,high
Roy Nunez,1,0.45,0.52,2.0,160.0,3.0,0,0,sales,low
Jorge Stephens,1,0.79,0.9,5.0,263.0,5.0,0,0,sales,medium
Lela Marshall,1,0.42,0.56,2.0,156.0,3.0,0,0,sales,medium
Francis Clayton,1,0.1,0.85,6.0,273.0,4.0,0,0,sales,medium
Eva Tate,1,0.11,0.78,6.0,303.0,4.0,0,0,sales,medium
Lily Manning,1,0.74,1.0,4.0,253.0,5.0,0,0,sales,low
Timothy Cain,1,0.1,0.93,6.0,270.0,4.0,0,0,sales,low
Stanley Hart,1,0.79,1.0,4.0,218.0,5.0,0,0,sales,low
Estelle Coleman,1,0.43,0.48,2.0,144.0,3.0,0,0,sales,low
Sarah Holmes,1,0.41,0.47,2.0,154.0,3.0,0,0,sales,low
Mabelle Francis,1,0.39,0.55,2.0,146.0,3.0,0,0,sales,low
Cody Brown,1,0.1,0.94,6.0,260.0,4.0,0,0,sales,low
Lola Foster,1,0.82,0.85,5.0,218.0,5.0,0,0,sales,low
Eva Salazar,1,0.41,0.46,2.0,128.0,3.0,0,0,accounting,low
Mable Padilla,1,0.42,0.56,2.0,128.0,3.0,0,0,accounting,low
Trevor Keller,1,0.74,0.88,4.0,248.0,6.0,0,0,accounting,low
Chris Montgomery,1,0.38,0.57,2.0,152.0,3.0,1,0,hr,low
Effie Gibson,1,0.39,0.56,2.0,126.0,3.0,0,0,hr,low
Carolyn Snyder,1,0.87,0.94,4.0,260.0,5.0,0,0,hr,low
Victor Jefferson,1,0.1,0.9,5.0,263.0,4.0,0,0,hr,low
Michael Rowe,1,0.78,1.0,5.0,220.0,5.0,0,0,technical,low
Dollie Parks,1,0.14,0.73,7.0,282.0,5.0,0,0,technical,low
Evelyn Wallace,1,0.11,0.94,6.0,277.0,5.0,0,0,technical,low
Polly Shaw,1,0.91,0.94,5.0,257.0,5.0,0,0,technical,low
Ina Anderson,1,0.49,0.63,6.0,265.0,3.0,0,0,technical,low
Shane Erickson,1,0.38,0.47,2.0,143.0,3.0,0,0,technical,low
Jorge Porter,1,0.82,0.97,5.0,263.0,5.0,0,0,technical,medium
Eddie Rhodes,1,0.38,0.88,3.0,154.0,4.0,0,0,technical,medium
Lina Kelly,1,0.89,1.0,5.0,253.0,5.0,0,0,technical,medium
Marie Adkins,1,0.11,0.79,6.0,294.0,4.0,0,0,technical,medium
John Evans,1,0.37,0.51,2.0,128.0,3.0,0,0,technical,medium
Ada Cain,1,0.38,0.5,2.0,153.0,3.0,0,0,support,medium
Lawrence Waters,1,0.78,0.87,5.0,256.0,5.0,0,0,support,medium
Myrtie Lindsey,1,0.41,0.51,2.0,127.0,3.0,0,0,support,medium
Hilda Richardson,1,0.41,0.51,2.0,137.0,3.0,0,0,support,medium
Rose Hansen,1,0.11,0.83,6.0,295.0,4.0,0,0,support,medium
Martin Horton,1,0.11,0.79,6.0,281.0,4.0,0,0,support,medium
Nannie Burke,1,0.43,0.57,2.0,131.0,3.0,1,0,support,medium
Floyd Howell,1,0.75,0.86,5.0,237.0,5.0,0,0,support,high
Cordelia Erickson,1,0.74,0.99,4.0,276.0,5.0,0,0,support,low
Tommy Lyons,1,0.85,0.85,5.0,267.0,5.0,0,0,support,medium
Shane Warren,1,0.73,0.92,5.0,266.0,5.0,0,0,support,medium
Viola Vega,1,0.1,0.79,6.0,294.0,4.0,0,0,technical,medium
Philip Fletcher,1,0.44,0.56,2.0,134.0,3.0,0,0,technical,medium
Mable Douglas,1,0.3,0.56,3.0,309.0,4.0,1,0,technical,low
Jason Stewart,1,0.11,0.77,7.0,273.0,4.0,0,0,management,low
Bertha Harrington,1,0.84,0.83,5.0,238.0,5.0,0,0,IT,low
Cornelia Jensen,1,0.78,0.94,5.0,271.0,6.0,0,0,IT,low
Ricky Wong,1,0.43,0.53,2.0,145.0,3.0,0,0,IT,low
Allie Aguilar,1,0.36,0.55,2.0,152.0,3.0,0,0,IT,low
Mabel Frazier,1,0.43,0.47,2.0,128.0,3.0,0,0,IT,low
Mae Webb,1,0.45,0.46,2.0,142.0,3.0,0,0,product_mng,low
Lucas Webb,1,0.76,0.93,5.0,238.0,5.0,0,0,product_mng,low
Tom Parker,1,0.1,0.78,7.0,286.0,4.0,0,0,product_mng,low
Theodore Stephens,1,0.09,0.86,6.0,291.0,4.0,0,0,product_mng,low
Kathryn Frank,1,0.92,1.0,5.0,259.0,5.0,0,0,IT,low
Leah Wallace,1,0.92,0.9,5.0,248.0,5.0,0,0,sales,low
Patrick Welch,1,0.79,0.98,4.0,271.0,5.0,0,0,sales,low
Harriett Mathis,1,0.43,0.51,2.0,140.0,3.0,0,0,sales,low
Francis Reyes,1,0.8,0.95,4.0,274.0,5.0,0,0,sales,low
Jay Jones,1,0.44,0.49,2.0,127.0,3.0,1,0,sales,low
Edwin Carpenter,1,0.89,0.87,5.0,275.0,6.0,0,0,marketing,low
Edna Cohen,1,0.48,0.88,3.0,239.0,3.0,0,0,sales,low
Eunice Ramsey,1,0.11,0.82,6.0,304.0,4.0,1,0,accounting,low
Shawn Scott,1,0.38,0.55,2.0,145.0,3.0,0,0,support,low
Joel Terry,1,0.11,0.85,6.0,259.0,4.0,0,0,technical,medium
Derek Perry,1,0.82,0.86,4.0,264.0,5.0,0,0,management,medium
Eunice Willis,1,0.37,0.45,2.0,160.0,3.0,0,0,marketing,medium
Cornelia Scott,1,0.4,0.48,2.0,138.0,3.0,0,0,marketing,medium
Eunice Hawkins,1,0.43,0.47,2.0,137.0,3.0,0,0,marketing,medium
Lewis Ramirez,1,0.44,0.5,2.0,156.0,3.0,0,0,sales,medium
Gene Curtis,1,0.42,0.56,2.0,147.0,3.0,0,0,sales,medium
Duane Bennett,1,0.11,0.8,7.0,243.0,4.0,0,0,sales,medium
Gary Manning,1,0.78,0.87,4.0,236.0,5.0,0,0,sales,medium
Marguerite Reynolds,1,0.46,0.86,2.0,212.0,4.0,0,0,sales,medium
Ricky Ward,1,0.77,0.91,5.0,261.0,6.0,0,0,sales,medium
Lela Todd,1,0.83,0.82,4.0,243.0,5.0,0,0,sales,medium
Gerald Sutton,1,0.32,0.58,5.0,271.0,5.0,0,0,sales,high
Hulda Wells,1,0.9,0.92,5.0,154.0,4.0,0,0,sales,low
Eleanor Bradley,1,0.42,0.52,2.0,151.0,3.0,0,0,sales,medium
Cynthia Webb,1,0.1,0.96,6.0,254.0,4.0,1,0,sales,medium
Bill Stokes,1,0.1,0.91,6.0,285.0,4.0,0,0,sales,medium
Irene Wood,1,0.44,0.49,2.0,130.0,3.0,0,0,sales,medium
Laura Blair,1,0.1,0.95,7.0,301.0,4.0,0,0,sales,low
Nathaniel Vargas,1,0.11,0.8,6.0,286.0,4.0,0,0,sales,low
Patrick Young,1,0.1,0.89,6.0,246.0,4.0,0,0,sales,low
Lula Hudson,1,0.39,0.47,2.0,135.0,3.0,0,0,sales,low
Eva Garcia,1,0.92,0.92,4.0,245.0,5.0,0,0,sales,low
Dominic Greer,1,0.43,0.56,2.0,136.0,3.0,0,0,sales,low
Maggie White,1,0.11,0.89,6.0,301.0,4.0,0,0,accounting,low
Andre Baker,1,0.81,1.0,5.0,235.0,5.0,0,0,accounting,low
Garrett Grant,1,0.11,0.85,7.0,272.0,4.0,0,0,accounting,low
Don Lyons,1,0.87,1.0,5.0,274.0,5.0,0,0,hr,low
Mattie McBride,1,0.37,0.46,2.0,131.0,3.0,0,0,hr,low
Juan Burgess,1,0.39,0.56,2.0,135.0,3.0,0,0,hr,low
Polly Williams,1,0.61,0.86,4.0,196.0,4.0,0,0,hr,low
Adeline Hanson,1,0.11,0.95,6.0,285.0,4.0,0,0,technical,low
Wayne Tate,1,0.09,0.9,7.0,289.0,5.0,0,0,technical,low
Eugenia Collins,1,0.36,0.52,2.0,157.0,3.0,0,0,technical,low
Howard Hamilton,1,0.09,0.94,6.0,308.0,4.0,0,0,technical,low
Helena Holland,1,0.41,0.71,4.0,301.0,5.0,0,0,technical,low
Kenneth Brooks,1,0.4,0.46,2.0,131.0,3.0,0,0,technical,low
Chris Figueroa,1,0.1,0.91,6.0,262.0,5.0,1,0,technical,low
Louis Holloway,1,0.46,0.53,2.0,143.0,3.0,1,0,technical,low
Ryan French,1,0.39,0.57,2.0,133.0,3.0,0,0,technical,medium
Andrew Saunders,1,0.41,0.5,2.0,153.0,3.0,0,0,technical,medium
Gerald Briggs,1,0.1,0.94,7.0,281.0,4.0,0,0,technical,medium
Belle Collier,1,0.39,0.51,2.0,132.0,3.0,0,0,support,medium
Lilly Roberts,1,0.73,0.83,5.0,270.0,5.0,1,0,support,medium
Grace Mack,1,0.41,0.45,2.0,150.0,3.0,0,0,support,medium
Douglas Marshall,1,0.37,0.51,2.0,140.0,3.0,0,0,support,medium
Keith Potter,1,0.38,0.5,2.0,150.0,3.0,1,0,support,medium
Wayne Stephens,1,0.8,0.63,5.0,180.0,5.0,0,0,support,medium
Harvey Mack,1,0.09,0.85,5.0,281.0,4.0,0,0,support,medium
Roy Day,1,0.85,0.92,4.0,275.0,5.0,0,0,support,medium
Mike Casey,1,0.42,0.54,2.0,130.0,3.0,0,0,support,medium
Francisco Bradley,1,0.41,0.48,2.0,130.0,3.0,0,0,support,high
Glen Guerrero,1,0.38,0.46,2.0,147.0,3.0,0,0,support,low
Christian Turner,1,0.72,1.0,5.0,264.0,5.0,0,0,technical,medium
Eula Hines,1,0.11,0.74,6.0,290.0,5.0,0,0,technical,medium
Jorge Moore,1,0.37,0.47,2.0,150.0,3.0,0,0,technical,medium
Marguerite Neal,1,0.1,0.81,6.0,304.0,4.0,0,0,management,medium
Vernon Bowers,1,0.36,0.54,2.0,136.0,3.0,0,0,IT,low
Rosetta Dennis,1,0.92,0.94,5.0,307.0,5.0,0,0,IT,low
Florence Ramsey,1,0.11,0.87,5.0,303.0,4.0,0,0,IT,low
Julia Wright,1,0.39,0.56,2.0,156.0,3.0,0,0,IT,low
Mitchell Holland,1,0.11,0.95,6.0,271.0,4.0,0,0,IT,low
Aiden Bush,1,0.45,0.45,2.0,140.0,3.0,0,0,product_mng,low
Mae Cole,1,0.44,0.55,2.0,130.0,3.0,1,0,product_mng,low
Rose Stewart,1,0.85,0.97,4.0,266.0,6.0,0,0,product_mng,low
Alvin Fletcher,1,0.43,0.52,2.0,139.0,3.0,0,0,product_mng,low
Mae Bell,1,0.75,0.86,5.0,260.0,5.0,0,0,IT,low
Mina Benson,1,0.11,0.55,2.0,137.0,3.0,1,0,RandD,low
Cole Byrd,1,0.36,0.5,2.0,158.0,3.0,0,0,RandD,low
Sophie Alvarado,1,0.1,0.79,6.0,249.0,4.0,0,0,RandD,low
Manuel Newton,1,0.74,0.89,5.0,259.0,5.0,0,0,RandD,low
Dean Holmes,1,0.4,0.46,2.0,144.0,3.0,0,0,RandD,low
Roy Gilbert,1,0.09,0.77,6.0,244.0,4.0,0,0,marketing,low
Lora Gutierrez,1,0.76,0.91,4.0,219.0,5.0,0,0,sales,low
Gilbert Larson,1,0.45,0.57,2.0,151.0,3.0,0,0,accounting,low
Clyde Stevens,1,0.84,0.88,4.0,269.0,5.0,0,0,support,low
Myrtie Gill,1,0.38,0.45,2.0,127.0,3.0,0,0,technical,low
Joe Fletcher,1,0.38,0.46,2.0,144.0,3.0,0,0,management,low
Gene Holloway,1,0.38,0.54,2.0,157.0,3.0,0,0,marketing,medium
Jay Gonzalez,1,0.86,0.94,5.0,224.0,5.0,0,0,marketing,medium
Claudia Miller,1,0.37,0.46,2.0,155.0,3.0,0,0,marketing,medium