-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathEmpTurn2.csv
We can't make this file beautiful and searchable because it's too large.
15000 lines (15000 loc) · 539 KB
/
EmpTurn2.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
Satisfaction,Last_Eval,Number_Projects,Avg_Mo_Hrs,Tenure,Work_Accident,Left,Promotion,Dept,Salary
0.58,0.74,4,215,3,0,0,0,sales,low
0.82,0.67,2,202,3,0,0,0,sales,low
0.45,0.69,5,193,3,0,0,0,sales,low
0.78,0.82,5,247,3,0,0,0,sales,low
0.49,0.6,3,214,2,0,0,0,sales,low
0.36,0.95,3,206,4,0,0,0,sales,low
0.54,0.37,2,176,2,0,0,0,sales,low
0.99,0.91,5,136,4,0,0,0,sales,low
0.5,0.75,6,127,3,0,0,0,sales,low
0.74,0.64,4,268,3,0,0,0,sales,low
0.56,0.58,4,258,3,0,0,0,sales,medium
0.34,0.39,2,136,3,0,0,0,sales,medium
0.48,0.94,5,255,6,0,0,0,accounting,medium
0.73,0.62,3,218,3,0,0,0,accounting,medium
0.59,0.87,3,268,4,0,0,0,accounting,medium
0.81,0.57,3,224,2,0,0,0,hr,medium
0.9,0.66,3,231,3,0,0,0,hr,medium
0.41,0.84,6,191,6,0,0,0,hr,medium
0.89,0.92,4,165,5,0,0,0,hr,medium
0.48,0.84,4,252,3,0,0,0,technical,medium
0.79,0.97,5,266,2,0,0,0,technical,medium
0.98,0.66,5,248,3,0,0,0,technical,medium
0.75,0.7,4,144,4,0,0,0,technical,high
1,0.41,4,174,3,0,0,0,technical,low
0.24,0.82,5,179,6,0,0,0,technical,medium
0.84,0.43,6,246,4,0,0,0,technical,medium
0.56,0.86,4,201,3,1,0,0,technical,medium
0.92,0.93,4,208,3,0,0,0,technical,medium
0.61,0.98,3,267,3,0,0,0,technical,low
0.84,0.77,4,262,4,0,0,0,technical,low
0.85,0.59,3,235,3,0,0,0,support,low
0.67,0.57,2,160,4,0,0,0,support,low
0.54,0.94,4,267,4,0,0,0,support,low
0.75,0.56,5,175,4,0,0,0,support,low
0.82,0.79,4,224,2,0,0,0,support,low
0.76,0.6,4,177,2,0,0,0,support,low
0.19,0.53,6,191,4,0,0,0,support,low
0.61,0.41,3,138,3,0,0,0,support,low
0.51,0.8,3,218,2,1,0,0,support,low
0.52,0.88,3,179,2,1,0,0,support,low
0.74,0.58,3,241,3,0,0,0,support,low
0.98,0.91,4,240,3,0,0,0,technical,low
0.71,0.92,3,202,4,0,0,0,technical,low
0.33,0.88,6,260,3,0,0,0,technical,low
0.98,0.97,3,196,3,0,0,0,management,low
0.52,0.59,2,176,3,1,0,0,IT,low
0.84,0.65,2,140,3,0,0,0,IT,low
0.87,0.5,3,242,2,0,0,0,IT,low
0.48,0.85,3,279,4,0,0,0,IT,low
0.58,0.55,4,202,3,0,0,0,IT,medium
0.58,0.84,5,228,3,0,0,0,product_mng,medium
0.73,0.69,4,171,3,0,0,0,product_mng,medium
0.68,0.54,4,153,3,0,0,0,product_mng,medium
0.41,0.68,3,165,3,1,0,0,product_mng,medium
0.85,0.6,3,182,3,0,0,0,IT,medium
0.54,0.7,5,239,5,0,0,0,RandD,medium
0.81,0.61,5,231,2,0,0,0,RandD,medium
0.7,0.52,4,255,3,0,0,0,RandD,medium
0.63,0.66,4,237,2,1,0,0,RandD,medium
0.68,0.54,3,251,2,0,0,0,RandD,medium
0.7,0.53,4,178,2,0,0,0,marketing,medium
0.82,0.65,4,148,3,0,0,0,sales,high
0.72,0.94,4,240,4,0,0,0,accounting,low
0.77,0.78,3,269,3,0,0,0,support,medium
0.86,0.91,4,147,3,0,0,0,technical,medium
0.15,0.97,3,198,5,0,0,0,management,medium
0.81,0.99,5,143,3,0,0,0,marketing,medium
0.93,0.98,3,238,2,0,0,0,marketing,low
0.62,0.74,4,213,4,0,0,0,marketing,low
0.53,0.81,3,226,3,1,0,0,sales,low
0.86,0.99,3,169,2,1,0,0,sales,low
0.92,0.65,4,238,2,0,0,0,sales,low
0.97,0.83,4,202,3,0,0,0,sales,low
0.39,0.78,2,205,6,1,0,0,sales,low
0.45,0.66,3,111,4,0,0,0,sales,low
0.41,0.47,4,104,3,0,0,0,sales,low
0.51,0.69,3,212,3,0,0,0,sales,low
0.74,0.62,4,236,4,0,0,0,sales,low
0.69,0.57,5,245,2,1,0,0,sales,low
0.84,0.64,4,267,4,0,0,0,sales,low
0.69,0.66,5,106,5,0,0,0,sales,low
0.93,0.53,5,198,3,0,0,0,sales,low
0.33,0.45,6,239,3,0,0,0,sales,low
0.25,0.65,5,220,3,0,0,0,sales,low
0.63,0.59,5,224,3,0,0,0,sales,low
0.81,0.62,3,100,3,0,0,0,sales,low
0.12,0.87,4,244,5,0,0,0,sales,low
0.52,0.66,4,139,3,0,0,0,sales,low
0.57,0.51,2,152,2,0,0,0,accounting,medium
0.84,0.58,4,208,3,0,0,0,accounting,medium
0.6,0.95,5,205,3,0,0,0,accounting,medium
0.73,0.44,2,194,6,0,0,0,hr,medium
0.2,0.58,3,209,5,0,0,0,hr,medium
0.58,0.9,3,212,3,0,0,0,hr,medium
0.48,0.56,2,151,3,0,0,0,hr,medium
0.54,0.67,4,282,6,0,0,0,technical,medium
0.86,1,4,256,3,0,0,0,technical,medium
0.94,0.83,2,185,3,1,0,0,technical,medium
0.76,0.74,5,132,3,0,0,0,technical,medium
0.61,0.95,5,233,3,0,0,0,technical,medium
0.56,0.94,4,215,2,0,0,0,technical,high
1,0.74,3,220,4,0,0,0,technical,low
0.15,0.53,6,222,3,0,0,0,technical,medium
0.19,0.58,5,182,2,0,0,0,technical,medium
0.17,0.73,5,258,4,0,0,0,technical,medium
0.71,0.57,3,209,2,0,0,0,technical,medium
0.86,0.79,3,242,2,0,0,0,support,low
0.59,0.88,4,155,3,1,0,0,support,low
0.74,0.76,5,104,4,0,0,0,support,low
0.98,0.92,4,201,3,1,0,0,support,low
0.93,0.75,5,143,3,0,0,0,support,low
1,0.92,5,161,3,1,0,0,support,low
0.59,0.81,4,200,2,0,0,0,support,low
0.98,0.55,4,255,2,0,0,0,support,low
0.35,0.5,5,227,2,0,0,0,support,low
0.42,0.96,3,270,6,0,0,0,support,low
0.61,0.85,5,230,3,0,0,0,support,low
0.78,0.72,5,270,3,1,0,0,technical,low
0.93,0.52,4,200,3,0,0,0,technical,low
0.5,0.95,5,207,3,0,0,0,technical,low
0.67,0.51,5,182,3,0,0,0,management,low
0.75,0.85,4,234,3,0,0,0,IT,low
0.79,0.51,4,237,2,0,0,0,IT,low
0.84,0.89,4,187,2,1,0,0,IT,low
0.72,0.5,3,257,6,0,0,0,IT,low
0.57,0.48,2,194,2,0,0,0,IT,low
0.73,0.52,4,162,3,0,0,0,product_mng,low
0.74,0.58,4,148,2,0,0,0,product_mng,medium
0.52,0.83,4,210,2,0,0,0,product_mng,medium
0.56,0.76,3,213,2,1,0,0,product_mng,medium
0.76,0.68,4,189,2,1,0,0,IT,medium
0.82,0.93,4,185,2,0,0,0,RandD,medium
0.76,0.83,3,186,2,1,0,0,RandD,medium
0.62,0.59,3,128,3,0,0,0,RandD,medium
0.48,0.8,4,268,3,0,0,0,RandD,medium
0.64,0.77,3,213,3,1,0,0,RandD,medium
0.74,0.82,4,142,2,0,0,0,marketing,medium
0.52,0.43,2,199,2,0,0,0,sales,medium
0.67,0.5,4,157,2,0,0,0,accounting,medium
0.71,0.76,5,172,2,1,0,0,support,high
0.72,0.63,3,176,3,1,0,0,technical,low
0.33,0.58,2,183,2,0,0,0,management,medium
0.91,0.56,4,270,2,0,0,0,marketing,medium
0.88,0.68,5,157,4,1,0,0,marketing,medium
0.96,0.6,4,185,3,0,0,0,marketing,medium
0.97,0.68,3,167,3,0,0,0,sales,low
0.27,0.59,5,226,5,0,0,0,sales,low
0.65,0.64,3,223,4,0,0,0,sales,low
0.68,0.73,3,257,3,0,0,0,sales,low
0.68,0.46,4,143,3,0,0,0,sales,low
0.69,0.74,3,215,2,0,0,0,sales,low
0.79,0.99,3,194,4,0,0,0,sales,low
0.74,0.92,5,193,3,0,0,0,sales,low
0.8,0.83,3,163,3,0,0,0,sales,low
0.38,0.94,5,252,5,0,0,0,sales,low
0.26,0.83,3,168,3,0,0,0,sales,low
0.81,0.86,3,231,3,0,0,0,sales,low
0.67,0.54,2,141,2,0,0,0,sales,low
0.55,0.81,4,260,2,0,0,0,sales,low
0.87,0.71,3,132,2,0,0,0,sales,low
0.46,0.69,2,159,2,0,0,0,sales,low
0.63,0.57,4,177,3,1,0,0,sales,low
0.54,0.96,4,248,3,0,0,0,sales,low
1,0.49,3,185,2,0,0,0,sales,low
0.97,0.66,4,149,2,0,0,0,accounting,low
0.9,0.92,3,152,3,0,0,0,accounting,low
0.75,0.7,3,129,3,0,0,0,accounting,medium
0.92,0.84,4,208,2,0,0,0,hr,medium
0.8,0.94,4,136,2,0,0,0,hr,medium
0.57,0.81,3,142,2,0,0,0,hr,medium
0.81,0.94,3,225,4,0,0,0,hr,medium
0.64,0.6,3,143,3,0,0,0,technical,medium
0.71,0.54,4,215,3,0,0,0,technical,medium
0.35,0.58,3,229,6,1,0,0,technical,medium
0.88,0.81,5,193,5,0,0,0,technical,medium
0.13,0.59,5,160,5,0,0,0,technical,medium
0.82,0.73,4,195,5,1,0,0,technical,medium
0.17,0.92,4,189,2,0,0,0,technical,medium
0.21,0.82,4,207,5,0,0,0,technical,high
0.89,0.47,4,108,3,0,0,0,technical,low
0.2,0.72,6,224,4,0,0,0,technical,medium
0.99,0.81,5,180,3,1,0,0,technical,medium
0.26,0.85,6,152,4,0,0,0,support,medium
0.22,0.53,4,244,2,0,0,0,support,medium
0.79,0.84,3,176,3,0,0,0,support,low
0.73,0.79,4,145,2,1,0,0,support,low
0.83,0.54,3,149,3,0,0,0,support,low
0.42,0.54,3,122,4,0,0,0,support,low
0.18,0.8,2,110,5,0,0,0,support,low
0.92,0.91,4,222,2,0,0,0,support,low
0.87,0.52,3,237,3,0,0,0,support,low
0.72,0.65,4,224,3,0,0,0,support,low
0.64,0.58,5,115,5,0,0,0,support,low
1,0.66,4,180,3,0,0,0,technical,low
0.83,0.65,4,162,3,0,0,0,technical,low
0.98,0.58,4,136,3,0,0,0,technical,low
0.7,0.87,3,260,2,0,0,0,management,low
0.9,0.79,4,150,2,0,0,0,IT,low
0.55,0.99,4,248,3,0,0,0,IT,low
0.78,0.84,3,233,3,1,0,0,IT,low
0.89,0.53,5,272,3,0,0,0,IT,low
0.17,0.59,3,197,5,0,0,0,IT,low
0.14,0.64,5,164,5,0,0,0,product_mng,low
0.85,0.57,4,216,2,0,0,0,product_mng,low
0.84,0.79,4,266,3,1,0,0,product_mng,low
0.7,0.69,3,102,4,1,0,0,product_mng,medium
0.16,0.98,5,284,5,0,0,0,IT,medium
0.51,0.69,3,145,2,1,0,0,RandD,medium
0.6,0.89,3,167,4,0,0,0,RandD,medium
0.5,0.63,3,172,2,0,0,0,RandD,medium
0.43,0.39,5,198,5,0,0,0,RandD,medium
0.5,0.7,4,201,4,0,0,0,RandD,medium
0.91,0.89,4,197,4,0,0,0,marketing,medium
0.65,0.93,4,270,2,0,0,0,sales,medium
0.59,0.52,2,149,3,0,0,0,accounting,medium
0.89,0.56,3,256,3,0,0,0,support,medium
0.97,0.6,3,162,3,0,0,0,technical,medium
0.56,0.97,5,163,2,0,0,0,management,high
0.76,0.93,3,266,3,1,0,0,marketing,low
0.28,0.55,4,208,4,0,0,0,marketing,medium
0.75,0.51,4,138,4,0,0,0,marketing,medium
0.78,0.81,4,232,3,0,0,0,sales,medium
0.26,0.63,6,100,4,0,0,0,sales,medium
0.53,0.72,2,172,5,0,0,0,sales,low
0.25,0.41,3,133,6,1,0,0,sales,low
0.82,0.51,3,234,3,0,0,0,sales,low
0.71,0.57,2,183,4,0,0,0,sales,low
0.61,0.95,4,174,4,0,0,0,sales,low
0.89,0.68,3,175,2,0,0,0,sales,low
0.57,0.78,3,109,3,1,0,0,sales,low
0.93,0.8,4,248,3,0,0,0,sales,low
0.61,0.84,5,104,4,0,0,0,sales,low
0.56,0.62,3,154,2,0,0,0,sales,low
0.7,0.89,6,214,2,0,0,0,sales,low
0.9,0.64,4,209,4,0,0,0,sales,low
0.15,0.74,6,212,2,0,0,0,sales,low
0.39,0.36,3,168,3,1,0,0,sales,low
0.74,0.72,4,176,3,0,0,0,sales,low
0.7,0.61,4,163,4,1,0,0,sales,low
0.72,0.93,4,148,2,0,0,0,sales,low
0.61,0.97,3,137,3,0,0,0,accounting,low
0.96,1,5,162,3,0,0,0,accounting,low
0.7,0.59,4,216,3,0,0,0,accounting,low
0.92,0.49,3,240,2,0,0,0,hr,low
0.72,0.56,4,176,2,0,0,0,hr,medium
0.53,0.75,6,192,6,0,0,0,hr,medium
0.67,0.85,3,160,4,0,0,0,hr,medium
0.78,0.8,4,194,2,1,0,0,technical,medium
0.53,0.75,4,239,2,1,0,0,technical,medium
0.9,0.48,4,204,3,0,0,0,technical,medium
0.16,0.9,5,258,3,0,0,0,technical,medium
0.62,0.38,3,257,3,0,0,0,technical,medium
0.62,0.98,4,137,3,0,0,0,technical,medium
0.22,0.52,6,175,4,0,0,0,technical,medium
0.91,0.82,3,183,3,0,0,0,technical,medium
0.87,0.74,4,190,4,0,0,0,technical,medium
0.95,0.69,3,225,2,0,0,0,technical,high
0.99,0.75,3,215,3,0,0,0,technical,low
0.99,0.57,3,176,4,1,0,0,support,medium
0.77,0.99,4,153,3,1,0,0,support,medium
0.75,0.68,3,150,2,1,0,0,support,medium
0.83,0.54,4,259,5,0,0,0,support,medium
0.61,0.39,3,99,2,0,0,0,support,low
0.91,0.97,3,167,2,0,0,0,support,low
0.47,0.64,3,192,3,0,0,0,support,low
0.77,0.61,5,146,3,0,0,0,support,low
0.55,0.51,3,190,3,0,0,0,support,low
0.32,0.48,5,246,3,0,0,0,support,low
0.96,0.67,6,190,3,0,0,0,support,low
0.72,0.79,5,260,2,0,0,0,technical,low
0.8,0.9,4,136,3,0,0,0,technical,low
0.61,0.55,4,231,3,0,0,0,technical,low
0.97,0.88,3,204,2,0,0,0,management,low
0.63,0.93,4,201,3,0,0,0,IT,low
0.92,0.92,3,159,3,0,0,0,IT,low
0.94,0.74,5,171,3,0,0,0,IT,low
0.79,0.72,6,240,4,0,0,0,IT,low
0.75,0.73,2,152,4,0,0,0,IT,low
0.78,0.99,3,151,3,1,0,0,product_mng,low
0.96,0.45,6,232,2,1,0,0,product_mng,low
0.65,0.68,4,128,5,0,0,0,product_mng,low
0.18,0.94,3,187,6,1,0,0,product_mng,low
0.94,0.51,3,160,2,0,0,0,IT,low
0.84,0.79,4,259,3,0,0,0,RandD,medium
0.67,0.54,2,136,2,0,0,0,RandD,medium
0.71,0.5,4,253,3,0,0,0,RandD,medium
0.56,0.64,3,260,3,0,0,0,RandD,medium
0.29,0.56,5,231,6,0,0,0,RandD,medium
0.47,0.9,3,101,2,1,0,0,marketing,medium
0.4,0.69,2,174,3,0,0,0,sales,medium
0.81,0.82,4,167,2,0,0,0,accounting,medium
0.96,0.99,3,148,3,0,0,0,support,medium
0.99,0.75,6,139,5,1,0,0,technical,medium
0.75,0.77,4,136,3,0,0,0,management,medium
0.75,0.74,4,153,2,0,0,0,marketing,medium
1,0.86,4,161,2,0,0,0,marketing,high
0.52,0.53,2,163,2,0,0,0,marketing,low
0.98,0.74,3,164,3,0,0,0,sales,medium
0.6,0.64,2,137,5,0,0,0,sales,medium
0.38,0.44,3,137,3,0,0,0,sales,medium
0.51,0.41,6,106,5,0,0,0,sales,medium
0.91,0.61,2,272,2,0,0,0,sales,low
0.56,0.62,5,238,3,0,0,0,sales,low
0.58,0.69,4,223,4,0,0,0,sales,low
0.51,0.53,3,201,2,0,0,0,sales,low
0.91,0.55,6,97,4,0,0,0,sales,low
0.8,0.98,2,232,6,1,0,0,sales,low
0.55,0.83,4,199,3,0,0,0,sales,low
0.62,0.53,3,141,3,0,0,0,sales,low
0.62,0.6,3,171,2,0,0,0,sales,low
0.87,0.58,4,212,3,0,0,0,sales,low
0.65,0.5,5,270,2,0,0,0,sales,low
0.51,0.64,3,267,2,0,0,0,sales,low
0.98,0.77,3,134,2,1,0,0,sales,low
0.13,0.43,4,165,5,0,0,0,sales,low
0.78,0.76,5,168,4,1,0,0,sales,low
0.6,0.98,3,262,2,0,0,0,accounting,low
0.68,0.69,3,185,2,0,0,0,accounting,low
0.55,0.84,3,237,3,0,0,0,accounting,low
0.99,0.79,4,192,3,0,0,0,hr,low
0.92,0.68,5,236,2,0,0,0,hr,low
1,0.65,4,202,4,1,0,0,hr,low
0.77,0.93,4,171,2,0,0,0,hr,medium
0.86,0.7,5,160,3,0,0,0,technical,medium
0.89,0.84,2,252,3,0,0,0,technical,medium
0.58,0.55,5,206,3,0,0,0,technical,medium
0.56,0.66,3,212,2,0,0,0,technical,medium
0.38,0.64,3,111,3,0,0,0,technical,medium
0.62,0.64,3,240,2,0,0,0,technical,medium
0.66,0.77,2,171,2,0,0,0,technical,medium
0.3,0.44,3,129,2,0,0,0,technical,medium
0.82,0.83,3,271,2,0,0,0,technical,medium
0.96,0.68,4,162,2,0,0,0,technical,medium
0.66,0.95,3,191,3,0,0,0,technical,medium
0.79,0.5,5,176,3,0,0,0,support,high
0.97,0.77,3,182,2,1,0,0,support,low
0.59,0.65,3,226,3,0,0,0,support,medium
0.57,0.48,4,161,3,0,0,0,support,medium
0.64,0.53,4,163,3,0,0,0,support,medium
0.14,0.51,5,173,4,0,0,0,support,medium
0.48,0.55,3,228,2,0,0,0,support,low
0.78,1,3,139,3,0,0,0,support,low
0.96,0.62,5,128,5,0,0,0,support,low
0.82,0.97,3,115,2,1,0,0,support,low
0.94,0.9,5,191,4,0,0,0,support,low
0.95,0.66,4,183,3,0,0,0,technical,low
0.59,0.43,3,173,3,0,0,0,technical,low
0.69,0.89,4,174,2,0,0,0,technical,low
0.74,0.72,3,213,3,0,0,0,management,low
0.67,0.67,4,192,4,0,0,0,IT,low
0.83,0.52,3,167,2,1,0,0,IT,low
0.81,0.85,3,263,3,1,0,0,IT,low
0.54,0.73,2,100,3,0,0,0,IT,low
0.89,0.83,3,164,3,0,0,0,IT,low
0.79,0.74,5,172,2,0,0,0,product_mng,low
0.46,0.58,4,171,3,0,0,0,product_mng,low
0.99,0.93,4,236,3,0,0,0,product_mng,low
0.75,0.9,5,186,4,0,0,0,product_mng,low
0.93,0.82,4,175,3,0,0,0,IT,low
0.65,0.6,5,227,3,0,0,0,RandD,low
0.19,0.63,4,142,6,0,0,0,RandD,low
0.48,0.61,2,121,2,0,0,0,RandD,medium
0.95,0.64,5,234,3,0,0,0,RandD,medium
0.92,0.77,4,185,3,0,0,0,RandD,medium
0.84,0.54,4,160,3,0,0,0,marketing,medium
0.37,0.63,4,153,3,1,0,0,sales,medium
0.22,0.74,3,199,6,0,0,0,accounting,medium
0.64,0.54,3,166,2,0,0,0,support,medium
0.72,0.88,2,247,3,0,0,0,technical,medium
0.48,0.69,4,245,3,0,0,0,management,medium
0.12,0.55,5,242,4,0,0,0,marketing,medium
0.78,0.98,5,158,2,0,0,0,marketing,medium
0.71,0.74,3,163,3,1,0,0,marketing,medium
0.38,0.69,3,99,3,1,0,0,sales,high
0.57,0.85,4,164,3,0,0,0,sales,low
0.72,0.51,3,160,3,0,0,0,sales,medium
0.6,0.57,2,184,3,0,0,0,sales,medium
0.61,0.55,5,266,2,0,0,0,sales,medium
0.67,0.64,4,190,2,0,0,0,sales,medium
0.97,0.97,5,192,2,0,0,0,sales,low
0.22,0.6,3,205,6,1,0,0,sales,low
0.15,0.53,4,205,5,1,0,0,sales,low
0.6,0.6,3,258,3,0,0,0,sales,low
0.15,0.8,5,151,2,1,0,0,sales,low
0.5,0.81,3,148,2,0,0,0,sales,low
0.9,0.67,3,179,2,0,0,0,sales,low
0.84,0.51,6,141,2,1,0,0,sales,low
0.74,0.78,5,216,2,0,0,0,sales,low
0.72,0.51,3,235,2,0,0,0,sales,low
0.93,0.63,3,160,4,1,0,0,sales,low
0.54,0.69,3,141,4,0,0,0,sales,low
0.87,0.65,4,246,2,1,0,0,sales,low
0.19,0.98,5,226,4,1,0,0,accounting,low
0.33,0.4,4,212,2,1,0,0,accounting,low
0.94,0.93,4,220,3,0,0,0,accounting,low
0.77,0.49,4,266,2,0,0,0,hr,low
0.48,0.82,3,183,2,0,0,0,hr,low
0.7,0.74,5,263,3,1,0,0,hr,low
0.54,0.93,4,161,4,1,0,0,hr,low
0.61,0.98,4,199,2,0,0,0,technical,low
0.97,0.4,4,258,4,1,0,0,technical,medium
0.6,0.85,3,209,2,1,0,0,technical,medium
0.93,0.84,5,135,3,0,0,0,technical,medium
0.48,0.69,4,222,2,0,0,0,technical,medium
0.16,0.76,5,192,3,0,0,0,technical,medium
0.18,0.75,3,250,3,0,0,0,technical,medium
0.84,0.75,3,187,3,1,0,0,technical,medium
0.69,0.63,4,217,3,0,0,0,technical,medium
0.22,0.88,4,213,3,1,0,0,technical,medium
0.83,0.52,4,273,3,0,0,0,technical,medium
0.58,0.5,2,132,3,0,0,0,support,medium
0.61,0.62,4,140,3,1,0,0,support,medium
0.67,0.5,4,173,2,1,0,0,support,high
0.56,0.76,4,189,2,0,0,0,support,low
0.74,0.74,3,156,3,0,0,0,support,medium
0.92,0.97,4,238,5,1,0,0,support,medium
0.81,0.68,5,230,2,0,0,0,support,medium
0.48,0.49,4,242,2,1,0,0,support,medium
0.73,0.72,4,197,3,0,0,0,support,low
0.97,0.66,6,164,5,0,0,0,support,low
0.15,0.51,6,248,5,0,0,0,support,low
0.69,0.76,5,255,6,0,0,0,technical,low
0.61,0.68,5,225,4,0,0,0,technical,low
0.86,0.58,3,151,2,0,0,0,technical,low
0.55,0.88,4,252,3,0,0,0,management,low
0.9,0.74,4,206,4,1,0,0,IT,low
0.65,0.4,2,141,2,0,0,0,IT,low
0.81,0.92,5,259,3,0,0,0,IT,low
0.65,0.86,5,250,3,0,0,0,IT,low
0.47,0.86,4,169,6,0,0,0,IT,low
0.93,0.53,3,200,3,1,0,0,product_mng,low
0.77,0.9,4,104,5,0,0,0,product_mng,low
0.87,0.82,6,176,3,0,0,0,product_mng,low
0.87,0.84,5,137,2,0,0,0,product_mng,low
0.65,0.75,2,151,3,0,0,0,IT,low
0.21,0.7,6,130,6,1,0,0,RandD,low
0.75,0.59,4,199,2,0,0,0,RandD,low
0.72,0.86,4,191,2,0,0,0,RandD,low
0.88,0.63,3,273,3,1,0,0,RandD,low
0.66,0.58,3,205,3,0,0,0,RandD,medium
0.8,0.75,3,181,3,0,0,0,marketing,medium
0.22,0.55,4,261,3,1,0,0,sales,medium
0.92,0.69,3,192,3,0,0,0,accounting,medium
0.54,0.77,4,271,3,0,0,0,support,medium
0.91,0.56,4,158,3,0,0,0,technical,medium
0.77,0.83,4,231,2,0,0,0,management,medium
0.61,0.51,3,156,3,1,0,0,marketing,medium
0.48,0.9,4,201,4,0,0,0,marketing,medium
0.25,0.69,3,187,4,0,0,0,marketing,medium
0.91,0.7,3,132,4,0,0,0,sales,medium
0.72,0.58,5,147,3,1,0,0,sales,medium
0.77,0.71,4,223,3,0,0,0,sales,high
0.41,0.4,2,194,2,0,0,0,sales,low
0.51,0.49,4,234,2,0,0,0,sales,medium
0.72,0.79,3,149,3,0,0,0,sales,medium
0.47,0.57,3,162,3,1,0,0,sales,medium
0.53,0.67,4,238,2,0,0,0,sales,medium
0.65,0.52,5,149,3,0,0,0,sales,low
0.18,0.75,4,170,5,0,0,0,sales,low
0.61,0.48,3,250,2,0,0,0,sales,low
0.86,0.72,4,167,2,0,0,0,sales,low
0.14,0.77,4,166,5,0,0,0,sales,low
0.63,0.8,3,205,2,0,0,0,sales,low
0.79,0.57,3,250,3,0,0,0,sales,low
0.78,0.97,4,142,3,0,0,0,sales,low
0.14,0.52,4,217,6,0,0,0,sales,low
0.85,0.54,3,139,3,0,0,0,sales,low
0.85,0.75,4,139,3,0,0,0,sales,low
0.91,0.76,5,152,3,0,0,0,accounting,low
0.76,0.74,3,224,2,0,0,0,accounting,low
0.62,0.72,5,180,3,0,0,0,accounting,low
0.53,0.69,4,216,2,0,0,0,hr,low
0.97,0.63,3,133,3,0,0,0,hr,low
0.48,0.53,4,271,3,0,0,0,hr,low
0.5,0.55,4,148,3,1,0,0,hr,low
0.32,0.42,2,99,4,0,0,0,technical,low
0.58,0.77,4,196,2,1,0,0,technical,low
0.81,0.83,3,196,2,0,0,0,technical,low
0.48,0.84,4,228,3,0,0,0,technical,medium
0.96,0.88,4,165,2,0,0,0,technical,medium
0.56,0.9,3,235,2,0,0,0,technical,medium
0.63,0.96,4,167,2,0,0,0,technical,medium
0.21,0.5,5,255,5,0,0,0,technical,medium
0.94,0.78,3,184,3,1,0,0,technical,medium
0.94,0.89,4,239,3,0,0,0,technical,medium
0.96,0.54,3,153,2,0,0,0,technical,medium
0.49,0.5,4,187,5,1,0,0,support,medium
0.82,0.68,2,285,2,0,0,0,support,medium
0.6,0.5,3,274,3,0,0,0,support,medium
0.76,0.5,3,156,3,1,0,0,support,medium
0.69,0.64,5,265,2,1,0,0,support,high
1,0.94,4,144,3,0,0,0,support,low
0.62,0.66,4,143,3,0,0,0,support,medium
0.4,0.99,4,214,6,1,0,0,support,medium
0.94,0.91,3,163,3,0,0,0,support,medium
0.76,0.84,4,236,4,0,0,0,support,medium
0.58,0.69,3,146,4,0,0,0,support,low
0.85,0.78,4,106,2,0,0,0,technical,low
0.45,0.52,2,105,3,0,0,0,technical,low
0.13,0.67,3,181,4,0,0,0,technical,low
0.24,0.5,5,174,4,0,0,0,management,low
0.64,0.69,3,207,2,1,0,0,IT,low
0.63,0.61,6,118,2,0,0,0,IT,low
0.61,0.99,4,251,2,0,0,0,IT,low
0.71,0.99,2,136,3,0,0,0,IT,low
0.9,0.89,5,249,3,1,0,0,IT,low
0.17,0.76,4,171,5,0,0,0,product_mng,low
0.93,0.97,3,256,2,1,0,0,product_mng,low
0.83,0.89,5,141,3,1,0,0,product_mng,low
0.58,0.75,4,186,2,0,0,0,product_mng,low
0.76,0.5,3,258,3,0,0,0,IT,low
0.5,0.78,3,228,2,0,0,0,RandD,low
0.22,0.81,5,205,4,0,0,0,RandD,low
0.9,0.88,4,174,3,0,0,0,RandD,low
0.7,0.63,3,155,4,1,0,0,RandD,low
0.73,0.85,5,245,3,0,0,0,RandD,low
0.84,0.87,3,271,3,0,0,0,marketing,low
0.55,0.63,5,184,4,0,0,0,marketing,medium
0.63,0.98,4,175,2,0,0,0,sales,medium
0.51,0.92,3,224,3,0,0,0,accounting,medium
0.81,0.76,4,177,3,0,0,0,support,medium
0.8,0.96,4,268,3,0,0,0,technical,medium
0.99,0.97,4,208,3,0,0,0,management,medium
0.9,0.87,5,219,2,0,0,0,marketing,medium
0.65,0.67,5,128,5,0,0,0,marketing,medium
0.75,0.75,3,273,3,0,0,0,marketing,medium
0.62,0.49,4,218,4,0,0,0,sales,medium
0.61,0.63,5,230,3,0,0,0,sales,medium
0.24,0.6,4,195,5,0,0,0,sales,medium
0.71,0.63,3,254,3,1,0,0,sales,high
0.49,0.8,2,275,2,0,0,0,sales,low
0.44,0.66,3,162,2,0,0,0,sales,medium
0.75,0.87,4,193,3,0,0,0,sales,medium
0.74,0.84,3,239,4,0,0,0,sales,medium
0.62,0.87,5,149,3,0,0,0,sales,medium
0.51,0.58,3,155,3,0,0,0,sales,low
0.61,0.59,5,271,2,0,0,0,sales,low
0.56,0.49,5,163,3,0,0,0,sales,low
0.79,0.76,3,160,3,0,0,0,sales,low
0.68,0.75,6,274,5,0,0,0,sales,low
0.9,0.84,2,199,3,0,0,0,sales,low
0.83,0.93,5,241,3,0,0,0,sales,low
0.94,0.82,3,187,3,0,0,0,sales,low
0.21,0.65,5,223,3,1,0,0,sales,low
0.58,0.87,3,268,2,0,0,0,sales,low
0.52,0.38,6,169,3,0,0,0,accounting,low
0.18,0.67,5,285,5,0,0,0,accounting,low
0.94,0.91,5,254,3,0,0,0,accounting,low
0.69,0.5,3,208,4,0,0,0,hr,low
0.65,0.83,4,218,3,0,0,0,hr,low
0.46,0.62,2,187,3,0,0,0,hr,low
0.72,0.62,4,256,3,0,0,0,hr,low
0.3,0.37,6,278,3,0,0,0,technical,low
0.51,0.51,4,204,2,0,0,0,technical,low
0.43,0.75,3,108,2,0,0,0,technical,low
0.56,0.94,3,226,2,0,0,0,technical,low
0.63,0.91,4,246,3,0,0,0,technical,medium
0.61,0.55,5,260,3,0,0,0,technical,medium
0.53,0.73,4,248,2,0,0,0,technical,medium
0.87,0.75,3,132,3,0,0,0,technical,medium
0.68,0.7,4,185,4,0,0,0,technical,medium
0.78,0.84,3,269,2,0,0,0,technical,medium
0.49,0.95,4,156,2,0,0,0,technical,medium
0.96,0.81,3,212,3,0,0,0,support,medium
0.83,0.74,3,221,2,0,0,0,support,medium
0.48,0.67,5,273,3,0,0,0,support,medium
0.63,0.86,4,271,3,1,0,0,support,medium
0.87,0.38,4,183,5,0,0,0,support,medium
0.21,0.9,4,271,6,0,0,0,support,high
0.79,0.58,5,165,3,0,0,0,support,low
0.8,0.96,3,257,5,0,0,0,support,medium
0.78,0.82,4,143,3,0,0,0,support,medium
0.67,0.65,5,156,2,0,0,0,support,medium
0.67,0.71,3,190,3,1,0,0,support,medium
0.26,0.67,2,242,6,0,0,0,technical,low
0.89,0.83,5,267,4,0,0,0,technical,low
0.7,0.53,4,152,3,0,0,0,technical,low
0.51,0.48,5,136,4,0,0,0,management,low
0.53,0.88,3,157,3,0,0,0,IT,low
0.76,0.51,4,281,3,0,0,0,IT,low
0.86,0.93,5,208,2,0,0,0,IT,low
0.63,0.96,5,152,3,0,0,0,IT,low
0.58,0.86,5,271,3,0,0,0,IT,low
0.58,0.83,4,163,3,1,0,0,product_mng,low
0.9,0.82,4,136,3,0,0,0,product_mng,low
0.79,0.57,4,233,2,0,0,0,product_mng,low
0.8,0.74,4,221,4,0,0,0,product_mng,low
0.53,0.65,2,189,2,1,0,0,IT,low
0.52,0.84,2,226,3,0,0,0,RandD,low
0.82,0.59,5,201,3,0,0,0,RandD,low
0.68,0.9,2,133,4,0,0,0,RandD,low
0.21,0.61,3,173,2,0,0,0,RandD,low
0.81,0.5,4,152,3,1,0,0,RandD,low
0.57,0.9,3,256,4,0,0,0,RandD,low
0.99,0.72,3,119,2,1,0,0,marketing,low
0.9,1,4,207,3,0,0,0,sales,medium
0.76,0.64,3,189,3,0,0,0,accounting,medium
0.56,0.92,4,172,2,0,0,0,support,medium
0.5,0.93,6,150,3,1,0,0,technical,medium
0.48,0.89,5,179,3,0,0,0,management,medium
0.99,0.97,3,257,2,0,0,0,marketing,medium
0.76,0.8,5,229,2,0,0,0,marketing,medium
0.93,0.97,4,227,3,0,0,0,marketing,medium
0.99,0.78,4,140,3,0,0,0,sales,medium
0.85,0.78,4,251,3,0,0,0,sales,medium
0.63,0.95,4,137,3,0,0,0,sales,medium
0.63,0.78,3,153,3,1,0,0,sales,medium
0.5,0.65,5,242,3,0,0,0,sales,high
0.52,0.57,3,150,3,0,0,0,sales,low
0.63,0.99,3,247,3,0,0,0,sales,medium
0.78,0.5,4,212,2,0,0,0,sales,medium
0.98,0.53,3,234,3,0,0,0,sales,medium
0.14,1,5,174,5,0,0,0,sales,medium
0.7,0.9,3,225,2,0,0,0,sales,low
0.88,0.6,4,224,2,0,0,0,sales,low
0.72,0.62,3,270,4,0,0,0,sales,low
0.88,0.51,4,139,3,0,0,0,sales,low
0.71,0.51,3,248,4,0,0,0,sales,low
0.6,0.85,3,172,2,0,0,0,sales,low
0.88,0.86,4,224,3,1,0,0,sales,low
0.55,0.72,5,232,4,0,0,0,sales,low
0.85,0.55,4,260,2,1,0,0,sales,low
0.84,0.51,2,117,4,0,0,0,accounting,low
0.91,0.61,4,243,2,1,0,0,accounting,low
0.82,0.62,4,202,2,0,0,0,accounting,low
0.6,0.91,2,168,4,0,0,0,hr,low
0.89,0.71,5,194,3,0,0,0,hr,low
0.6,0.97,4,219,4,1,0,0,hr,low
0.64,0.52,4,207,3,0,0,0,hr,low
0.93,0.88,4,177,3,0,0,0,technical,low
0.81,0.99,3,239,2,1,0,0,technical,low
0.31,0.49,4,165,3,1,0,0,technical,low
0.68,0.69,4,225,2,0,0,0,technical,low
0.78,0.59,3,212,2,0,0,0,technical,low
0.44,0.42,4,159,4,0,0,0,technical,medium
0.64,0.93,4,233,2,1,0,0,technical,medium
0.81,0.63,4,108,6,0,0,0,technical,medium
0.5,0.49,3,214,3,0,0,0,technical,medium
0.69,0.61,5,229,3,0,0,0,technical,medium
0.77,0.75,4,223,3,0,0,0,technical,medium
0.69,0.56,4,178,3,0,0,0,support,medium
0.87,0.68,4,246,2,0,0,0,support,medium
0.85,0.91,4,145,3,0,0,0,support,medium
0.83,0.83,4,224,4,0,0,0,support,medium
0.68,0.51,3,259,3,0,0,0,support,medium
0.78,0.65,4,207,2,0,0,0,support,medium
0.78,0.89,3,253,3,0,0,0,support,high
0.93,0.68,4,196,2,1,0,0,support,low
0.54,0.75,3,240,3,0,0,0,support,medium
0.76,0.56,3,255,3,0,0,0,support,medium
0.4,0.72,3,139,2,0,0,0,support,medium
0.73,0.81,3,168,2,0,0,0,technical,medium
0.86,0.98,5,233,3,0,0,0,technical,low
0.38,0.68,5,211,6,0,0,0,technical,low
0.71,0.48,5,114,3,0,0,0,management,low
0.58,0.97,5,202,2,0,0,0,IT,low
0.67,0.59,3,177,3,1,0,0,IT,low
0.55,0.76,4,233,4,0,0,0,IT,low
0.76,0.98,2,111,2,0,0,0,IT,low
0.7,0.82,3,178,3,0,0,0,IT,low
0.66,0.46,4,204,4,0,0,0,product_mng,low
0.96,0.72,3,272,3,0,0,0,product_mng,low
0.6,0.77,4,157,4,0,0,0,product_mng,low
0.54,0.94,5,229,3,1,0,0,product_mng,low
0.85,0.9,5,202,3,0,0,0,IT,low
0.96,0.84,3,264,3,0,0,0,RandD,low
0.86,0.62,3,256,3,1,0,0,RandD,low
0.53,0.87,3,151,2,0,0,0,RandD,low
0.91,0.95,3,251,3,0,0,0,RandD,low
0.33,0.7,5,271,4,0,0,0,RandD,low
0.75,0.73,4,274,2,0,0,0,RandD,low
0.97,0.8,3,169,3,0,0,0,marketing,low
0.68,0.51,4,176,4,1,0,0,sales,low
0.68,0.7,5,168,2,0,0,0,accounting,medium
0.57,0.87,4,171,2,0,0,0,support,medium
0.87,0.9,4,214,3,0,0,0,technical,medium
0.5,0.91,5,224,2,1,0,0,management,medium
0.76,0.59,3,191,4,0,0,0,marketing,medium
0.79,0.61,5,96,4,0,0,0,marketing,medium
0.17,0.9,6,217,6,1,0,0,marketing,medium
0.6,0.62,4,135,2,1,0,0,sales,medium
0.89,0.67,3,226,3,0,0,0,sales,medium
0.69,0.87,3,202,2,0,0,0,sales,medium
0.68,0.85,2,180,6,0,0,0,sales,medium
0.61,0.87,5,174,4,0,0,0,sales,medium
0.63,0.5,3,140,2,0,0,0,sales,high
0.5,0.96,4,147,3,0,0,0,sales,low
0.49,0.74,2,263,3,1,0,0,sales,medium
0.83,0.55,5,261,5,0,0,0,sales,medium
0.59,0.71,2,176,2,1,0,0,sales,medium
0.75,0.93,2,98,5,0,0,0,sales,medium
0.66,0.48,3,192,3,1,0,0,sales,low
0.68,0.51,4,157,3,0,0,0,sales,low
0.73,0.58,5,230,3,0,0,0,sales,low
0.98,0.53,4,192,2,1,0,0,sales,low
0.86,0.65,3,161,3,0,0,0,sales,low
0.5,0.55,3,176,3,0,0,0,sales,low
0.76,0.76,3,216,3,0,0,0,sales,low
0.3,0.47,4,176,2,0,0,0,sales,low
0.3,0.86,3,276,5,1,0,0,accounting,low
0.64,0.59,3,174,3,1,0,0,accounting,low
0.59,0.75,3,106,2,0,0,0,accounting,low
0.85,0.63,4,154,3,0,0,0,hr,low
0.76,0.93,3,271,5,0,0,0,hr,low
0.63,0.5,5,246,2,0,0,0,hr,low
0.65,0.86,4,264,2,1,0,0,hr,low
0.43,0.68,3,197,2,0,0,0,technical,low
0.83,0.56,4,165,2,0,0,0,technical,low
0.49,0.77,4,218,2,0,0,0,technical,low
0.67,0.73,3,203,2,0,0,0,technical,low
0.9,0.47,2,107,6,1,0,0,technical,low
0.83,0.96,3,179,2,0,0,0,technical,low
0.92,0.84,5,264,3,0,0,0,technical,medium
0.83,0.7,5,154,3,0,0,0,technical,medium
0.64,0.55,4,167,3,1,0,0,technical,medium
0.93,0.97,4,158,3,1,0,0,technical,medium
0.6,0.87,4,227,3,1,0,0,technical,medium
0.74,0.69,3,230,2,0,0,0,support,medium
0.56,0.75,5,143,5,0,0,0,support,medium
0.61,0.77,4,142,3,0,0,0,support,medium
0.63,0.62,4,184,4,0,0,0,support,medium
0.24,0.62,5,169,4,0,0,0,support,medium
0.17,0.56,5,218,4,1,0,0,support,medium
0.46,0.64,2,121,3,0,0,0,support,medium
0.68,0.48,4,251,4,0,0,0,support,high
0.68,0.6,2,192,6,0,0,0,support,low
0.16,0.71,6,227,5,0,0,0,support,medium
0.15,0.56,6,140,5,0,0,0,support,medium
0.55,0.49,3,152,2,0,0,0,technical,medium
0.72,0.66,4,202,4,0,0,0,technical,medium
0.91,0.89,2,219,4,0,0,0,technical,low
0.3,0.91,4,248,4,0,0,0,management,low
0.56,0.68,5,203,2,0,0,0,IT,low
0.94,0.94,3,255,3,0,0,0,IT,low
0.82,0.63,5,177,3,0,0,0,IT,low
0.66,0.86,5,185,3,0,0,0,IT,low
0.74,0.64,4,101,6,1,0,0,IT,low
0.63,0.5,3,246,3,0,0,0,product_mng,low
0.65,0.42,6,220,2,0,0,0,product_mng,low
0.56,0.81,3,145,2,0,0,0,product_mng,low
0.32,0.73,6,194,5,0,0,0,product_mng,low
0.8,0.9,4,241,2,0,0,0,IT,low
0.34,0.87,6,175,4,0,0,0,RandD,low
0.62,0.71,5,149,2,0,0,0,RandD,low
0.5,0.86,3,253,2,0,0,0,RandD,low
0.58,0.98,5,218,3,0,0,0,RandD,low
0.94,0.9,2,263,3,0,0,0,RandD,low
0.67,0.99,4,247,3,1,0,0,RandD,low
0.2,0.74,6,148,4,0,0,0,marketing,low
0.91,0.59,5,162,2,0,0,0,sales,low
0.91,0.67,2,255,4,0,0,0,accounting,low
0.78,0.87,3,191,3,1,0,0,support,medium
0.82,0.55,3,217,4,1,0,0,technical,medium
0.54,0.96,3,201,3,0,0,0,management,medium
0.53,0.81,3,253,3,0,0,0,marketing,medium
0.47,0.55,4,122,5,1,0,0,marketing,medium
0.87,0.5,3,269,3,0,0,0,marketing,medium
0.5,0.68,4,161,3,0,0,0,sales,medium
0.59,0.83,3,156,2,0,0,0,sales,medium
0.89,0.69,3,173,3,0,0,0,sales,medium
0.54,0.49,4,152,3,1,0,0,sales,medium
0.62,0.85,3,145,3,0,0,0,sales,medium
0.91,0.85,3,248,3,0,0,0,sales,medium
0.84,0.99,2,184,2,0,0,0,sales,high
0.69,0.65,4,232,2,1,0,0,sales,low
0.76,0.63,3,162,2,0,0,0,sales,medium
0.8,0.54,4,269,3,0,0,0,sales,medium
0.4,0.47,5,108,3,0,0,0,sales,medium
0.8,0.99,3,248,3,1,0,0,sales,medium
0.76,0.4,2,122,5,0,0,0,sales,low
0.55,0.9,4,273,2,1,0,0,sales,low
0.98,0.63,3,285,6,0,0,0,sales,low
0.54,0.56,4,227,3,0,0,0,sales,low
0.63,0.56,4,248,2,1,0,0,sales,low
0.88,0.63,3,257,3,0,0,0,sales,low
0.5,0.95,5,194,3,0,0,0,sales,low
0.52,0.72,3,253,3,0,0,0,accounting,low
0.89,0.95,4,141,3,0,0,0,accounting,low
0.55,0.9,4,199,3,0,0,0,accounting,low
0.51,0.81,3,143,2,0,0,0,hr,low
0.35,0.52,5,244,3,0,0,0,hr,low
0.54,0.71,5,173,2,0,0,0,hr,low
0.72,0.84,4,186,3,0,0,0,hr,low
0.61,0.93,2,247,3,0,0,0,technical,low
0.17,0.93,3,218,4,0,0,0,technical,low
0.71,0.88,3,140,2,0,0,0,technical,low
0.88,0.52,4,166,2,0,0,0,technical,low
0.48,1,3,216,2,0,0,0,technical,low
0.16,0.97,6,235,3,0,0,0,technical,low
0.62,0.72,3,188,3,0,0,0,technical,low
0.59,0.47,3,143,2,0,0,0,technical,medium
0.14,0.9,4,198,4,0,0,0,technical,medium
0.96,0.92,4,148,3,0,0,0,technical,medium
0.96,0.42,6,101,4,0,0,0,technical,medium
0.13,0.89,4,249,6,1,0,0,support,medium
0.64,0.61,5,249,3,1,0,0,support,medium
0.64,0.67,5,198,2,1,0,0,support,medium
0.57,0.72,3,202,3,1,0,0,support,medium
0.49,1,3,176,3,0,0,0,support,medium
0.89,0.79,4,133,2,0,0,0,support,medium
0.94,0.75,5,238,2,0,0,0,support,medium
0.51,0.58,2,181,4,0,0,0,support,medium
0.8,0.85,5,242,3,0,0,0,support,high
0.74,0.51,4,185,2,1,0,0,support,low
0.66,0.85,4,237,3,1,0,0,support,medium
0.66,0.99,5,244,3,0,0,0,technical,medium
0.59,0.62,3,178,4,0,0,0,technical,medium
0.91,0.57,3,164,3,0,0,0,technical,medium
0.83,0.98,5,189,4,1,0,0,management,low
0.5,0.91,3,212,2,0,0,0,IT,low
0.69,0.97,4,233,3,0,0,0,IT,low
0.87,0.91,5,268,3,0,0,0,IT,low
0.37,0.43,2,155,2,0,0,0,IT,low
0.9,0.98,4,257,3,0,0,0,IT,low
0.68,0.41,4,254,5,0,0,0,product_mng,low
0.93,0.63,4,143,3,1,0,0,product_mng,low
0.95,0.45,3,225,2,0,0,0,product_mng,low
0.99,1,4,223,2,1,0,0,product_mng,low
0.64,0.9,2,101,6,0,0,0,IT,low
0.96,0.37,2,159,6,0,0,0,RandD,low
0.92,0.54,5,141,2,0,0,0,RandD,low
0.22,0.52,5,147,5,1,0,0,RandD,low
0.82,0.99,5,252,3,1,0,0,RandD,low
0.75,0.89,3,196,3,0,0,0,RandD,low
0.2,0.89,6,244,3,0,0,0,RandD,low
0.64,0.73,3,142,3,0,0,0,marketing,low
0.62,0.9,4,155,4,0,0,0,sales,low
0.73,0.59,3,219,2,0,0,0,accounting,low
0.52,0.51,3,213,4,0,0,0,support,low
0.63,0.67,5,263,3,0,0,0,technical,medium
0.84,0.92,4,274,3,0,0,0,management,medium
0.49,0.96,3,140,3,0,0,0,marketing,medium
0.54,0.78,4,176,2,0,0,0,marketing,medium
0.52,0.78,4,206,2,0,0,0,marketing,medium
0.66,0.63,6,223,6,0,0,0,sales,medium
0.73,0.41,2,231,6,1,0,0,sales,medium
0.54,0.64,3,250,3,0,0,0,sales,medium
0.72,0.68,5,266,4,0,0,0,sales,medium
0.75,0.64,4,247,3,1,0,0,sales,medium
0.77,0.57,3,189,2,0,0,0,sales,medium
0.42,0.94,5,227,5,0,0,0,sales,medium
0.13,0.69,4,127,4,0,0,0,sales,high
0.73,0.88,5,204,5,0,0,0,sales,low
0.5,0.95,5,137,3,0,0,0,sales,medium
0.92,0.62,4,265,3,1,0,0,sales,medium
0.73,0.66,3,135,2,0,0,0,sales,medium
0.74,0.38,2,126,3,0,0,0,sales,medium
0.76,0.78,3,189,2,0,0,0,sales,low
0.53,0.92,3,207,4,1,0,0,sales,low
0.65,0.72,3,134,3,0,0,0,sales,low
0.91,0.85,4,203,2,0,0,0,sales,low
0.69,0.76,5,222,3,1,0,0,sales,low
0.56,0.66,3,232,2,0,0,0,sales,low
0.55,0.81,4,267,5,0,0,0,accounting,low
0.74,0.5,5,131,3,0,0,0,accounting,low
0.86,0.86,3,155,4,0,0,0,accounting,low
0.82,0.74,3,232,3,0,0,0,hr,low
0.35,0.8,3,137,5,0,0,0,hr,low
0.93,0.99,4,136,4,0,0,0,hr,low
0.55,0.77,3,237,2,0,0,0,hr,low
0.99,0.68,4,190,3,0,0,0,technical,low
0.91,0.89,4,144,3,1,0,0,technical,low
0.24,0.65,6,194,3,0,0,0,technical,low
0.77,0.67,3,186,2,0,0,0,technical,low
0.64,0.66,3,218,3,0,0,0,technical,low
0.58,0.76,5,260,2,1,0,0,technical,low
0.65,0.99,4,200,4,0,0,0,technical,low
0.44,0.68,3,140,3,0,0,0,technical,low
0.59,0.75,2,156,3,0,0,0,technical,medium
0.99,0.56,3,193,3,1,0,0,technical,medium
0.75,0.79,4,145,3,0,0,0,technical,medium
0.77,0.49,4,217,2,0,0,0,support,medium
0.85,0.64,4,162,3,0,0,0,support,medium
0.77,0.93,5,182,4,0,0,0,support,medium
0.54,0.95,3,221,3,0,0,0,support,medium
0.69,0.82,4,208,2,0,0,0,support,medium
0.66,0.65,5,161,3,0,0,0,support,medium
0.51,0.65,4,269,3,0,0,0,support,medium
0.74,0.59,4,155,3,0,0,0,support,medium
0.55,0.72,3,110,3,0,0,0,support,medium
0.65,0.84,3,154,3,0,0,0,support,high
0.2,0.77,6,213,4,0,0,0,support,low
0.92,0.94,5,248,3,0,0,0,technical,medium
0.57,0.6,3,202,3,0,0,0,technical,medium
0.75,0.78,2,251,6,0,0,0,technical,medium
0.68,0.84,3,239,2,0,0,0,management,medium
0.97,0.7,3,203,3,0,0,0,IT,low
0.79,0.48,4,184,5,1,0,0,IT,low
0.66,0.75,4,203,3,1,0,0,IT,low
0.96,0.69,3,214,2,1,0,0,IT,low
0.73,0.69,4,161,3,0,0,0,IT,low
0.29,0.58,5,234,2,0,0,0,product_mng,low
0.58,0.56,3,151,2,0,0,0,product_mng,low
0.72,0.58,4,149,3,0,0,0,product_mng,low
0.94,0.87,4,240,3,0,0,0,product_mng,low
0.48,0.56,5,140,2,0,0,0,IT,low
0.6,0.99,3,187,2,0,0,0,RandD,low
0.97,0.58,5,156,2,1,0,0,RandD,low
0.74,0.41,4,250,4,0,0,0,RandD,low
0.97,0.61,3,165,2,0,0,0,RandD,low
0.88,0.67,5,260,3,1,0,0,RandD,low
0.5,0.7,3,274,3,0,0,0,marketing,low
0.93,0.98,4,160,3,0,0,0,sales,low
0.3,0.7,5,280,4,1,0,0,accounting,low
0.69,0.53,3,142,3,0,0,0,support,low
0.69,0.9,2,155,2,0,0,0,technical,low
0.53,0.67,4,167,2,0,0,0,management,low
0.32,0.8,3,263,3,0,0,0,marketing,medium
0.73,0.75,3,259,4,0,0,0,marketing,medium
0.77,0.61,4,223,3,0,0,0,marketing,medium
0.59,0.81,6,123,5,0,0,0,sales,medium
0.19,0.51,5,226,3,0,0,0,sales,medium
0.78,0.95,3,270,2,0,0,0,sales,medium
0.84,0.74,3,139,3,0,0,0,sales,medium
0.65,0.77,5,241,2,0,0,0,sales,medium
0.38,0.43,2,160,6,0,0,0,sales,medium
0.12,0.47,3,258,5,0,0,0,sales,medium
0.74,0.81,5,106,5,0,0,0,sales,medium
0.67,0.82,4,171,2,0,0,0,sales,medium
0.5,0.79,3,186,3,0,0,0,sales,high
0.99,0.39,6,214,5,1,0,0,sales,low
0.79,0.89,4,240,3,0,0,0,sales,medium
0.72,0.51,4,164,3,0,0,0,sales,medium
0.83,0.57,4,232,3,0,0,0,sales,medium
0.69,0.55,5,242,2,0,0,0,sales,medium
0.5,0.89,5,222,3,0,0,0,sales,low
0.82,0.84,3,139,2,1,0,0,sales,low
0.68,0.56,4,272,3,0,0,0,sales,low
0.82,0.69,4,262,2,0,0,0,sales,low
0.32,0.81,2,249,3,0,0,0,accounting,low
0.93,0.86,4,219,3,0,0,0,accounting,low
0.42,0.73,4,208,5,0,0,0,accounting,low
0.22,0.44,3,166,6,0,0,0,hr,low
0.56,0.88,3,174,3,0,0,0,hr,low
0.77,0.75,4,225,3,0,0,0,hr,low
0.29,0.48,2,116,6,1,0,0,hr,low
0.97,0.65,3,219,2,0,0,0,technical,low
0.91,0.7,4,196,2,0,0,0,technical,low
0.52,0.67,4,210,3,1,0,0,technical,low
0.54,0.64,2,219,3,0,0,0,technical,low
0.54,0.98,3,197,3,0,0,0,technical,low
0.67,0.52,2,102,6,0,0,0,technical,low
0.72,0.85,3,186,4,0,0,0,technical,low
0.68,0.51,4,224,2,0,0,0,technical,low
0.65,0.98,3,283,2,1,0,0,technical,low
0.72,0.98,5,197,4,0,0,0,technical,low
0.51,0.79,5,267,3,0,0,0,technical,medium
0.8,0.58,4,172,3,0,0,0,support,medium
0.83,0.93,4,261,2,0,0,0,support,medium
0.15,0.86,3,204,4,0,0,0,support,medium
0.5,0.73,4,237,2,0,0,0,support,medium
0.8,0.55,2,212,3,0,0,0,support,medium
0.96,0.62,4,217,2,0,0,0,support,medium
0.67,0.7,5,159,3,1,0,0,support,medium
0.98,0.96,5,139,3,0,0,0,support,medium
0.88,0.59,5,230,3,0,0,0,support,medium
0.85,0.79,3,157,4,0,0,0,support,medium
0.75,0.7,5,269,3,0,0,0,support,medium
0.38,0.77,2,170,3,0,0,0,technical,high
0.55,0.82,2,197,4,0,0,0,technical,low
0.63,0.89,4,246,3,0,0,0,technical,medium
0.78,0.51,4,278,3,0,0,0,management,medium
0.99,0.84,5,138,2,0,0,0,IT,medium
0.72,0.87,3,238,3,0,0,0,IT,medium
0.14,0.83,5,175,6,1,0,0,IT,low
0.81,0.67,4,216,3,0,0,0,IT,low
0.73,0.86,4,196,4,1,0,0,IT,low
0.58,0.8,5,187,3,1,0,0,product_mng,low
0.24,0.85,4,155,5,0,0,0,product_mng,low
0.31,0.86,3,205,5,0,0,0,product_mng,low
0.74,0.63,3,230,2,0,0,0,product_mng,low
0.86,0.69,5,157,3,0,0,0,IT,low
0.22,0.8,4,287,4,0,0,0,RandD,low
0.66,0.7,4,161,3,0,0,0,RandD,low
0.21,0.76,5,239,2,0,0,0,RandD,low
0.95,0.61,3,267,2,0,0,0,RandD,low
0.24,0.55,5,208,5,0,0,0,RandD,low
0.66,0.95,3,133,3,0,0,0,marketing,low
0.88,0.86,3,187,3,0,0,0,marketing,low
0.67,0.61,4,140,2,0,0,0,sales,low
0.75,0.58,4,270,3,0,0,0,accounting,low
0.93,0.48,3,147,3,0,0,0,support,low
0.64,0.71,3,181,2,0,0,0,technical,low
0.51,0.53,3,156,3,0,0,0,management,low
0.98,0.5,4,207,3,0,0,0,marketing,low
0.72,0.63,4,241,4,1,0,0,marketing,medium
0.51,0.75,4,154,3,0,0,0,marketing,medium
0.54,0.58,4,206,3,0,0,0,sales,medium
0.99,0.76,4,204,2,0,0,0,sales,medium
0.44,0.9,4,117,3,0,0,0,sales,medium
0.74,0.48,5,144,3,0,0,0,sales,medium
0.9,0.77,3,156,3,0,0,0,sales,medium
0.86,0.58,4,211,4,0,0,0,sales,medium
0.66,0.52,3,149,4,1,0,0,sales,medium
0.64,0.96,4,152,5,0,0,0,sales,medium
0.5,0.59,4,192,2,0,0,0,sales,medium
0.88,0.68,4,274,4,0,0,0,sales,medium
0.72,0.47,5,168,6,0,0,0,sales,high
0.53,0.53,4,205,3,0,0,0,sales,low