-
Notifications
You must be signed in to change notification settings - Fork 2
/
HR_dataset.csv
We can't make this file beautiful and searchable because it's too large.
15001 lines (15001 loc) · 760 KB
/
HR_dataset.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
names,satisfaction_level,last_evaluation,number_project,average_monthly_hours,exp_in_company,work_accident,left,promotion_last_5years,role,salary
Jessica Stroud,0.38,0.53,2,157,3,0,1,0,sales,low
Daryl Fields,0.8,0.86,5,262,6,0,1,0,sales,medium
Daisy Anderson,0.11,0.88,7,272,4,0,1,0,sales,medium
Joseph Fernandez,0.72,0.87,5,223,5,0,1,0,sales,low
Herbert Moore,0.37,0.52,2,159,3,0,1,0,sales,low
Daniel Belew,0.41,0.5,2,153,3,0,1,0,sales,low
Shawn Paul,0.1,0.77,6,247,4,0,1,0,sales,low
Linda Bobbitt,0.92,0.85,5,259,5,0,1,0,sales,low
Kim Hernandez,0.89,1,5,224,5,0,1,0,sales,low
Gina Mahan,0.42,0.53,2,142,3,0,1,0,sales,low
Sherry Weeks,0.45,0.54,2,135,3,0,1,0,sales,low
Jenifer Smith,0.11,0.81,6,305,4,0,1,0,sales,low
Darrell Richardson,0.84,0.92,4,234,5,0,1,0,sales,low
Christie Neel,0.41,0.55,2,148,3,0,1,0,sales,low
Angelina Carter,0.36,0.56,2,137,3,0,1,0,sales,low
Kelly Rodriguez,0.38,0.54,2,143,3,0,1,0,sales,low
Karen Porter,0.45,0.47,2,160,3,0,1,0,sales,low
Christopher Mann,0.78,0.99,4,255,6,0,1,0,sales,low
Mary Roy,0.45,0.51,2,160,3,1,1,1,sales,low
Timothy Williams,0.76,0.89,5,262,5,0,1,0,sales,low
Joseph Orduna,0.11,0.83,6,282,4,0,1,0,sales,low
Kelsey Savage,0.38,0.55,2,147,3,0,1,0,sales,low
Constance Swenson,0.09,0.95,6,304,4,0,1,0,sales,low
Helen Wendte,0.46,0.57,2,139,3,0,1,0,sales,low
Timothy Badger,0.4,0.53,2,158,3,0,1,0,sales,low
Jack Jersey,0.89,0.92,5,242,5,0,1,0,sales,low
David Belanger,0.82,0.87,4,239,5,0,1,0,sales,low
Gregory Heyne,0.4,0.49,2,135,3,0,1,0,sales,low
Christina Allmon,0.41,0.46,2,128,3,0,1,0,accounting,low
Amy Carpenter,0.38,0.5,2,132,3,0,1,0,accounting,low
Kimberly Hogan,0.09,0.62,6,294,4,0,1,0,accounting,low
Michael Barbosa,0.45,0.57,2,134,3,0,1,0,hr,low
Brittany Couch,0.4,0.51,2,145,3,0,1,0,hr,low
Bonnie Kleis,0.45,0.55,2,140,3,0,1,0,hr,low
Nina Ortega,0.84,0.87,4,246,6,0,1,0,hr,low
Lori Strope,0.1,0.94,6,255,4,0,1,0,technical,low
Ruby Little,0.38,0.46,2,137,3,0,1,0,technical,low
Nancy Johnson,0.45,0.5,2,126,3,0,1,0,technical,low
Susan Waldman,0.11,0.89,6,306,4,0,1,0,technical,low
Cara Usrey,0.41,0.54,2,152,3,0,1,0,technical,low
Beverly Richardson,0.87,0.88,5,269,5,0,1,0,technical,low
Laura Bradley,0.45,0.48,2,158,3,0,1,0,technical,low
Jacqueline Rittenhouse,0.4,0.46,2,127,3,0,1,0,technical,low
Gayle Santiago,0.1,0.8,7,281,4,0,1,0,technical,low
Jesus Gunderson,0.09,0.89,6,276,4,0,1,0,technical,low
Joyce Lafond,0.84,0.74,3,182,4,0,1,0,technical,low
Wanda Choi,0.4,0.55,2,147,3,0,1,0,support,low
Sadie Randall,0.57,0.7,3,273,6,0,1,0,support,low
Dwight Pless,0.4,0.54,2,148,3,0,1,0,support,low
Peter Dickens,0.43,0.47,2,147,3,0,1,0,support,low
Mary Spina,0.13,0.78,6,152,2,0,1,0,support,low
Cheryl Vachon,0.44,0.55,2,135,3,0,1,0,support,low
Linwood Johnston,0.38,0.55,2,134,3,0,1,0,support,low
Jay Lewis,0.39,0.54,2,132,3,0,1,0,support,low
Stanley Williamson,0.1,0.92,7,307,4,0,1,0,support,low
Jerry Fitzgerald,0.37,0.46,2,140,3,0,1,0,support,low
Doyle Juariqui,0.11,0.94,7,255,4,0,1,0,support,low
Michael Tarbox,0.1,0.81,6,309,4,0,1,0,technical,low
Sheri Cheatham,0.38,0.54,2,128,3,0,1,0,technical,low
Candy Bergeron,0.85,1,4,225,5,0,1,0,technical,low
Carol Combs,0.85,0.91,5,226,5,0,1,0,management,medium
Douglas Blatz,0.11,0.93,7,308,4,0,1,0,IT,medium
Jeff Paris,0.1,0.95,6,244,5,0,1,0,IT,medium
Anthony Loveday,0.36,0.56,2,132,3,0,1,0,IT,medium
Vesta Robertson,0.11,0.94,6,286,4,0,1,0,IT,medium
Juan Killough,0.81,0.7,6,161,4,0,1,0,IT,medium
Steven Davis,0.43,0.54,2,153,3,0,1,0,product_mng,medium
Mavis Salinas,0.9,0.98,4,264,6,0,1,0,product_mng,medium
Robin South,0.76,0.86,5,223,5,1,1,0,product_mng,medium
Michael Gold,0.43,0.5,2,135,3,0,1,0,product_mng,medium
Paul Boynton,0.74,0.99,2,277,3,0,1,0,IT,medium
Karen Brooks,0.09,0.77,5,275,4,0,1,0,product_mng,medium
James Shaw,0.45,0.49,2,149,3,0,1,0,product_mng,high
Michael Dixon,0.09,0.87,7,295,4,0,1,0,product_mng,low
Jacquelyn Reardon,0.11,0.97,6,277,4,0,1,0,product_mng,medium
Kathleen Kuznicki,0.11,0.79,7,306,4,0,1,0,product_mng,medium
Betty Petitjean,0.1,0.83,6,295,4,0,1,0,product_mng,medium
Thomas Noonan,0.4,0.54,2,137,3,0,1,0,marketing,medium
Beatrice Alford,0.43,0.56,2,157,3,0,1,0,sales,low
Lynda Grier,0.39,0.56,2,142,3,0,1,0,accounting,low
Eric Gill,0.45,0.54,2,140,3,0,1,0,support,low
Anthony Blakely,0.38,0.49,2,151,3,0,1,0,technical,low
Suzanne Copley,0.79,0.59,4,139,3,0,1,1,management,low
Brett Woodard,0.84,0.85,4,249,6,0,1,0,marketing,low
Cynthia Patton,0.11,0.77,6,291,4,0,1,0,marketing,low
Sandra Boyd,0.11,0.87,6,305,4,0,1,0,marketing,low
Leah Winters,0.17,0.84,5,232,3,0,1,0,sales,low
Shirley Fleischer,0.44,0.45,2,132,3,0,1,0,sales,low
Fredrick Pickard,0.37,0.57,2,130,3,0,1,0,sales,low
Virginia Chavez,0.1,0.79,6,291,4,0,1,0,sales,low
Chris Bence,0.4,0.5,2,130,3,0,1,0,sales,low
William Lusby,0.89,1,5,246,5,0,1,0,sales,low
Monica Ward,0.42,0.48,2,143,3,0,1,0,sales,low
Elizabeth Legace,0.46,0.55,2,129,3,0,1,0,sales,low
Carolyn Claytor,0.09,0.83,6,255,4,0,1,0,sales,low
Brian Sluder,0.37,0.51,2,155,3,0,1,0,sales,low
Mary Hudson,0.1,0.77,6,265,4,0,1,0,sales,low
Shirley Johnson,0.1,0.84,6,279,4,0,1,0,sales,low
Dena Ridley,0.11,0.97,6,284,4,0,1,0,sales,low
Vernon Tuley,0.9,1,5,221,6,0,1,0,sales,medium
Raymond Brown,0.38,0.52,2,154,3,0,1,0,sales,medium
Terri Pearson,0.36,0.52,2,147,3,0,1,0,sales,medium
William Warren,0.42,0.46,2,150,3,0,1,0,sales,medium
Agnes Harris,0.09,0.94,7,267,4,0,1,0,sales,medium
Robert Chabot,0.43,0.52,2,158,3,0,1,0,sales,medium
Richard Bozell,0.24,0.46,7,224,5,0,1,0,accounting,medium
Mildred Eversoll,0.91,1,4,257,5,0,1,0,accounting,medium
Aurelio Sheth,0.44,0.5,2,148,3,0,1,0,accounting,medium
Sharon Waters,0.71,0.87,3,177,4,0,1,0,hr,medium
Chelsea Latta,0.4,0.49,2,155,3,0,1,0,hr,medium
Steven Pannell,0.43,0.47,2,144,3,0,1,0,hr,medium
Wiley Wetzel,0.09,0.85,6,289,4,0,1,0,hr,high
Charles Metcalf,0.43,0.52,2,160,3,0,1,0,technical,low
Jacqueline Bailey,0.9,0.96,4,258,5,0,1,0,technical,medium
Sherri Johnson,0.84,1,5,234,5,0,1,0,technical,medium
Dixie Robbins,0.37,0.48,2,137,3,0,1,0,technical,medium
Juan Avallone,0.86,0.68,5,263,2,0,1,0,technical,medium
Peter Dover,0.11,0.84,6,251,4,0,1,0,technical,low
Lauren Mink,0.37,0.57,2,133,3,0,1,0,technical,low
Kelly Rosenstock,0.4,0.46,2,132,3,0,1,0,technical,low
Maxine Edwards,0.14,0.62,4,158,4,1,1,0,technical,low
Cornelius Wright,0.4,0.46,2,135,3,0,1,0,technical,low
Robert Mcdonald,0.75,1,4,216,6,0,1,0,technical,low
Virgil Huntsinger,0.11,0.84,6,300,5,1,1,0,support,low
Sandra Tondreau,0.46,0.49,2,138,3,0,1,0,support,low
Robert Heminger,0.11,0.92,6,260,4,0,1,0,support,low
Casey Lafayette,0.38,0.49,2,132,3,0,1,0,support,low
Helen Fleming,0.7,0.89,3,183,5,0,1,0,support,low
Allen Hamilton,0.09,0.82,6,250,4,0,1,0,support,low
Aisha Crites,0.37,0.45,2,151,3,0,1,0,support,low
Kenneth Stanford,0.1,0.83,6,292,4,0,1,0,support,low
Frank Newsom,0.38,0.57,2,140,3,0,1,0,support,low
Marjorie Wilborn,0.9,1,5,221,5,0,1,0,support,low
Juanita Yu,0.44,0.51,2,138,3,0,1,0,support,low
Silvia Eastwood,0.36,0.5,2,132,3,0,1,0,technical,low
Connie Louder,0.31,0.84,7,133,5,0,1,0,technical,low
David Casto,0.1,0.84,6,283,4,1,1,0,technical,low
Marilyn King,0.42,0.48,2,129,3,0,1,0,management,low
James Johnson,0.74,1,4,249,5,0,1,0,IT,low
James Cowie,0.73,0.87,5,257,5,0,1,0,IT,low
James Obrian,0.09,0.96,6,245,4,0,1,0,IT,low
Tiffany Camacho,0.45,0.53,2,155,3,0,1,0,IT,low
Anibal Rager,0.11,0.8,6,256,4,0,1,0,IT,low
Allison Fuller,0.37,0.47,2,152,3,0,1,0,product_mng,low
Moises Yang,0.84,0.99,4,267,5,0,1,0,product_mng,low
Benjamin Swisher,0.41,0.46,2,151,3,0,1,0,product_mng,low
Grace Mullins,0.76,0.92,4,239,5,0,1,0,product_mng,low
Susan Deblase,0.11,0.87,6,306,4,0,1,0,IT,low
Thora West,0.84,0.88,4,263,5,1,1,0,marketing,low
Ed Mandolini,0.39,0.5,2,147,3,0,1,0,marketing,low
Karen Behring,0.11,0.91,6,278,4,0,1,0,marketing,low
Dena Jones,0.45,0.56,2,154,3,0,1,0,marketing,low
Kevin Dixon,0.37,0.52,2,143,3,0,1,0,marketing,low
Mark Owens,0.4,0.52,2,155,3,0,1,0,marketing,low
Marvin Paladino,0.39,0.48,2,160,3,0,1,0,sales,low
Kelvin Cook,0.11,0.8,6,304,4,0,1,0,accounting,low
Kirk Rasmussen,0.83,1,5,240,5,0,1,0,support,low
Justin Thomas,0.11,0.92,6,305,4,0,1,0,technical,low
Sharon Curry,0.39,0.5,2,136,3,0,1,0,management,low
Earline Mallari,0.45,0.45,2,132,3,0,1,0,marketing,low
Tammy Seay,0.1,0.95,7,301,4,0,1,0,marketing,low
Kelli Williams,0.9,0.98,5,243,6,0,1,0,marketing,low
Harold Hathcock,0.45,0.51,2,147,3,0,1,0,sales,low
Nina Sherman,0.79,0.89,5,239,5,0,1,0,sales,low
Michael Jimenez,0.9,0.99,5,260,5,0,1,0,sales,low
Edward Ash,0.11,0.84,7,296,4,0,1,0,sales,low
Michael Morris,0.43,0.55,2,129,3,0,1,0,sales,low
Alejandro Ringo,0.31,0.54,5,132,5,0,1,0,sales,low
Andrew Horst,0.32,0.5,2,135,5,0,1,0,sales,low
Gary Boyd,0.45,0.57,2,158,3,0,1,0,sales,low
Beth Hilderbrandt,0.81,0.99,4,259,5,0,1,0,sales,low
Cheri Kassab,0.41,0.46,2,160,3,0,1,1,sales,low
Anthony Smith,0.11,0.78,7,278,4,0,1,0,sales,low
Audrey Vascocu,0.1,0.88,6,284,4,0,1,0,sales,low
Emily Moreno,0.7,0.53,2,274,4,0,1,0,sales,low
Dwayne Dewitt,0.54,0.74,4,164,2,0,1,0,sales,low
Marion Pedersen,0.41,0.48,2,148,3,0,1,0,sales,low
Stephan Adams,0.38,0.5,2,140,3,0,1,0,sales,medium
Ryan Smith,0.37,0.51,2,127,3,0,1,0,sales,medium
Stephen Kirkman,0.11,0.85,6,308,5,0,1,0,sales,medium
Gregory Kirkpatrick,0.4,0.47,2,146,3,0,1,0,sales,medium
Mary Pendergast,0.1,0.84,6,261,4,0,1,0,accounting,medium
Devin Walker,0.89,0.99,5,257,5,0,1,0,accounting,medium
David Brack,0.11,0.8,6,285,4,0,1,0,accounting,medium
Robert Ferguson,0.36,0.55,2,141,3,0,1,0,hr,medium
Jimmy Thrasher,0.4,0.46,2,127,3,0,1,0,hr,medium
Larry Bromley,0.09,0.85,6,297,4,0,1,0,hr,medium
Dennis Murray,0.4,0.46,2,143,3,0,1,0,hr,medium
Edwin Chism,0.37,0.55,2,152,3,0,1,0,technical,medium
Joshua Bechtel,0.44,0.51,2,156,3,0,1,0,technical,high
Robert Taylor,0.09,0.8,7,283,5,0,1,0,technical,low
Estella Rea,0.92,0.87,4,226,6,1,1,0,technical,medium
Wayne Sparks,0.74,0.91,4,232,5,0,1,0,technical,medium
Andrew Tunstall,0.09,0.82,6,249,4,0,1,0,technical,medium
Stanley Mahajan,0.89,0.95,4,275,5,0,1,0,technical,medium
Anna Billingsley,0.09,0.8,6,304,4,0,1,0,technical,low
Agnes Magan,0.27,0.54,7,278,3,0,1,0,technical,low
William Chase,0.1,0.91,6,287,4,0,1,0,technical,low
Floyd Meinzer,0.1,0.89,7,285,4,0,1,0,technical,low
Charlie Odell,0.77,0.94,5,226,6,0,1,0,support,low
Susan Jensen,0.9,0.82,5,259,5,0,1,0,support,low
Sara Cordeiro,0.39,0.5,2,135,3,0,1,0,support,low
Charles Smith,0.76,1,5,219,5,0,1,0,support,low
Annette Lopez,0.1,0.93,6,256,4,0,1,0,support,low
Jennifer Franklin,0.87,0.9,5,254,6,0,1,0,support,low
James Ceja,0.38,0.5,2,153,3,0,1,0,support,low
Zulma Knoll,0.77,0.99,5,228,5,0,1,0,support,low
Susan Davis,0.78,0.87,4,228,5,0,1,0,support,low
Dennis Carr,0.44,0.5,2,128,3,0,1,0,support,low
Emma Vincente,0.38,0.52,2,153,3,0,1,0,support,low
William Baugh,0.43,0.46,2,156,3,0,1,0,technical,low
Dell Blackburn,0.39,0.5,4,294,3,0,1,0,technical,low
Nathan Blue,0.88,1,5,219,5,0,1,0,technical,low
Richard Virgil,0.45,0.46,2,153,3,0,1,0,management,low
George Anderson,0.4,0.53,2,151,3,0,1,0,IT,low
Sandra Correy,0.36,0.51,2,155,3,0,1,0,IT,low
Sherry Rose,0.36,0.48,2,158,3,0,1,0,IT,low
Amy Cruz,0.9,0.98,5,245,5,0,1,0,IT,low
Antoinette Boyce,0.43,0.53,2,131,3,0,1,0,IT,low
Gwendolyn Herod,0.89,0.87,5,225,5,0,1,0,product_mng,low
Mary Chandler,0.1,0.84,6,286,4,0,1,0,product_mng,low
Justin Cornelison,0.37,0.5,2,135,3,0,1,0,product_mng,low
Maria Davis,0.37,0.51,2,153,3,0,1,0,product_mng,low
Justin Desbiens,0.87,0.9,5,252,5,0,1,0,IT,low
Loren Tyler,0.4,0.56,2,149,3,0,1,0,accounting,low
Robert Katz,0.9,0.97,4,258,5,0,1,0,accounting,low
Arturo Ratliff,0.37,0.46,2,158,3,0,1,0,hr,low
Michael Tyndall,0.44,0.54,2,149,3,0,1,0,hr,low
Melanie Walker,0.85,0.95,5,236,5,0,1,0,hr,low
Reva Lucas,0.78,0.98,5,239,6,0,1,0,marketing,low
Constance Caldwell,0.42,0.47,2,159,3,0,1,0,marketing,low
Frank Singer,0.92,0.99,5,255,6,0,1,0,sales,low
Marlana Walton,0.11,0.83,6,244,4,0,1,0,accounting,low
Alan Herbert,0.42,0.56,2,134,3,0,1,0,support,low
Muriel Zastawny,0.48,0.57,4,270,4,0,1,0,technical,low
Sharon Bunnell,0.83,0.85,4,255,5,0,1,0,management,low
Nina Adam,0.4,0.53,2,151,3,0,1,0,marketing,low
Douglas Molina,0.43,0.45,2,135,3,0,1,0,marketing,low
Maude Delong,0.43,0.53,2,146,3,0,1,0,marketing,low
Mark Cuevas,0.1,0.97,7,254,4,0,1,0,sales,low
Mary Kallam,0.1,0.87,7,289,4,0,1,0,sales,low
Josephine Rodriguez,0.37,0.46,2,156,3,0,1,0,sales,low
Edith Redding,0.38,0.53,2,156,3,0,1,0,sales,low
Charles Mason,0.4,0.5,2,128,3,0,1,0,sales,low
Robert Morrell,0.89,0.86,5,275,5,0,1,0,sales,low
Gloria Evans,0.45,0.46,2,155,3,0,1,0,sales,low
Mark Henderson,0.37,0.48,2,159,3,0,1,0,sales,low
Margarito Eller,0.46,0.49,2,148,3,0,1,0,sales,low
Raymond Penoyer,0.87,0.91,4,228,5,0,1,0,sales,low
Michelle Kelly,0.11,0.84,6,298,4,0,1,0,sales,low
Anita Brown,0.79,0.87,5,261,5,0,1,0,sales,low
Kurt Wegman,0.79,0.92,5,254,6,0,1,0,sales,low
Timothy Webber,0.19,0.59,7,192,3,0,1,0,sales,low
Clarence Gaddy,0.87,0.98,4,248,5,0,1,0,sales,low
Ida Mccabe,0.6,0.92,2,258,5,0,1,0,sales,low
Teresa Maginnis,0.44,0.45,2,156,3,0,1,0,sales,medium
John Prescott,0.11,0.81,6,266,4,1,1,0,sales,medium
Nancy Stevens,0.42,0.54,2,156,3,0,1,0,sales,medium
Marvin Adams,0.88,0.88,5,232,5,1,1,0,accounting,medium
Matthew Tucholski,0.11,0.84,6,287,4,0,1,0,accounting,medium
Elias Wizar,0.46,0.46,2,154,3,0,1,0,accounting,medium
Eric Banks,0.82,0.97,5,263,5,0,1,0,hr,medium
Juanita Deshay,0.44,0.56,2,131,3,0,1,0,hr,medium
William Whatley,0.11,0.78,6,260,4,0,1,0,hr,medium
Joseph Williams,0.42,0.5,2,139,3,0,1,0,hr,medium
William Richmond,0.84,0.93,4,251,5,0,1,0,technical,medium
Dina Boykin,0.11,0.95,6,286,4,0,1,0,technical,medium
Theodora Hutson,0.45,0.53,2,129,3,0,1,0,technical,high
William Baker,0.38,0.56,2,156,3,0,1,0,technical,low
Luke Fuson,0.38,0.86,6,139,6,0,1,0,technical,medium
Amanda Best,0.44,0.51,2,127,3,0,1,0,technical,medium
Margaret Solis,0.11,0.84,6,251,4,0,1,0,technical,medium
Shawana Nava,0.81,0.93,5,270,5,0,1,0,technical,medium
Michael Huff,0.09,0.96,6,296,4,0,1,0,technical,low
Raymundo Magana,0.11,0.9,6,254,4,0,1,0,technical,low
Carolyn Tate,0.81,0.95,5,238,6,0,1,0,technical,low
Ronald Cammack,0.1,0.97,6,267,4,1,1,0,support,low
Miriam Williams,0.74,0.89,5,229,6,0,1,0,support,low
Rachel Mervis,0.09,0.78,6,254,4,0,1,0,support,low
Linda Hussein,0.82,0.81,4,233,4,1,1,0,support,low
George Wilson,0.1,0.98,6,268,4,0,1,0,support,low
Richard Else,0.27,0.56,3,301,3,0,1,0,support,low
Beryl Kriss,0.83,0.92,5,267,6,0,1,0,support,low
Bobby Lockhart,0.1,0.93,6,289,4,1,1,0,support,low
Gabrielle Davis,0.38,0.47,2,144,3,0,1,0,support,low
Jean Wheeler,0.4,0.56,2,148,3,0,1,0,support,low
Andres Klein,0.11,0.83,6,306,4,0,1,0,support,low
Irene Kottke,0.11,0.79,6,292,4,0,1,1,technical,low
Laverne Johnson,0.82,0.91,5,232,5,0,1,0,technical,low
Mona Hart,0.36,0.48,2,137,3,0,1,0,technical,low
Patricia Desorcy,0.4,0.46,2,128,3,0,1,0,management,low
Joan Hall,0.87,0.84,5,231,5,0,1,0,IT,low
Danny Vogus,0.41,0.49,2,146,3,0,1,0,IT,low
James Petty,0.11,0.91,6,308,4,1,1,0,IT,low
Matthew Mcburrough,0.1,0.93,6,253,4,0,1,0,IT,medium
Marshall Collins,0.38,0.51,2,146,3,0,1,0,IT,medium
Mary Staton,0.39,0.55,2,156,3,0,1,0,product_mng,medium
Irene Dawson,0.4,0.52,2,147,3,0,1,0,product_mng,medium
Donna Cargo,0.45,0.48,2,136,3,0,1,0,product_mng,medium
Mary Roman,0.74,0.84,5,249,5,0,1,0,product_mng,medium
Pamela Harrison,0.45,0.55,2,151,3,0,1,0,IT,medium
Bryan Linch,0.12,1,3,278,4,0,1,0,RandD,medium
Ruth Acosta,0.1,0.77,7,250,5,0,1,0,RandD,medium
Kathryn Farrar,0.37,0.55,2,127,3,0,1,0,RandD,medium
Nancy Fultz,0.89,0.87,5,255,5,0,1,0,RandD,medium
Amanda Rowton,0.45,0.47,2,135,3,0,1,0,RandD,medium
Thomas Ragland,0.37,0.46,2,149,3,0,1,0,marketing,high
Maria Morein,0.11,0.81,5,287,4,0,1,0,sales,low
Thelma Curtis,0.41,0.48,2,145,3,0,1,0,accounting,medium
Joseph Freeman,0.1,0.94,6,285,4,0,1,0,support,medium
Guadalupe Shephard,0.1,0.93,7,305,4,0,1,0,technical,medium
Anita Davis,0.11,0.95,7,300,4,0,1,0,management,medium
Lucille Turner,0.4,0.54,2,139,3,0,1,0,marketing,low
Anita Stone,0.41,0.49,2,130,3,0,1,0,marketing,low
Betty Black,0.1,0.81,6,268,4,0,1,0,marketing,low
Anthony Dunbar,0.73,0.86,4,245,6,0,1,0,sales,low
Michael Fricke,0.43,0.47,2,135,3,0,1,0,sales,low
Patti Montanez,0.37,0.46,2,153,3,0,1,0,sales,low
Luis Smith,0.11,0.94,6,276,4,0,1,0,sales,low
Kevin Postlewait,0.4,0.46,2,130,3,0,1,0,sales,low
Marc Collette,0.41,0.54,2,153,3,1,1,0,sales,low
Dan Stringham,0.82,0.84,5,244,5,0,1,0,sales,low
Cedric Voves,0.61,0.47,2,253,3,0,1,0,sales,low
Elizabeth Brandon,0.11,0.91,7,287,4,0,1,0,sales,low
Mai Mccarthy,0.37,0.45,2,131,3,0,1,0,sales,low
Flora Geis,0.41,0.52,2,135,3,0,1,0,sales,low
Jean Harvey,0.37,0.52,2,157,3,0,1,0,sales,low
Nancy Kingston,0.88,0.99,5,262,6,0,1,0,sales,low
Willie Peterson,0.1,0.85,6,266,4,0,1,0,sales,low
John Millman,0.44,0.48,2,148,3,0,1,0,sales,low
Demetria Neal,0.38,0.57,2,140,3,0,1,0,sales,low
Arlene Lafferty,0.11,0.85,7,302,4,0,1,0,sales,low
Abby Grev,0.09,0.98,6,271,4,0,1,0,sales,low
Audrey Scott,0.45,0.52,2,145,3,0,1,0,sales,medium
Albert Angel,0.1,0.81,6,290,4,0,1,0,accounting,medium
Bertha Boyd,0.45,0.47,2,151,3,0,1,0,accounting,medium
Mae Willis,0.77,0.87,5,266,5,0,1,0,accounting,medium
Paula Hillier,0.44,0.51,2,140,3,0,1,0,hr,medium
Francis Anderson,0.39,0.5,2,142,3,0,1,0,hr,medium
Stanley Johnson,0.1,0.91,6,246,4,0,1,0,hr,medium
Doris Bullins,0.09,0.89,7,308,5,0,1,0,hr,medium
Mark Kitchen,0.37,0.47,2,141,3,0,1,0,technical,medium
Eugene Horton,0.9,1,5,232,5,0,1,0,technical,medium
Charles Stuckey,0.41,0.56,2,143,3,0,1,0,technical,medium
Christopher Covarrubias,0.37,0.52,2,155,3,0,1,0,technical,medium
Roxie Greeley,0.1,0.86,6,278,4,0,1,0,technical,high
Preston Mchenry,0.81,1,4,253,5,0,1,0,technical,low
Eduardo Joyner,0.11,0.8,6,282,4,0,1,0,technical,medium
Chandra Risenhoover,0.11,0.84,7,264,4,0,1,0,technical,medium
Rodney Wheeler,0.4,0.46,2,149,3,0,1,0,technical,medium
Marion Skinner,0.09,0.8,6,304,5,0,1,0,technical,medium
John Fairbank,0.48,0.93,3,219,6,0,1,0,technical,low
Elaina Dudley,0.91,0.91,4,262,6,0,1,0,support,low
Celia Lovaglio,0.43,0.57,2,135,3,0,1,0,support,low
Deborah Banvelos,0.33,0.88,6,219,5,0,1,0,support,low
Charlene Andrews,0.41,0.57,2,136,3,0,1,0,support,low
Hallie Anton,0.41,0.55,2,154,3,0,1,0,support,low
Dora Whitmire,0.37,0.54,2,149,3,0,1,0,support,low
Michael Whitley,0.31,0.62,6,135,5,0,1,0,support,low
Brian Sanchez,0.09,0.91,6,275,4,0,1,0,support,low
Paul Bell,0.1,0.87,6,290,4,0,1,0,support,low
Jason Bruno,0.76,0.9,4,263,5,0,1,0,support,low
Joy Madrigal,0.41,0.54,2,145,3,0,1,0,support,low
Paul Zalewski,0.72,0.96,5,267,5,0,1,0,technical,low
Latonia Zenon,0.4,0.5,2,141,3,1,1,0,technical,low
Sheila Maslow,0.91,0.87,4,235,5,0,1,0,technical,low
Kathryn Williams,0.1,0.83,6,258,4,0,1,0,management,low
Jason Okeefe,0.4,0.56,2,131,3,0,1,0,IT,low
Amanda Silva,0.82,0.86,5,243,5,0,1,0,IT,low
Helen Shelly,0.1,0.82,6,266,4,0,1,0,IT,low
Nicole Honahni,0.37,0.45,2,142,3,0,1,0,IT,low
Jacquelyn Bungard,0.36,0.51,2,135,3,0,1,0,IT,low
Catherine Lovecchio,0.39,0.48,2,141,3,0,1,0,product_mng,medium
Adela Smith,0.36,0.57,2,142,3,0,1,0,product_mng,medium
Lori Dardar,0.86,0.84,5,254,5,0,1,0,product_mng,medium
Gregory Charlton,0.73,0.99,5,262,5,0,1,0,product_mng,medium
Sammie Fernandez,0.56,0.71,4,296,2,0,1,0,IT,medium
Betty Fewell,0.44,0.56,2,158,3,0,1,0,accounting,medium
Ashley Brighton,0.31,0.56,4,238,2,0,1,0,accounting,medium
Lois Campbell,0.77,0.93,4,231,5,0,1,0,hr,medium
Geraldine English,0.44,0.45,2,156,3,0,1,0,hr,medium
Leland Kovac,0.38,0.46,2,145,3,0,1,0,hr,medium
James Richardson,0.45,0.48,2,144,3,0,1,0,marketing,medium
Whitney Craig,0.38,0.51,2,159,3,0,1,0,sales,medium
Lisa Peale,0.36,0.48,2,156,3,0,1,0,accounting,high
Rodney Mcnulty,0.75,0.9,5,256,5,0,1,0,support,low
Suzanne Hutchinson,0.1,0.93,6,298,4,0,1,0,technical,medium
Cynthia Behring,0.1,0.97,6,247,4,0,1,0,management,medium
Lori Ottis,0.45,0.5,2,157,3,0,1,0,marketing,medium
Darcie Parker,0.42,0.57,2,154,3,1,1,0,marketing,medium
Keenan Lance,0.78,1,4,253,5,0,1,0,marketing,low
Roy Shoemaker,0.45,0.55,2,148,3,0,1,0,sales,low
Peter King,0.84,1,4,261,5,0,1,0,sales,low
Avis Ebert,0.11,0.93,6,282,4,0,1,0,sales,low
Linda Cusson,0.42,0.56,2,133,3,0,1,0,sales,low
Rachel Moran,0.45,0.46,2,128,3,0,1,0,sales,low
Natasha Williams,0.46,0.57,2,139,3,0,1,0,sales,low
Dan Barnes,0.09,0.79,6,293,5,0,1,0,sales,low
Thomas Bernardo,0.87,0.83,4,265,6,0,1,0,sales,low
Scott Ballew,0.1,0.87,6,250,4,0,1,0,sales,low
Karl Foster,0.91,1,5,251,6,0,1,0,sales,low
Delisa Marino,0.76,0.92,4,246,5,0,1,0,sales,low
Joseph Huntzinger,0.74,1,5,275,5,0,1,0,sales,low
Mayra Solomon,0.92,0.93,5,240,5,0,1,0,sales,low
Diane Boyer,0.76,0.87,5,245,5,0,1,0,sales,low
Crystal Cosgrove,0.47,0.5,4,254,4,0,1,0,sales,low
Clay Pisani,0.73,0.99,5,241,5,0,1,0,sales,low
Peter Goldberg,0.09,0.94,6,257,4,0,1,0,sales,low
Maryjo Holcomb,0.91,0.92,4,246,5,0,1,0,sales,low
Margaret Bishop,0.82,0.98,4,233,5,0,1,0,sales,low
Jeremy Billingsley,0.28,0.45,6,218,4,0,1,0,accounting,low
David Hall,0.84,0.99,4,262,6,0,1,0,accounting,medium
John Arnold,0.45,0.53,2,138,3,0,1,0,accounting,medium
Elenor Anderson,0.45,0.54,2,142,3,0,1,0,hr,medium
Benny Howard,0.91,0.97,5,233,5,0,1,0,hr,medium
Michael Williams,0.42,0.48,2,155,3,0,1,0,hr,medium
Charlie Garrison,0.82,1,4,229,6,0,1,0,hr,medium
Marlene Cain,0.11,0.9,6,264,4,0,1,0,technical,medium
Brandy Madsen,0.42,0.53,3,199,4,0,1,0,technical,medium
James Kolb,0.82,0.85,4,223,5,0,1,0,technical,medium
Charles Oneill,0.09,0.96,6,268,4,0,1,0,technical,medium
Carey Hollenbach,0.1,0.94,6,287,4,0,1,0,technical,medium
Bruce Boyd,0.86,1,5,257,5,0,1,0,technical,medium
Angela Cortez,0.4,0.46,2,143,3,0,1,0,technical,high
Reba Allen,0.45,0.46,2,130,3,0,1,0,technical,low
Henry Escobar,0.42,0.51,2,136,3,0,1,0,technical,medium
Margaret Herrera,0.74,0.92,4,261,5,0,1,0,technical,medium
Charles Prioleau,0.55,0.6,3,180,4,0,1,0,technical,medium
Alexander Carmichael,0.37,0.45,2,126,3,0,1,0,support,medium
Frances Mitchell,0.41,0.52,2,127,3,1,1,0,support,low
Derek Seifert,0.89,0.65,5,195,6,0,1,0,support,low
Gregory Kindrick,0.41,0.57,2,160,3,0,1,0,support,low
Virginia Meek,0.44,0.51,2,150,3,0,1,0,support,low
Robert Myers,0.87,0.84,4,264,6,0,1,0,support,low
Ina Moore,0.1,0.84,6,309,4,0,1,0,support,low
David Badger,0.41,0.47,2,135,3,0,1,0,support,low
Nancy Stevens,0.11,0.85,6,261,4,0,1,0,support,low
Eunice Hobbs,0.43,0.53,2,160,3,0,1,0,support,low
Daniel Charles,0.77,0.9,4,237,5,0,1,0,support,low
Tara Jackson,0.41,0.52,2,136,3,0,1,0,technical,low
Margaret Kimbro,0.41,0.48,2,139,3,0,1,0,technical,low
Leone Burke,0.36,0.78,2,151,4,0,1,0,technical,low
Oliver Mesa,0.77,1,5,229,5,0,1,0,management,low
Julio Woodward,0.81,0.98,5,245,5,0,1,0,IT,low
Marc Gordon,0.39,0.54,2,127,3,0,1,0,IT,low
Leslie Killam,0.09,0.94,6,283,5,0,1,0,IT,low
John Queen,0.44,0.46,2,143,3,0,1,0,IT,low
James Moore,0.1,0.84,5,298,4,0,1,0,IT,low
Christy Reed,0.36,0.48,2,159,3,0,1,0,product_mng,low
Dorothy Weiss,0.81,0.92,5,239,5,0,1,0,product_mng,low
Sean Johnson,0.81,0.9,4,226,5,0,1,0,product_mng,medium
Susan Fields,0.85,0.98,5,248,5,0,1,0,product_mng,medium
Kelsi Manylath,0.1,0.87,6,286,4,0,1,0,IT,medium
Ronda Hinze,0.37,0.54,2,145,3,0,1,0,RandD,medium
Bette Weimar,0.09,0.97,7,254,4,1,1,0,RandD,medium
John Butler,0.44,0.53,2,127,3,0,1,0,RandD,medium
Timothy Smith,0.86,0.93,5,223,5,0,1,0,RandD,medium
Nicholas Wells,0.77,1,4,255,5,0,1,0,RandD,medium
Dianne Wilkerson,0.41,0.48,2,136,3,0,1,0,marketing,medium
Margaret Mitchem,0.4,0.48,2,137,3,0,1,0,sales,medium
Amy Thomas,0.43,0.49,2,135,3,0,1,0,accounting,medium
Shirley Anderson,0.43,0.5,2,137,3,0,1,0,support,medium
Janet Howe,0.8,0.53,3,255,5,0,1,0,technical,high
Roberta Lujan,0.8,0.85,4,273,5,0,1,0,management,low
Michael Hornsby,0.82,0.98,5,234,5,0,1,0,marketing,medium
Ann Alford,0.37,0.54,2,152,3,0,1,0,marketing,medium
David Mcfarland,0.37,0.48,2,134,3,0,1,0,marketing,medium
Rebecca Tammaro,0.09,0.95,6,292,4,0,1,0,sales,medium
Brenda Jones,0.9,0.92,5,245,5,0,1,0,sales,low
Gary Vang,0.41,0.52,2,159,3,0,1,0,sales,low
Jeffery Whitaker,0.1,0.85,6,260,4,0,1,0,sales,low
Steven Wingert,0.44,0.53,2,149,3,0,1,0,sales,low
Charles Bridgman,0.89,0.85,5,266,5,0,1,0,sales,low
Heidi Caples,0.42,0.56,2,149,3,0,1,0,sales,low
Nicole Maier,0.87,1,5,242,5,0,1,0,sales,low
Peter Ellis,0.45,0.57,2,134,3,0,1,0,sales,low
Miriam Johnson,0.11,0.87,5,271,4,0,1,0,sales,low
Wendy Brown,0.09,0.79,6,275,4,0,1,0,sales,low
Michael Boles,0.76,0.83,5,227,5,0,1,0,sales,low
Billie Buck,0.11,0.96,7,277,5,0,1,0,sales,low
Martin Burns,0.37,0.49,2,151,3,0,1,0,sales,low
Tony Lind,0.1,0.79,6,274,4,0,1,0,sales,low
Dale Mcgeeney,0.77,0.87,4,242,6,0,1,0,sales,low
James Eiselein,0.42,0.54,2,143,3,1,1,0,sales,low
Lynn Sherman,0.38,0.52,2,145,3,0,1,0,sales,low
Ashley Portes,0.32,0.95,5,172,2,0,1,0,sales,low
Helen Henderson,0.38,0.49,2,135,3,0,1,0,accounting,low
Mike Rens,0.19,1,4,192,4,0,1,0,accounting,low
Casey Brule,0.1,0.83,7,276,4,0,1,0,accounting,low
Brenda Kleman,0.76,0.88,4,206,4,0,1,0,hr,medium
Helen Joy,0.53,0.56,4,281,6,0,1,0,hr,medium
Chantelle Pedlow,0.39,0.51,2,151,3,0,1,0,hr,medium
Roy Aronson,0.11,0.83,6,244,4,0,1,0,hr,medium
Max Shippey,0.1,0.94,6,309,4,0,1,0,technical,medium
Walter Prudhomme,0.84,1,5,218,5,0,1,0,technical,medium
Jamie Crutchfield,0.82,0.99,4,263,6,0,1,0,technical,medium
David Dodson,0.1,0.82,6,244,4,0,1,0,technical,medium
Dee Hodge,0.59,0.49,7,263,4,0,1,0,technical,medium
Griselda Whitlow,0.44,0.48,2,143,3,0,1,0,technical,medium
Jack Faust,0.89,0.95,2,181,5,0,1,0,technical,medium
Leland Baker,0.91,0.84,5,265,5,0,1,0,technical,medium
Denise Witt,0.66,0.57,5,161,5,0,1,0,technical,high
Bessie Stone,0.11,0.87,7,282,5,0,1,0,technical,low
Mary Sontag,0.43,0.51,2,155,3,0,1,0,technical,medium
Tracie Robinson,0.78,0.83,4,217,6,0,1,0,support,medium
Beverly Rayborn,0.11,0.97,6,289,5,0,1,0,support,medium
Helen Ramirez,0.83,0.98,4,259,5,0,1,0,support,medium
Harold Powell,0.39,0.54,2,158,3,0,1,0,support,low
Robert Aranda,0.38,0.55,2,158,3,0,1,0,support,low
Angela Lopez,0.37,0.57,2,155,3,0,1,0,support,low
Kyle Ford,0.44,0.48,2,146,3,0,1,0,support,low
Michelle Studer,0.53,0.85,2,164,5,0,1,0,support,low
Martha Fuqua,0.09,0.96,6,259,4,0,1,0,support,low
Harvey Sparks,0.11,0.89,6,293,4,0,1,0,support,low
Barbra Petersen,0.83,0.96,5,275,5,0,1,0,support,low
Beth Miles,0.88,1,5,219,6,1,1,0,technical,low
Irvin Messier,0.1,0.89,6,247,4,0,1,0,technical,low
George Cutshall,0.09,0.86,7,309,4,0,1,0,technical,low
James Vanhorne,0.44,0.54,2,151,3,0,1,0,management,low
Michael Griffo,0.39,0.51,2,129,3,0,1,0,IT,low
Jimmy Dublin,0.87,0.94,4,274,5,0,1,0,IT,low
Brian Michaels,0.74,0.99,4,233,5,0,1,0,IT,low
Gabriel Mccullum,0.1,0.95,7,289,4,0,1,0,IT,low
Vickie Mallin,0.74,0.82,4,239,6,0,1,0,IT,low
Jonathan Goldman,0.75,0.99,5,221,5,0,1,0,product_mng,low
Michael Williams,0.41,0.56,2,150,3,0,1,0,product_mng,low
Brett Guerrero,0.41,0.45,2,144,3,1,1,0,product_mng,low
Spencer Schmidt,0.09,0.9,7,289,4,0,1,0,product_mng,low
Sarah Turner,0.09,0.8,6,301,5,0,1,0,IT,medium
Wilson Linkous,0.39,0.57,2,145,3,0,1,0,accounting,medium
Paul Jack,0.4,0.56,2,137,3,0,1,0,accounting,medium
Marlin Scaggs,0.37,0.54,2,131,3,1,1,0,hr,medium
Lettie Shelton,0.1,0.84,6,246,4,0,1,0,hr,medium
Steven Edmondson,0.43,0.51,2,136,3,0,1,0,hr,medium
Alise Ullmann,0.75,0.85,5,240,6,1,1,0,marketing,medium
Robert Paul,0.37,0.56,2,156,3,0,1,0,sales,medium
Marcus Delvecchio,0.11,0.85,6,305,4,0,1,0,accounting,medium
Vivienne Delacruz,0.45,0.45,2,154,3,1,1,0,support,medium
Blanche Bernard,0.87,1,5,261,5,1,1,0,technical,medium
Silas Mischke,0.11,0.94,7,244,4,0,1,0,management,medium
Joyce Gauvin,0.45,0.54,2,129,3,0,1,0,marketing,high
Mary Goan,0.81,0.87,4,254,5,0,1,0,marketing,low
Ina Porche,0.77,0.91,5,236,5,0,1,0,marketing,medium
Laura Meadows,0.89,0.92,5,237,5,0,1,0,sales,medium
Bernard Cummings,0.43,0.49,2,135,3,0,1,0,sales,medium
Michael Mcclure,0.78,1,5,236,5,0,1,0,sales,medium
Chadwick Cerverizzo,0.37,0.47,2,149,3,0,1,0,sales,low
Christina Brooks,0.37,0.5,2,141,3,0,1,0,sales,low
James Mosley,0.85,0.82,4,270,5,0,1,0,sales,low
Michael Baker,0.41,0.47,2,138,3,0,1,0,sales,low
Joy Grisham,0.11,0.96,6,298,4,0,1,0,sales,low
Lauren Henderson,0.75,0.99,5,254,5,0,1,0,sales,low
Vanessa Gobert,0.82,0.85,5,248,5,0,1,0,sales,low
Francis Campo,0.79,1,5,257,6,0,1,0,sales,low
Joshua Hinson,0.43,0.53,2,150,3,0,1,0,sales,low
Stanley Haney,0.1,0.9,7,281,4,0,1,0,sales,low
Trinh Brooks,0.46,0.48,2,141,3,1,1,0,sales,low
Blanca Peterson,0.43,0.57,2,157,3,0,1,0,sales,low
Derek Thompson,0.43,0.55,2,136,3,0,1,0,sales,low
Jane Coffey,0.11,0.8,7,296,4,0,1,0,sales,low
Joanne Wade,0.09,0.86,6,279,4,0,1,0,sales,low
Jeffrey Scott,0.37,0.53,2,131,3,0,1,0,sales,low
Seth Moss,0.4,0.57,2,160,3,0,1,0,accounting,low
Jose Goto,0.1,0.77,7,291,4,0,1,0,accounting,low
John Johnson,0.41,0.53,2,157,3,0,1,0,accounting,low
Arthur Sorensen,0.79,0.58,3,294,4,0,1,0,hr,low
Dennis Kochevar,0.11,0.79,7,310,4,0,1,0,hr,low
Kenneth Vanduyne,0.1,0.97,6,282,4,0,1,0,hr,medium
Judy Hernandez,0.44,0.51,2,134,3,0,1,0,hr,medium
William Daugherty,0.25,0.46,4,214,4,0,1,0,technical,medium
Jonathan Veronesi,0.44,0.52,2,137,3,0,1,0,technical,medium
Delores Atwell,0.73,1,4,252,5,0,1,0,technical,medium
Thomas Morley,0.75,0.97,5,243,6,0,1,0,technical,medium
Betty Jorgenson,0.36,0.47,2,148,3,0,1,0,technical,medium
Kathi Stickfort,0.37,0.49,2,151,3,0,1,0,technical,medium
Emma Scarberry,0.39,0.49,2,129,3,0,1,0,technical,medium
Max Paris,0.48,0.78,2,198,2,0,1,0,technical,medium
Daniel Sarabia,0.57,0.72,4,275,6,0,1,0,technical,medium
George Rojas,0.9,0.96,5,243,5,0,1,0,technical,medium
Neil Hooper,0.39,0.55,2,159,3,0,1,0,technical,high
Myrtle Langworthy,0.44,0.51,2,145,3,0,1,0,support,low
Florence Marks,0.81,0.88,5,242,5,0,1,0,support,medium
Charles Hall,0.74,0.87,5,242,5,0,1,0,support,medium
Andrew Wright,0.44,0.56,2,145,3,0,1,0,support,medium
Stephen Kerwood,0.41,0.56,2,154,3,0,1,1,support,medium
Christopher Streiff,0.4,0.51,2,139,3,0,1,0,support,low
Jonathan Milton,0.46,0.57,2,152,3,0,1,0,support,low
Harry Jackson,0.8,0.83,2,211,3,0,1,0,support,low
Barbara Isabell,0.87,0.9,5,258,5,0,1,0,support,low
Estelle Hobbs,0.39,0.54,2,155,3,0,1,0,support,low
Stephen Wittkop,0.38,0.55,2,148,3,0,1,0,support,low
Brian Fry,0.66,0.67,2,255,3,0,1,0,technical,low
Victoria Barton,0.1,0.8,6,264,4,0,1,0,technical,low
Leona Littlefield,0.37,0.54,2,132,3,0,1,0,technical,low
Emily Jarman,0.1,0.77,6,255,4,0,1,0,management,low
Megan Diaz,0.09,0.87,5,263,4,0,1,0,IT,low
Anthony Jensen,0.86,0.84,5,222,5,0,1,0,IT,low
Eleanor Dye,0.11,0.9,6,263,4,0,1,0,IT,low
Elena Nunley,0.37,0.46,2,157,3,0,1,0,IT,low
Johanna Hamilton,0.11,0.92,7,307,4,0,1,0,IT,low
Charles Mathis,0.77,0.98,5,259,6,0,1,0,product_mng,low
Elyse Roper,0.84,0.94,5,222,6,0,1,0,product_mng,low
Charles Hughes,0.1,0.84,7,250,4,0,1,0,product_mng,low
Susan Patterson,0.83,0.9,5,245,5,0,1,0,product_mng,low
Nikki Stinson,0.11,0.79,6,292,4,0,1,0,IT,low
Mary Perrucci,0.86,0.92,5,252,5,0,1,0,RandD,low
Victor Rogers,0.38,0.56,2,161,3,0,1,0,RandD,medium
Janeen Kadlec,0.11,0.88,5,250,4,0,1,0,RandD,medium
Laura Balk,0.45,0.49,2,134,3,0,1,0,RandD,medium
Shelly Rife,0.1,0.85,7,279,4,0,1,0,RandD,medium
Herbert Greene,0.09,0.95,7,256,4,0,1,0,marketing,medium
Cara Galan,0.39,0.53,2,127,3,0,1,0,sales,medium
Peggy Kane,0.37,0.47,2,138,3,1,1,0,accounting,medium
Jessica Fenton,0.81,0.97,5,243,5,0,1,0,support,medium
Gary Phillips,0.09,0.9,7,296,4,0,1,0,technical,medium
Laura Welsh,0.1,0.88,7,267,4,0,1,0,management,medium
Lorinda Blankenship,0.39,0.49,2,144,3,0,1,0,marketing,medium
Ronald Needham,0.83,0.95,4,251,5,0,1,0,marketing,medium
Walter Gottlieb,0.45,0.57,2,148,3,0,1,0,marketing,high
Robert Camp,0.43,0.51,2,141,3,0,1,0,sales,low
John Zepeda,0.8,0.75,3,268,2,0,1,0,sales,medium
Frederick Johnson,0.1,0.86,6,247,4,0,1,0,sales,medium
Daniel Spencer,0.1,0.55,2,247,4,0,1,0,sales,medium
Mildred Johnson,0.36,0.52,2,146,3,0,1,0,sales,medium
Christine Medina,0.38,0.5,2,140,3,0,1,0,sales,low
Samantha Morse,0.78,0.98,5,263,6,0,1,0,sales,low
Scott Marsh,0.44,0.49,2,145,3,0,1,0,sales,low
Lawanda Sell,0.41,0.46,2,156,3,1,1,0,sales,low
Lorraine Castanon,0.72,0.85,5,244,6,0,1,0,sales,low
Donald Wilson,0.46,0.54,2,144,3,0,1,0,sales,low
Carolyn Fleming,0.1,0.9,7,286,4,0,1,0,sales,low
Amber Brewer,0.34,0.67,4,141,2,0,1,0,sales,low
Michael Hill,0.11,0.89,6,260,5,0,1,0,sales,low
David Johnson,0.38,0.56,2,154,3,0,1,0,sales,low
Ayana Mcdaniel,0.82,0.92,5,225,5,0,1,0,sales,low
Allen Kozan,0.39,0.57,2,127,3,0,1,0,sales,low
Eric Steiner,0.44,0.53,2,140,3,0,1,0,sales,low
Miguel Horn,0.43,0.52,2,147,3,0,1,0,sales,low
John Bass,0.84,0.83,4,227,5,0,1,0,accounting,low
Jean Westbrook,0.43,0.48,2,153,3,0,1,0,accounting,low
Richard Klein,0.37,0.52,2,128,3,0,1,0,accounting,low
Rebecca Ricks,0.74,0.97,4,228,5,0,1,0,hr,low
Robin Webb,0.73,0.97,5,235,5,0,1,0,hr,low
Billie Germon,0.37,0.47,2,148,3,0,1,0,hr,low
Jennifer Cone,0.58,0.62,4,238,3,0,1,0,hr,low
Charles Wu,0.4,0.54,2,141,3,0,1,0,technical,medium
Theodore Martin,0.51,0.83,5,249,4,0,1,0,technical,medium
Gregory Gerwitz,0.46,0.5,2,151,3,0,1,0,technical,medium
Caleb Clark,0.45,0.54,2,129,3,0,1,0,technical,medium
Paula Moore,0.46,0.5,2,156,3,0,1,0,technical,medium
Fonda Williams,0.39,0.45,2,134,3,0,1,0,technical,medium
Larry Smith,0.09,0.88,6,269,4,0,1,0,technical,medium
Jorge Carter,0.09,0.77,6,290,4,0,1,0,technical,medium
James Wilkinson,0.37,0.51,2,132,3,0,1,0,technical,medium
Bob Jones,0.1,0.89,7,308,4,0,1,0,technical,medium
Lucy Segal,0.77,1,4,232,5,0,1,0,technical,medium
Julia Boehm,0.79,0.86,5,235,5,0,1,0,support,medium
Walter Gonzales,0.43,0.55,2,130,3,0,1,0,support,high
Tina Grover,0.38,0.53,2,146,3,0,1,0,support,low
Anthony Mcdonald,0.77,0.91,5,221,6,0,1,0,support,medium
Catherine Schuller,0.44,0.5,2,130,3,0,1,0,support,medium
Cindy Owen,0.39,0.46,2,136,3,0,1,0,support,medium
Danny Scofield,0.78,0.89,5,274,6,0,1,0,support,medium
Annabelle Yoon,0.1,0.79,6,256,5,0,1,0,support,low
Andrew Brainard,0.1,0.77,5,276,4,0,1,0,support,low
Jennifer Freer,0.75,0.85,5,267,5,0,1,0,support,low
Janet Purnell,0.46,0.62,6,213,3,0,1,0,support,low
Randal Stargell,0.91,0.97,4,274,6,0,1,0,technical,low
Dorothy Williams,0.1,0.92,6,258,4,0,1,0,technical,low
James Beeson,0.72,0.6,3,153,5,0,1,0,technical,low
Irene Brown,0.11,0.95,6,245,4,0,1,0,management,low
Celia Caban,0.11,0.94,6,264,4,0,1,0,IT,low
Brenda Arceo,0.46,0.57,2,154,3,0,1,0,IT,low
Nancy Batista,0.37,0.46,2,149,3,0,1,0,IT,low
Elwood Ammons,0.46,0.5,2,157,3,0,1,0,IT,low
Joyce Hofmann,0.43,0.57,2,127,3,0,1,0,IT,low
Donald Richards,0.11,0.82,6,270,4,0,1,0,product_mng,low
Margaret Beasley,0.73,0.89,5,236,6,0,1,0,product_mng,low
Tina Rose,0.43,0.47,2,158,3,0,1,0,product_mng,low
Gracie Hokenson,0.86,1,5,229,5,0,1,0,product_mng,low
Sharon Thompson,0.1,0.83,6,269,4,0,1,0,IT,low
Michael Price,0.4,0.49,2,128,3,0,1,0,sales,low
Joel Munez,0.11,0.87,7,278,4,0,1,0,sales,low
Mark Repp,0.86,0.98,3,158,5,0,1,0,sales,low
Daniel Thayer,0.42,1,3,202,3,0,1,0,sales,medium
Michelle Abernathy,0.79,0.84,4,240,5,0,1,0,sales,medium
Cynthia Rhem,0.1,0.96,7,255,4,0,1,0,marketing,medium
Phyllis Wallace,0.09,0.92,7,254,4,0,1,0,sales,medium
Chris Steinharter,0.09,0.82,6,257,4,0,1,0,accounting,medium
Ryan Paulino,0.87,1,4,228,5,0,1,0,support,medium
Marjorie Kendrick,0.36,0.49,2,145,3,0,1,0,technical,medium
Angela Nunlee,0.42,0.75,3,218,4,0,1,0,management,medium
Martha Ellison,0.84,0.86,5,268,5,0,1,0,marketing,medium
Lynn Hinderliter,0.1,0.83,6,278,4,0,1,0,marketing,medium
Alice Chittum,0.78,0.71,3,249,5,0,1,0,marketing,medium
Kristen Davis,0.35,0.99,3,236,4,0,1,0,sales,medium
Frank Toland,0.1,0.81,7,291,4,0,1,0,sales,high
William Page,0.11,0.8,6,306,4,0,1,0,sales,low
Dennis Findlay,0.43,0.48,2,135,3,0,1,0,sales,medium
Clyde Canavan,0.38,0.45,2,156,3,0,1,0,sales,medium
Kim Edelen,0.46,0.54,2,143,3,0,1,0,sales,medium
David Warner,0.89,0.82,4,243,5,0,1,0,sales,medium
Marjorie Richards,0.45,0.5,2,147,3,0,1,0,sales,low
Selma Perez,0.44,0.53,2,159,3,0,1,0,sales,low
Lonnie Bryan,0.74,0.54,5,216,3,0,1,0,sales,low
Kevin Gonsoulin,0.45,0.54,2,152,3,0,1,0,sales,low
Patrick Dunbar,0.79,0.93,4,226,5,0,1,0,sales,low
Jennifer Orio,0.79,0.91,5,271,5,0,1,0,sales,low
Luis Chilcutt,0.11,0.87,6,255,4,0,1,0,sales,low
Nona Roy,0.42,0.48,2,140,3,0,1,0,sales,low
Michael Compton,0.64,0.9,6,252,2,0,1,0,sales,low
Linda Brown,0.4,0.55,2,159,3,0,1,0,sales,low
Martha Mertes,0.84,0.98,5,270,5,0,1,0,sales,low
Charles Crowder,0.73,0.92,5,232,5,0,1,0,sales,low
Gwen Miller,0.4,0.51,2,144,3,0,1,0,accounting,low
Vernon Olson,0.36,0.45,2,127,3,0,1,0,accounting,low
Augusta Sullivan,0.43,0.47,2,131,3,0,1,0,accounting,low
Carol Carr,0.11,0.78,6,243,4,0,1,0,hr,low
Emma Harper,0.91,1,5,244,6,0,1,0,hr,low
Brock Manning,0.8,1,5,260,5,0,1,0,hr,low
Douglas Green,0.42,0.49,2,139,3,0,1,0,hr,low
Mary Kuck,0.31,0.87,4,184,3,0,1,0,technical,low
James Ketchum,0.44,0.47,2,130,3,0,1,0,technical,low
Ema Luhnow,0.38,0.54,2,135,3,0,1,0,technical,medium
Robert Bryant,0.45,0.56,2,146,3,0,1,0,technical,medium
Tara Latour,0.43,0.46,2,149,3,0,1,0,technical,medium
Jason Wilson,0.45,0.46,2,153,3,1,1,0,technical,medium
Karen Petrowski,0.43,0.57,2,160,3,0,1,0,technical,medium
Jeffery Traylor,0.43,0.49,2,160,3,0,1,0,technical,medium
Jonathan Grubaugh,0.09,0.83,6,282,4,0,1,0,technical,medium
Earl Jones,0.43,0.47,2,128,3,0,1,0,technical,medium
Zachery Howard,0.79,0.94,4,232,5,0,1,0,technical,medium
Louis Watkins,0.85,0.58,3,226,2,0,1,0,support,medium
Philip Hughes,0.38,0.45,2,129,3,0,1,0,support,medium
Mary Price,0.11,0.92,7,255,4,0,1,0,support,medium
David Gould,0.83,0.99,5,258,5,0,1,0,support,high
Anthony Noel,0.81,0.91,4,229,5,0,1,0,support,low
Phillip Wallander,0.42,0.56,2,143,3,0,1,0,support,medium
Naomi Ruegg,0.11,0.87,6,257,4,0,1,0,support,medium
Mike Mccluskey,0.11,0.85,7,275,4,0,1,0,support,medium
Kathryn Pollock,0.1,0.89,7,291,4,0,1,0,support,medium
Stanley Wiltberger,0.5,0.54,5,153,4,0,1,0,support,low
Robert Rivas,0.44,0.49,2,154,3,0,1,0,support,low
Leonard Kennedy,0.11,0.9,6,301,4,0,1,0,technical,low
Jody Mccaslin,0.39,0.52,2,134,3,0,1,0,technical,low
Anthony Barrickman,0.11,0.78,6,245,4,0,1,0,technical,low
Cynthia Wright,0.36,0.5,2,132,3,0,1,0,management,low
Tracey Burger,0.43,0.51,2,130,3,0,1,0,IT,low
Judi Gatlin,0.4,0.5,2,127,3,0,1,0,IT,low
Rose Richards,0.86,0.84,4,246,6,0,1,0,IT,low
Willie Searles,0.38,0.49,2,145,3,0,1,0,IT,low
Susan Monahan,0.46,0.45,2,138,3,0,1,1,IT,low
Elaina Hogue,0.37,0.57,2,129,3,0,1,0,product_mng,low
Janet Whitworth,0.43,0.52,2,150,3,0,1,0,product_mng,low
Debra Josselyn,0.66,0.93,5,253,5,0,1,0,product_mng,low
Kerry Eberly,0.37,0.48,2,160,3,0,1,0,product_mng,low
Daniel Nunez,0.77,0.92,5,235,5,0,1,0,IT,low
Gene Veve,0.38,0.55,2,151,3,0,1,0,sales,low
Mark Howard,0.39,0.54,2,127,3,0,1,0,sales,low
Amanda Adams,0.41,0.55,2,151,3,0,1,0,sales,low
Robin Warner,0.1,0.9,7,290,4,0,1,0,sales,low
Steven Suttles,0.09,0.93,6,249,4,0,1,0,sales,low
Linda Lakey,0.41,0.47,2,131,3,0,1,0,marketing,medium
Gerald Kempson,0.39,0.46,2,159,3,0,1,0,sales,medium
Mai Flores,0.83,0.99,4,223,5,0,1,0,accounting,medium
Joseph Dickerson,0.09,0.87,3,214,2,0,1,0,support,medium
Wm Horsley,0.75,0.81,5,227,5,0,1,0,technical,medium
Sandra Grooms,0.44,0.54,2,127,3,0,1,0,management,medium
Donna Keri,0.1,0.84,6,293,5,0,1,0,marketing,medium
Fannie Bell,0.42,0.46,2,141,3,0,1,0,marketing,medium
Thomas Neill,0.1,0.83,6,300,4,0,1,0,marketing,medium
Kathryn Replogle,0.1,0.86,6,309,4,0,1,0,sales,medium
Jesse Velez,0.31,0.77,4,149,3,0,1,0,sales,medium
Frederick Paxton,0.42,0.54,2,159,3,0,1,0,sales,medium
Cindy Parker,0.38,0.5,2,152,3,0,1,0,sales,high
Ashley Mcilhinney,0.39,0.57,2,158,3,0,1,0,sales,low
Barrett Perkins,0.1,0.97,6,254,5,0,1,0,sales,medium
Richard Coates,0.11,0.93,6,294,4,0,1,0,sales,medium
Kathy Hipsher,0.1,0.92,7,269,4,0,1,0,sales,medium
Jason Graham,0.11,0.9,7,247,4,0,1,0,sales,medium
Jana Flaherty,0.44,0.65,3,271,4,0,1,0,sales,low
Santos Blanks,0.91,0.96,4,232,5,0,1,0,sales,low
Ida Thomas,0.72,1,4,245,5,0,1,0,sales,low
Stephen Dailey,0.36,0.46,2,132,3,0,1,0,sales,low
Jonathon Schrock,0.44,0.57,2,131,3,0,1,0,sales,low
Constance Hughes,0.85,0.99,5,248,5,0,1,0,sales,low
Barbara Lunn,0.78,0.93,5,225,5,0,1,0,sales,low
David Landrum,0.39,0.46,2,156,3,0,1,0,sales,low
Glen Koval,0.78,0.81,3,222,2,0,1,0,sales,low
Jesse Cherry,0.1,0.92,6,243,4,1,1,0,sales,low
Isela Fields,0.23,0.99,4,204,4,1,1,0,accounting,low
Dawn Fowler,0.11,0.87,6,301,4,0,1,0,accounting,low
Barbara Silvia,0.9,0.83,5,259,5,0,1,0,accounting,low
Raymond Chenoweth,0.91,0.89,4,247,5,0,1,0,hr,low
Debbie Sandstrom,0.11,0.79,7,295,4,0,1,0,hr,low
Joshua Spencer,0.43,0.54,2,150,3,0,1,0,hr,low
Richard Spradlin,0.45,0.49,2,151,3,0,1,0,hr,low
Matthew Srour,0.11,0.91,5,291,4,0,1,0,technical,low
Charles Abbott,0.11,0.93,6,253,4,1,1,0,technical,low
Phyllis Lamke,0.43,0.5,2,161,3,0,1,0,technical,low
Jean Geoghegan,0.91,0.97,4,251,6,0,1,0,technical,low
Xiomara Sell,0.43,0.55,2,153,3,0,1,0,technical,medium
Kay Lamb,0.85,0.82,5,264,6,0,1,0,technical,medium
Jason Hunt,0.1,0.77,6,310,4,0,1,0,technical,medium
Nelson Wallace,0.81,0.95,5,266,5,0,1,0,technical,medium
Felipe Saylor,0.36,0.62,4,237,2,0,1,0,technical,medium
Ashley Batz,0.45,0.54,2,138,3,0,1,0,technical,medium
Latonya White,0.86,1,5,227,5,0,1,0,technical,medium
Harold Shani,0.71,1,4,300,5,0,1,0,support,medium
Charles Ferguson,0.11,0.97,7,310,4,0,1,0,support,medium
Vincent Richmond,0.84,0.93,5,236,5,0,1,0,support,medium
Dori Jackson,0.09,0.97,7,288,4,0,1,0,support,medium
Robert Bailey,0.38,0.49,2,127,3,0,1,0,support,medium
Blanche Owens,0.15,0.55,6,139,4,0,1,0,support,high
Kelly Naef,0.1,0.92,7,253,4,1,1,0,support,low
Robert Stavis,0.8,0.97,4,218,5,1,1,0,support,medium
Rosetta Loker,0.84,0.97,5,251,5,0,1,0,support,medium
Jean Lee,0.11,0.87,6,264,4,0,1,0,support,medium
Caleb Perez,0.89,0.79,3,149,2,0,1,0,support,medium
Scott Shrout,0.45,0.51,2,138,3,0,1,0,technical,low
Colby Kruger,0.11,0.93,7,284,4,0,1,0,technical,low
Paul Burgess,0.74,0.93,5,244,5,0,1,0,technical,low
Shirley Bryant,0.41,0.5,2,128,3,0,1,0,management,low
Sheldon Forster,0.44,0.53,2,154,3,0,1,0,IT,low
Shawn Myrick,0.37,0.56,2,138,3,0,1,0,IT,low
Mary Martin,0.11,0.86,6,308,4,0,1,0,IT,low
Nancy Bower,0.1,0.93,6,269,4,0,1,0,IT,low
Lori Stillwell,0.7,0.74,6,136,3,0,1,0,IT,low
Carmen Lansing,0.59,1,2,160,5,0,1,0,product_mng,low
Mary Johnson,0.38,0.53,2,138,3,0,1,0,product_mng,low
Katherine Clement,0.72,0.95,4,220,5,0,1,0,product_mng,low
Linda Dimuzio,0.73,1,5,274,5,0,1,0,product_mng,low
Karen Whitehead,0.39,0.48,2,161,3,0,1,0,IT,low
Jamie Leather,0.89,0.82,5,224,6,0,1,0,RandD,low
Sam Haecker,0.89,1,4,260,5,0,1,0,RandD,low
Kathy Mcnair,0.11,0.78,6,300,4,1,1,0,RandD,low
David Henderson,0.43,0.56,2,133,3,0,1,0,RandD,low
Stanley Adams,0.09,0.93,6,308,4,0,1,0,RandD,low
Wanda Adams,0.81,0.9,5,238,6,0,1,0,marketing,low
Paul Dailey,0.37,0.53,2,126,3,0,1,0,sales,low
Karen Powers,0.36,0.56,2,138,3,0,1,0,accounting,medium
Russell Salamy,0.11,0.85,6,299,4,0,1,0,support,medium
William Clark,0.1,0.85,6,254,4,0,1,0,technical,medium
Drew Lynch,0.66,0.47,7,156,2,0,1,0,management,medium
Lena Walden,0.39,0.47,2,152,3,0,1,0,marketing,medium
Patria Sikorski,0.44,0.51,2,146,3,0,1,0,marketing,medium
Byron King,0.1,0.84,6,253,4,0,1,0,marketing,medium
Gregory Remmick,0.79,0.94,5,227,6,0,1,0,sales,medium
Leslie Pully,0.1,0.81,6,301,4,1,1,0,sales,medium
Marcus Stilwell,0.54,0.94,6,294,3,0,1,0,sales,medium
Laverna Bracken,0.37,0.47,2,151,3,0,1,0,sales,medium
Paul Cassidy,0.37,0.57,2,128,3,0,1,0,sales,medium
Carol Jones,0.82,0.89,5,217,5,0,1,0,sales,high
Sabrina Hall,0.45,0.52,2,160,3,0,1,0,sales,low
Corey Blake,0.79,0.9,5,263,5,0,1,0,sales,medium
Brian Carter,0.42,0.56,2,156,3,0,1,0,sales,medium
Kimberly Buitron,0.1,0.85,6,273,4,0,1,0,sales,medium
Anthony Sallee,0.11,0.78,6,303,4,0,1,0,sales,medium
Lora Schlager,0.74,1,4,253,5,0,1,0,sales,low
Jesse Farr,0.1,0.93,6,270,4,0,1,0,sales,low
Angela Flores,0.79,1,4,218,5,0,1,0,sales,low
Jonathan Contrell,0.43,0.48,2,144,3,0,1,0,sales,low
Edgar Bass,0.41,0.47,2,154,3,0,1,0,sales,low
Lori Moore,0.39,0.55,2,146,3,0,1,0,sales,low
Tommy Funderburk,0.1,0.94,6,260,4,0,1,0,sales,low
Nanette Williams,0.82,0.85,5,218,5,0,1,0,sales,low
George Towry,0.41,0.46,2,128,3,0,1,0,accounting,low
Julie Milano,0.42,0.56,2,128,3,0,1,0,accounting,low
Harold Marley,0.74,0.88,4,248,6,0,1,0,accounting,low
Raymond Nelson,0.38,0.57,2,152,3,1,1,0,hr,low
Maxwell Sarni,0.39,0.56,2,126,3,0,1,0,hr,low
Willard Cooper,0.87,0.94,4,260,5,0,1,0,hr,low
Richard Mauldin,0.1,0.9,5,263,4,0,1,0,hr,low
Justin Oatney,0.78,1,5,220,5,0,1,0,technical,low
Sarah Ingersoll,0.14,0.73,7,282,5,0,1,0,technical,low
Charles Draper,0.11,0.94,6,277,5,0,1,0,technical,low
Cornelia Sanchez,0.91,0.94,5,257,5,0,1,0,technical,low
Timothy Edwards,0.49,0.63,6,265,3,0,1,0,technical,low
Danny Laris,0.38,0.47,2,143,3,0,1,0,technical,low
Blanche Doire,0.82,0.97,5,263,5,0,1,0,technical,medium
Beulah Derouen,0.38,0.88,3,154,4,0,1,0,technical,medium
Julia Quinn,0.89,1,5,253,5,0,1,0,technical,medium
Connie Flowers,0.11,0.79,6,294,4,0,1,0,technical,medium
Amy Weidman,0.37,0.51,2,128,3,0,1,0,technical,medium
Summer Washington,0.38,0.5,2,153,3,0,1,0,support,medium
Carrie Ellison,0.78,0.87,5,256,5,0,1,0,support,medium
Cassandra Blair,0.41,0.51,2,127,3,0,1,0,support,medium
Louis Milano,0.41,0.51,2,137,3,0,1,0,support,medium
Lindsey Keith,0.11,0.83,6,295,4,0,1,0,support,medium
Alma Crabtree,0.11,0.79,6,281,4,0,1,0,support,medium
Steven Delzer,0.43,0.57,2,131,3,1,1,0,support,medium
Naomi Siverling,0.75,0.86,5,237,5,0,1,0,support,high
Mary Yamamoto,0.74,0.99,4,276,5,0,1,0,support,low
Lisa Murphy,0.85,0.85,5,267,5,0,1,0,support,medium
Helen Gonzalez,0.73,0.92,5,266,5,0,1,0,support,medium
Joey Fair,0.1,0.79,6,294,4,0,1,0,technical,medium
Frank Heichel,0.44,0.56,2,134,3,0,1,0,technical,medium
Blanche Walker,0.3,0.56,3,309,4,1,1,0,technical,low
Marsha Torres,0.11,0.77,7,273,4,0,1,0,management,low
John Russell,0.84,0.83,5,238,5,0,1,0,IT,low
Dante Meza,0.78,0.94,5,271,6,0,1,0,IT,low
Lyle Timlin,0.43,0.53,2,145,3,0,1,0,IT,low
Debra Brandenburg,0.36,0.55,2,152,3,0,1,0,IT,low
Corey Carabajal,0.43,0.47,2,128,3,0,1,0,IT,low
Janet Kauffman,0.45,0.46,2,142,3,0,1,0,product_mng,low
Ronald Hahn,0.76,0.93,5,238,5,0,1,0,product_mng,low
Helen Simpson,0.1,0.78,7,286,4,0,1,0,product_mng,low
Robert Major,0.09,0.86,6,291,4,0,1,0,product_mng,low
William Rodriguez,0.92,1,5,259,5,0,1,0,IT,low
Andrew Baadsgaard,0.92,0.9,5,248,5,0,1,0,sales,low
Earl Cowger,0.79,0.98,4,271,5,0,1,0,sales,low
Robert Edwards,0.43,0.51,2,140,3,0,1,0,sales,low
Sharon Logan,0.8,0.95,4,274,5,0,1,0,sales,low
Sheri James,0.44,0.49,2,127,3,1,1,0,sales,low
Sarah Newstead,0.89,0.87,5,275,6,0,1,0,marketing,low
Carol Wendell,0.48,0.88,3,239,3,0,1,0,sales,low
Thomas Bailey,0.11,0.82,6,304,4,1,1,0,accounting,low
Nathan Schuetz,0.38,0.55,2,145,3,0,1,0,support,low
Thomas Nelson,0.11,0.85,6,259,4,0,1,0,technical,medium
Ellen Brown,0.82,0.86,4,264,5,0,1,0,management,medium
Kathleen Ocampo,0.37,0.45,2,160,3,0,1,0,marketing,medium
Gary Dudley,0.4,0.48,2,138,3,0,1,0,marketing,medium
Terry Mayo,0.43,0.47,2,137,3,0,1,0,marketing,medium
Laura Medina,0.44,0.5,2,156,3,0,1,0,sales,medium
Margaret Day,0.42,0.56,2,147,3,0,1,0,sales,medium
Fay Nail,0.11,0.8,7,243,4,0,1,0,sales,medium
Anita Bautista,0.78,0.87,4,236,5,0,1,0,sales,medium
Willard Farmer,0.46,0.86,2,212,4,0,1,0,sales,medium
Ellen Wilson,0.77,0.91,5,261,6,0,1,0,sales,medium
David Gaston,0.83,0.82,4,243,5,0,1,0,sales,medium
Dustin Duncan,0.32,0.58,5,271,5,0,1,0,sales,high
Christopher Jones,0.9,0.92,5,154,4,0,1,0,sales,low
Patricia Collis,0.42,0.52,2,151,3,0,1,0,sales,medium
Lawrence Teano,0.1,0.96,6,254,4,1,1,0,sales,medium
David Hedrick,0.1,0.91,6,285,4,0,1,0,sales,medium
Virginia Dunneback,0.44,0.49,2,130,3,0,1,0,sales,medium
Joseph Huff,0.1,0.95,7,301,4,0,1,0,sales,low
Bonnie Sherman,0.11,0.8,6,286,4,0,1,0,sales,low
Jewell Green,0.1,0.89,6,246,4,0,1,0,sales,low
Charles Rothfuss,0.39,0.47,2,135,3,0,1,0,sales,low
Joyce Forte,0.92,0.92,4,245,5,0,1,0,sales,low
Marvin Almy,0.43,0.56,2,136,3,0,1,0,sales,low
Jill Goldstein,0.11,0.89,6,301,4,0,1,0,accounting,low
Winston Long,0.81,1,5,235,5,0,1,0,accounting,low
Charles Bashir,0.11,0.85,7,272,4,0,1,0,accounting,low
Craig Fleming,0.87,1,5,274,5,0,1,0,hr,low
Beth Owens,0.37,0.46,2,131,3,0,1,0,hr,low
Paul Hunt,0.39,0.56,2,135,3,0,1,0,hr,low
Alan Rodriguez,0.61,0.86,4,196,4,0,1,0,hr,low
Cedric Bihm,0.11,0.95,6,285,4,0,1,0,technical,low
Mike Patterson,0.09,0.9,7,289,5,0,1,0,technical,low
Jennifer Post,0.36,0.52,2,157,3,0,1,0,technical,low
Nancy Rayo,0.09,0.94,6,308,4,0,1,0,technical,low
John Croyle,0.41,0.71,4,301,5,0,1,0,technical,low
Albert Jasper,0.4,0.46,2,131,3,0,1,0,technical,low
Eric Johnson,0.1,0.91,6,262,5,1,1,0,technical,low
Michael Ramon,0.46,0.53,2,143,3,1,1,0,technical,low
Elaine Betterman,0.39,0.57,2,133,3,0,1,0,technical,medium
Michael Litherland,0.41,0.5,2,153,3,0,1,0,technical,medium
Charles Grainger,0.1,0.94,7,281,4,0,1,0,technical,medium
Lorenzo Babb,0.39,0.51,2,132,3,0,1,0,support,medium
Alma Keenan,0.73,0.83,5,270,5,1,1,0,support,medium
Cynthia Perez,0.41,0.45,2,150,3,0,1,0,support,medium
Joel Farmer,0.37,0.51,2,140,3,0,1,0,support,medium
Ricky Alexander,0.38,0.5,2,150,3,1,1,0,support,medium
Phillip Morgan,0.8,0.63,5,180,5,0,1,0,support,medium
James Peterson,0.09,0.85,5,281,4,0,1,0,support,medium
Pedro Kelly,0.85,0.92,4,275,5,0,1,0,support,medium
Vera Dobbs,0.42,0.54,2,130,3,0,1,0,support,medium
Kathy Kelley,0.41,0.48,2,130,3,0,1,0,support,high
Mirna Krepps,0.38,0.46,2,147,3,0,1,0,support,low
Cody Haley,0.72,1,5,264,5,0,1,0,technical,medium
Benita Powers,0.11,0.74,6,290,5,0,1,0,technical,medium
Denise Atkins,0.37,0.47,2,150,3,0,1,0,technical,medium
Johnny Goodness,0.1,0.81,6,304,4,0,1,0,management,medium
Linda Lajoie,0.36,0.54,2,136,3,0,1,0,IT,low
Kathy Dukes,0.92,0.94,5,307,5,0,1,0,IT,low
Sharon Word,0.11,0.87,5,303,4,0,1,0,IT,low
Cary Rodriquez,0.39,0.56,2,156,3,0,1,0,IT,low
Michael Smith,0.11,0.95,6,271,4,0,1,0,IT,low
Tamika Mems,0.45,0.45,2,140,3,0,1,0,product_mng,low
Gladys Ayala,0.44,0.55,2,130,3,1,1,0,product_mng,low
Michele Clark,0.85,0.97,4,266,6,0,1,0,product_mng,low
Gregory Graham,0.43,0.52,2,139,3,0,1,0,product_mng,low
Jeffrey Martin,0.75,0.86,5,260,5,0,1,0,IT,low
Cynthia Mooney,0.11,0.55,2,137,3,1,1,0,RandD,low
Pauline Barto,0.36,0.5,2,158,3,0,1,0,RandD,low
Francisco Marin,0.1,0.79,6,249,4,0,1,0,RandD,low
Jessica Reynolds,0.74,0.89,5,259,5,0,1,0,RandD,low
Briana Higgs,0.4,0.46,2,144,3,0,1,0,RandD,low
Marianne Crum,0.09,0.77,6,244,4,0,1,0,marketing,low
Tammy Huffman,0.76,0.91,4,219,5,0,1,0,sales,low
Donna Ruhl,0.45,0.57,2,151,3,0,1,0,accounting,low
Jackie Peterson,0.84,0.88,4,269,5,0,1,0,support,low
June Mcalister,0.38,0.45,2,127,3,0,1,0,technical,low
Jeremy Lenz,0.38,0.46,2,144,3,0,1,0,management,low
Ashley Phebus,0.38,0.54,2,157,3,0,1,0,marketing,medium
Jennifer Delarosa,0.86,0.94,5,224,5,0,1,0,marketing,medium
Louise Franz,0.37,0.46,2,155,3,0,1,0,marketing,medium