-
Notifications
You must be signed in to change notification settings - Fork 0
/
hr_data.csv
We can't make this file beautiful and searchable because it's too large.
15000 lines (15000 loc) · 551 KB
/
hr_data.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_level;last_evaluation;number_project;average_montly_hours;time_spend_company;Work_accident;left;promotion_last_5years;sales;salary
;0.53;2;157;3;0;1;0;sales;
0.8;0.86;5;262;6;0;1;0;sales;medium
0.11;;7;272;4;0;1;0;;medium
0.72;0.87;5;223;5;0;1;0;sales;low
0.37;0.52;2;159;3;0;1;0;sales;low
0.41;0.5;2;153;3;0;1;0;sales;low
0.1;0.77;6;247;4;0;1;0;sales;low
0.92;0.85;5;259;5;0;1;0;sales;low
0.89;1;5;224;5;0;1;0;sales;low
0.42;0.53;2;142;3;0;1;0;sales;low
0.45;0.54;2;135;3;0;1;0;sales;low
0.11;0.81;6;305;4;0;1;0;sales;low
0.84;0.92;4;234;5;0;1;0;sales;low
0.41;0.55;2;148;3;0;1;0;sales;low
0.36;0.56;2;137;3;0;1;0;sales;low
0.38;0.54;2;143;3;0;1;0;sales;low
0.45;0.47;2;160;3;0;1;0;sales;low
0.78;0.99;4;255;6;0;1;0;sales;low
0.45;0.51;2;160;3;1;1;1;sales;low
0.76;0.89;5;262;5;0;1;0;sales;low
0.11;0.83;6;282;4;0;1;0;sales;low
0.38;0.55;2;147;3;0;1;0;sales;low
0.09;0.95;6;304;4;0;1;0;sales;low
0.46;0.57;2;139;3;0;1;0;sales;low
0.4;0.53;2;158;3;0;1;0;sales;low
0.89;0.92;5;242;5;0;1;0;sales;low
0.82;0.87;4;239;5;0;1;0;sales;low
0.4;0.49;2;135;3;0;1;0;sales;low
0.41;0.46;2;128;3;0;1;0;accounting;low
0.38;0.5;2;132;3;0;1;0;accounting;low
0.09;0.62;6;294;4;0;1;0;accounting;low
0.45;0.57;2;134;3;0;1;0;hr;low
0.4;0.51;2;145;3;0;1;0;hr;low
0.45;0.55;2;140;3;0;1;0;hr;low
0.84;0.87;4;246;6;0;1;0;hr;low
0.1;0.94;6;255;4;0;1;0;technical;low
0.38;0.46;2;137;3;0;1;0;technical;low
0.45;0.5;2;126;3;0;1;0;technical;
0.11;0.89;6;306;4;0;1;0;technical;
0.41;0.54;2;152;3;0;1;0;technical;
0.87;0.88;5;269;5;0;1;0;technical;
0.45;0.48;2;158;3;0;1;0;technical;
0.4;0.46;2;127;3;0;1;0;technical;
0.1;0.8;7;281;4;0;1;0;technical;
0.09;0.89;6;276;4;0;1;0;technical;
0.84;0.74;3;182;4;0;1;0;technical;
0.4;0.55;2;147;3;0;1;0;support;
0.57;0.7;3;273;6;0;1;0;support;
0.4;0.54;2;148;3;0;1;0;support;
0.43;0.47;2;147;3;0;1;0;support;
0.13;0.78;6;152;2;0;1;0;support;
0.44;0.55;2;135;3;0;1;0;support;
0.38;0.55;2;134;3;0;1;0;support;
0.39;0.54;2;132;3;0;1;0;support;
0.1;0.92;7;307;4;0;1;0;support;
0.37;0.46;2;140;3;0;1;0;support;
0.11;0.94;7;255;4;0;1;0;support;
0.1;0.81;6;309;4;0;1;0;technical;
0.38;0.54;2;128;3;0;1;0;technical;
0.85;1;4;225;5;0;1;0;technical;
0.85;0.91;5;226;5;0;1;0;management;
0.11;0.93;7;308;4;0;1;0;IT;
0.1;0.95;6;244;5;0;1;0;IT;
0.36;0.56;2;132;3;0;1;0;IT;
0.11;0.94;6;286;4;0;1;0;IT;
0.81;0.7;6;161;4;0;1;0;IT;
0.43;0.54;2;153;3;0;1;0;product_mng;
0.9;0.98;4;264;6;0;1;0;product_mng;
0.76;0.86;5;223;5;1;1;0;product_mng;
0.43;0.5;2;135;3;0;1;0;product_mng;
0.74;0.99;2;277;3;0;1;0;IT;
0.09;0.77;5;275;4;0;1;0;product_mng;
0.45;0.49;2;149;3;0;1;0;product_mng;
0.09;0.87;7;295;4;0;1;0;product_mng;
0.11;0.97;6;277;4;0;1;0;product_mng;
0.11;0.79;7;306;4;0;1;0;product_mng;
0.1;0.83;6;295;4;0;1;0;product_mng;
0.4;0.54;2;137;3;0;1;0;marketing;
0.43;0.56;2;157;3;0;1;0;sales;
0.39;0.56;2;142;3;0;1;0;accounting;
0.45;0.54;2;140;3;0;1;0;support;
0.38;0.49;2;151;3;0;1;0;technical;
0.79;0.59;4;139;3;0;1;1;management;
0.84;0.85;4;249;6;0;1;0;marketing;
0.11;0.77;6;291;4;0;1;0;marketing;
0.11;0.87;6;305;4;0;1;0;marketing;
0.17;0.84;5;232;3;0;1;0;sales;
0.44;0.45;2;132;3;0;1;0;sales;
0.37;0.57;2;130;3;0;1;0;sales;
0.1;0.79;6;291;4;0;1;0;sales;
0.4;0.5;2;130;3;0;1;0;sales;
0.89;1;5;246;5;0;1;0;sales;
0.42;0.48;2;143;3;0;1;0;sales;
0.46;0.55;2;129;3;0;1;0;sales;
0.09;0.83;6;255;4;0;1;0;sales;
0.37;0.51;2;155;3;0;1;0;sales;
0.1;0.77;6;265;4;0;1;0;sales;
0.1;0.84;6;279;4;0;1;0;sales;
0.11;0.97;6;284;4;0;1;0;sales;
0.9;1;5;221;6;0;1;0;sales;
0.38;0.52;2;154;3;0;1;0;sales;
0.36;0.52;2;147;3;0;1;0;sales;
0.42;0.46;2;150;3;0;1;0;sales;
0.09;0.94;7;267;4;0;1;0;sales;
0.43;0.52;2;158;3;0;1;0;sales;
0.24;0.46;7;224;5;0;1;0;accounting;
0.91;1;4;257;5;0;1;0;accounting;
0.44;0.5;2;148;3;0;1;0;accounting;
0.71;0.87;3;177;4;0;1;0;hr;
0.4;0.49;2;155;3;0;1;0;hr;
0.43;0.47;2;144;3;0;1;0;hr;
0.09;0.85;6;289;4;0;1;0;hr;
0.43;0.52;2;160;3;0;1;0;technical;
0.9;0.96;4;258;5;0;1;0;technical;
0.84;1;5;234;5;0;1;0;technical;
0.37;0.48;2;137;3;0;1;0;technical;
0.86;0.68;5;263;2;0;1;0;technical;
0.11;0.84;6;251;4;0;1;0;technical;
0.37;0.57;2;133;3;0;1;0;technical;
0.4;0.46;2;132;3;0;1;0;technical;
0.14;0.62;4;158;4;1;1;0;technical;
0.4;0.46;2;135;3;0;1;0;technical;
0.75;1;4;216;6;0;1;0;technical;
0.11;0.84;6;300;5;1;1;0;support;
0.46;0.49;2;138;3;0;1;0;support;
0.11;0.92;6;260;4;0;1;0;support;
0.38;0.49;2;132;3;0;1;0;support;
0.7;0.89;3;183;5;0;1;0;support;
0.09;0.82;6;250;4;0;1;0;support;
0.37;0.45;2;151;3;0;1;0;support;
0.1;0.83;6;292;4;0;1;0;support;
0.38;0.57;2;140;3;0;1;0;support;
0.9;1;5;221;5;0;1;0;support;
0.44;0.51;2;138;3;0;1;0;support;
0.36;0.5;2;132;3;0;1;0;technical;
0.31;0.84;7;133;5;0;1;0;technical;
0.1;0.84;6;283;4;1;1;0;technical;
0.42;0.48;2;129;3;0;1;0;management;
0.74;1;4;249;5;0;1;0;IT;
0.73;0.87;5;257;5;0;1;0;IT;
0.09;0.96;6;245;4;0;1;0;IT;
0.45;0.53;2;155;3;0;1;0;IT;
0.11;0.8;6;256;4;0;1;0;IT;
0.37;0.47;2;152;3;0;1;0;product_mng;
0.84;0.99;4;267;5;0;1;0;product_mng;
0.41;0.46;2;151;3;0;1;0;product_mng;
0.76;0.92;4;239;5;0;1;0;product_mng;low
0.11;0.87;6;306;4;0;1;0;IT;low
0.84;0.88;4;263;5;1;1;0;marketing;low
0.39;0.5;2;147;3;0;1;0;marketing;low
0.11;0.91;6;278;4;0;1;0;marketing;low
0.45;0.56;2;154;3;0;1;0;marketing;low
0.37;0.52;2;143;3;0;1;0;marketing;low
0.4;0.52;2;155;3;0;1;0;marketing;low
0.39;0.48;2;160;3;0;1;0;sales;low
0.11;0.8;6;304;4;0;1;0;accounting;low
0.83;1;5;240;5;0;1;0;support;low
0.11;0.92;6;305;4;0;1;0;technical;low
0.39;0.5;2;136;3;0;1;0;management;low
0.45;0.45;2;132;3;0;1;0;marketing;low
0.1;0.95;7;301;4;0;1;0;marketing;low
0.9;0.98;5;243;6;0;1;0;marketing;low
0.45;0.51;2;147;3;0;1;0;sales;low
0.79;0.89;5;239;5;0;1;0;sales;low
0.9;0.99;5;260;5;0;1;0;sales;low
0.11;0.84;7;296;4;0;1;0;sales;low
0.43;0.55;2;129;3;0;1;0;sales;low
0.31;0.54;5;132;5;0;1;0;sales;low
0.32;0.5;2;135;5;0;1;0;sales;low
0.45;0.57;2;158;3;0;1;0;sales;low
0.81;0.99;4;259;5;0;1;0;sales;low
0.41;0.46;2;160;3;0;1;1;sales;low
0.11;0.78;7;278;4;0;1;0;sales;low
0.1;0.88;6;284;4;0;1;0;sales;low
0.7;0.53;2;274;4;0;1;0;sales;low
0.54;0.74;4;164;2;0;1;0;sales;low
0.41;0.48;2;148;3;0;1;0;sales;low
0.38;0.5;2;140;3;0;1;0;sales;medium
0.37;0.51;2;127;3;0;1;0;sales;medium
0.11;0.85;6;308;5;0;1;0;sales;medium
0.4;0.47;2;146;3;0;1;0;sales;medium
0.1;0.84;6;261;4;0;1;0;accounting;medium
0.89;0.99;5;257;5;0;1;0;accounting;medium
0.11;0.8;6;285;4;0;1;0;accounting;medium
0.36;0.55;2;141;3;0;1;0;hr;medium
0.4;0.46;2;127;3;0;1;0;hr;medium
0.09;0.85;6;297;4;0;1;0;hr;medium
0.4;0.46;2;143;3;0;1;0;hr;medium
0.37;0.55;2;152;3;0;1;0;technical;medium
0.44;0.51;2;156;3;0;1;0;technical;high
0.09;0.8;7;283;5;0;1;0;technical;low
0.92;0.87;4;226;6;1;1;0;technical;medium
0.74;0.91;4;232;5;0;1;0;technical;medium
0.09;0.82;6;249;4;0;1;0;technical;medium
0.89;0.95;4;275;5;0;1;0;technical;medium
0.09;0.8;6;304;4;0;1;0;technical;low
0.27;0.54;7;278;3;0;1;0;technical;low
0.1;0.91;6;287;4;0;1;0;technical;low
0.1;0.89;7;285;4;0;1;0;technical;low
0.77;0.94;5;226;6;0;1;0;support;low
0.9;0.82;5;259;5;0;1;0;support;low
0.39;0.5;2;135;3;0;1;0;support;low
0.76;1;5;219;5;0;1;0;support;low
0.1;0.93;6;256;4;0;1;0;support;low
0.87;0.9;5;254;6;0;1;0;support;low
0.38;0.5;2;153;3;0;1;0;support;low
0.77;0.99;5;228;5;0;1;0;support;low
0.78;0.87;4;228;5;0;1;0;support;low
0.44;0.5;2;128;3;0;1;0;support;low
0.38;0.52;2;153;3;0;1;0;support;low
0.43;0.46;2;156;3;0;1;0;technical;low
0.39;0.5;4;294;3;0;1;0;technical;low
0.88;1;5;219;5;0;1;0;technical;low
0.45;0.46;2;153;3;0;1;0;management;low
0.4;0.53;2;151;3;0;1;0;IT;low
0.36;0.51;2;155;3;0;1;0;IT;low
0.36;0.48;2;158;3;0;1;0;IT;low
0.9;0.98;5;245;5;0;1;0;IT;low
0.43;0.53;2;131;3;0;1;0;IT;low
0.89;0.87;5;225;5;0;1;0;product_mng;low
0.1;0.84;6;286;4;0;1;0;product_mng;low
0.37;0.5;2;135;3;0;1;0;product_mng;low
0.37;0.51;2;153;3;0;1;0;product_mng;low
0.87;0.9;5;252;5;0;1;0;IT;low
0.4;0.56;2;149;3;0;1;0;accounting;low
0.9;0.97;4;258;5;0;1;0;accounting;low
0.37;0.46;2;158;3;0;1;0;hr;low
0.44;0.54;2;149;3;0;1;0;hr;low
0.85;0.95;5;236;5;0;1;0;hr;low
0.78;0.98;5;239;6;0;1;0;marketing;low
0.42;0.47;2;159;3;0;1;0;marketing;low
0.92;0.99;5;255;6;0;1;0;sales;low
0.11;0.83;6;244;4;0;1;0;accounting;low
0.42;0.56;2;134;3;0;1;0;support;low
0.48;0.57;4;270;4;0;1;0;technical;low
0.83;0.85;4;255;5;0;1;0;management;low
0.4;0.53;2;151;3;0;1;0;marketing;low
0.43;0.45;2;135;3;0;1;0;marketing;low
0.43;0.53;2;146;3;0;1;0;marketing;low
0.1;0.97;7;254;4;0;1;0;sales;low
0.1;0.87;7;289;4;0;1;0;sales;low
0.37;0.46;2;156;3;0;1;0;sales;low
0.38;0.53;2;156;3;0;1;0;sales;low
0.4;0.5;2;128;3;0;1;0;sales;low
0.89;0.86;5;275;5;0;1;0;sales;low
0.45;0.46;2;155;3;0;1;0;sales;low
0.37;0.48;2;159;3;0;1;0;sales;low
0.46;0.49;2;148;3;0;1;0;sales;low
0.87;0.91;4;228;5;0;1;0;sales;low
0.11;0.84;6;298;4;0;1;0;sales;low
0.79;0.87;5;261;5;0;1;0;sales;low
0.79;0.92;5;254;6;0;1;0;sales;low
0.19;0.59;7;192;3;0;1;0;sales;low
0.87;0.98;4;248;5;0;1;0;sales;low
0.6;0.92;2;258;5;0;1;0;sales;low
0.44;0.45;2;156;3;0;1;0;sales;medium
0.11;0.81;6;266;4;1;1;0;sales;medium
0.42;0.54;2;156;3;0;1;0;sales;medium
0.88;0.88;5;232;5;1;1;0;accounting;medium
0.11;0.84;6;287;4;0;1;0;accounting;medium
0.46;0.46;2;154;3;0;1;0;accounting;medium
0.82;0.97;5;263;5;0;1;0;hr;medium
0.44;0.56;2;131;3;0;1;0;hr;medium
0.11;0.78;6;260;4;0;1;0;hr;medium
0.42;0.5;2;139;3;0;1;0;hr;medium
0.84;0.93;4;251;5;0;1;0;technical;medium
0.11;0.95;6;286;4;0;1;0;technical;medium
0.45;0.53;2;129;3;0;1;0;technical;high
0.38;0.56;2;156;3;0;1;0;technical;low
0.38;0.86;6;139;6;0;1;0;technical;medium
0.44;0.51;2;127;3;0;1;0;technical;medium
0.11;0.84;6;251;4;0;1;0;technical;medium
0.81;0.93;5;270;5;0;1;0;technical;medium
0.09;0.96;6;296;4;0;1;0;technical;low
0.11;0.9;6;254;4;0;1;0;technical;low
0.81;0.95;5;238;6;0;1;0;technical;low
0.1;0.97;6;267;4;1;1;0;support;low
0.74;0.89;5;229;6;0;1;0;support;low
0.09;0.78;6;254;4;0;1;0;support;low
0.82;0.81;4;233;4;1;1;0;support;low
0.1;0.98;6;268;4;0;1;0;support;low
0.27;0.56;3;301;3;0;1;0;support;low
0.83;0.92;5;267;6;0;1;0;support;low
0.1;0.93;6;289;4;1;1;0;support;low
0.38;0.47;2;144;3;0;1;0;support;low
0.4;0.56;2;148;3;0;1;0;support;low
0.11;0.83;6;306;4;0;1;0;support;low
0.11;0.79;6;292;4;0;1;1;technical;low
0.82;0.91;5;232;5;0;1;0;technical;low
0.36;0.48;2;137;3;0;1;0;technical;low
0.4;0.46;2;128;3;0;1;0;management;low
0.87;0.84;5;231;5;0;1;0;IT;low
0.41;0.49;2;146;3;0;1;0;IT;low
0.11;0.91;6;308;4;1;1;0;IT;low
0.1;0.93;6;253;4;0;1;0;IT;medium
0.38;0.51;2;146;3;0;1;0;IT;medium
0.39;0.55;2;156;3;0;1;0;product_mng;medium
0.4;0.52;2;147;3;0;1;0;product_mng;medium
0.45;0.48;2;136;3;0;1;0;product_mng;medium
0.74;0.84;5;249;5;0;1;0;product_mng;medium
0.45;0.55;2;151;3;0;1;0;IT;medium
0.12;1;3;278;4;0;1;0;RandD;medium
0.1;0.77;7;250;5;0;1;0;RandD;medium
0.37;0.55;2;127;3;0;1;0;RandD;medium
0.89;0.87;5;255;5;0;1;0;RandD;medium
0.45;0.47;2;135;3;0;1;0;RandD;medium
0.37;0.46;2;149;3;0;1;0;marketing;high
0.11;0.81;5;287;4;0;1;0;sales;low
0.41;0.48;2;145;3;0;1;0;accounting;medium
0.1;0.94;6;285;4;0;1;0;support;medium
0.1;0.93;7;305;4;0;1;0;technical;medium
0.11;0.95;7;300;4;0;1;0;management;medium
0.4;0.54;2;139;3;0;1;0;marketing;low
0.41;0.49;2;130;3;0;1;0;marketing;low
0.1;0.81;6;268;4;0;1;0;marketing;low
0.73;0.86;4;245;6;0;1;0;sales;low
0.43;0.47;2;135;3;0;1;0;sales;low
0.37;0.46;2;153;3;0;1;0;sales;low
0.11;0.94;6;276;4;0;1;0;sales;low
0.4;0.46;2;130;3;0;1;0;sales;low
0.41;0.54;2;153;3;1;1;0;sales;low
0.82;0.84;5;244;5;0;1;0;sales;low
0.61;0.47;2;253;3;0;1;0;sales;low
0.11;0.91;7;287;4;0;1;0;sales;low
0.37;0.45;2;131;3;0;1;0;sales;low
0.41;0.52;2;135;3;0;1;0;sales;low
0.37;0.52;2;157;3;0;1;0;sales;low
0.88;0.99;5;262;6;0;1;0;sales;low
0.1;0.85;6;266;4;0;1;0;sales;low
0.44;0.48;2;148;3;0;1;0;sales;low
0.38;0.57;2;140;3;0;1;0;sales;low
0.11;0.85;7;302;4;0;1;0;sales;low
0.09;0.98;6;271;4;0;1;0;sales;low
0.45;0.52;2;145;3;0;1;0;sales;medium
0.1;0.81;6;290;4;0;1;0;accounting;medium
0.45;0.47;2;151;3;0;1;0;accounting;medium
0.77;0.87;5;266;5;0;1;0;accounting;medium
0.44;0.51;2;140;3;0;1;0;hr;medium
0.39;0.5;2;142;3;0;1;0;hr;medium
0.1;0.91;6;246;4;0;1;0;hr;medium
0.09;0.89;7;308;5;0;1;0;hr;medium
0.37;0.47;2;141;3;0;1;0;technical;medium
0.9;1;5;232;5;0;1;0;technical;medium
0.41;0.56;2;143;3;0;1;0;technical;medium
0.37;0.52;2;155;3;0;1;0;technical;medium
0.1;0.86;6;278;4;0;1;0;technical;high
0.81;1;4;253;5;0;1;0;technical;low
0.11;0.8;6;282;4;0;1;0;technical;medium
0.11;0.84;7;264;4;0;1;0;technical;medium
0.4;0.46;2;149;3;0;1;0;technical;medium
0.09;0.8;6;304;5;0;1;0;technical;medium
0.48;0.93;3;219;6;0;1;0;technical;low
0.91;0.91;4;262;6;0;1;0;support;low
0.43;0.57;2;135;3;0;1;0;support;low
0.33;0.88;6;219;5;0;1;0;support;low
0.41;0.57;2;136;3;0;1;0;support;low
0.41;0.55;2;154;3;0;1;0;support;low
0.37;0.54;2;149;3;0;1;0;support;low
0.31;0.62;6;135;5;0;1;0;support;low
0.09;0.91;6;275;4;0;1;0;support;low
0.1;0.87;6;290;4;0;1;0;support;low
0.76;0.9;4;263;5;0;1;0;support;low
0.41;0.54;2;145;3;0;1;0;support;low
0.72;0.96;5;267;5;0;1;0;technical;low
0.4;0.5;2;141;3;1;1;0;technical;low
0.91;0.87;4;235;5;0;1;0;technical;low
0.1;0.83;6;258;4;0;1;0;management;low
0.4;0.56;2;131;3;0;1;0;IT;low
0.82;0.86;5;243;5;0;1;0;IT;low
0.1;0.82;6;266;4;0;1;0;IT;low
0.37;0.45;2;142;3;0;1;0;IT;low
0.36;0.51;2;135;3;0;1;0;IT;low
0.39;0.48;2;141;3;0;1;0;product_mng;medium
0.36;0.57;2;142;3;0;1;0;product_mng;medium
0.86;0.84;5;254;5;0;1;0;product_mng;medium
0.73;0.99;5;262;5;0;1;0;product_mng;medium
0.56;0.71;4;296;2;0;1;0;IT;medium
0.44;0.56;2;158;3;0;1;0;accounting;medium
0.31;0.56;4;238;2;0;1;0;accounting;medium
0.77;0.93;4;231;5;0;1;0;hr;medium
0.44;0.45;2;156;3;0;1;0;hr;medium
0.38;0.46;2;145;3;0;1;0;hr;medium
0.45;0.48;2;144;3;0;1;0;marketing;medium
0.38;0.51;2;159;3;0;1;0;sales;medium
0.36;0.48;2;156;3;0;1;0;accounting;high
0.75;0.9;5;256;5;0;1;0;support;low
0.1;0.93;6;298;4;0;1;0;technical;medium
0.1;0.97;6;247;4;0;1;0;management;medium
0.45;0.5;2;157;3;0;1;0;marketing;medium
0.42;0.57;2;154;3;1;1;0;marketing;medium
0.78;1;4;253;5;0;1;0;marketing;low
0.45;0.55;2;148;3;0;1;0;sales;low
0.84;1;4;261;5;0;1;0;sales;low
0.11;0.93;6;282;4;0;1;0;sales;low
0.42;0.56;2;133;3;0;1;0;sales;low
0.45;0.46;2;128;3;0;1;0;sales;low
0.46;0.57;2;139;3;0;1;0;sales;low
0.09;0.79;6;293;5;0;1;0;sales;low
0.87;0.83;4;265;6;0;1;0;sales;low
0.1;0.87;6;250;4;0;1;0;sales;low
0.91;1;5;251;6;0;1;0;sales;low
0.76;0.92;4;246;5;0;1;0;sales;low
0.74;1;5;275;5;0;1;0;sales;low
0.92;0.93;5;240;5;0;1;0;sales;low
0.76;0.87;5;245;5;0;1;0;sales;low
0.47;0.5;4;254;4;0;1;0;sales;low
0.73;0.99;5;241;5;0;1;0;sales;low
0.09;0.94;6;257;4;0;1;0;sales;low
0.91;0.92;4;246;5;0;1;0;sales;low
0.82;0.98;4;233;5;0;1;0;sales;low
0.28;0.45;6;218;4;0;1;0;accounting;low
0.84;0.99;4;262;6;0;1;0;accounting;medium
0.45;0.53;2;138;3;0;1;0;accounting;medium
0.45;0.54;2;142;3;0;1;0;hr;medium
0.91;0.97;5;233;5;0;1;0;hr;medium
0.42;0.48;2;155;3;0;1;0;hr;medium
0.82;1;4;229;6;0;1;0;hr;medium
0.11;0.9;6;264;4;0;1;0;technical;medium
0.42;0.53;3;199;4;0;1;0;technical;medium
0.82;0.85;4;223;5;0;1;0;technical;medium
0.09;0.96;6;268;4;0;1;0;technical;medium
0.1;0.94;6;287;4;0;1;0;technical;medium
0.86;1;5;257;5;0;1;0;technical;medium
0.4;0.46;2;143;3;0;1;0;technical;high
0.45;0.46;2;130;3;0;1;0;technical;low
0.42;0.51;2;136;3;0;1;0;technical;medium
0.74;0.92;4;261;5;0;1;0;technical;medium
0.55;0.6;3;180;4;0;1;0;technical;medium
0.37;0.45;2;126;3;0;1;0;support;medium
0.41;0.52;2;127;3;1;1;0;support;low
0.89;0.65;5;195;6;0;1;0;support;low
0.41;0.57;2;160;3;0;1;0;support;low
0.44;0.51;2;150;3;0;1;0;support;low
0.87;0.84;4;264;6;0;1;0;support;low
0.1;0.84;6;309;4;0;1;0;support;low
0.41;0.47;2;135;3;0;1;0;support;low
0.11;0.85;6;261;4;0;1;0;support;low
0.43;0.53;2;160;3;0;1;0;support;low
0.77;0.9;4;237;5;0;1;0;support;low
0.41;0.52;2;136;3;0;1;0;technical;low
0.41;0.48;2;139;3;0;1;0;technical;low
0.36;0.78;2;151;4;0;1;0;technical;low
0.77;1;5;229;5;0;1;0;management;low
0.81;0.98;5;245;5;0;1;0;IT;low
0.39;0.54;2;127;3;0;1;0;IT;low
0.09;0.94;6;283;5;0;1;0;IT;low
0.44;0.46;2;143;3;0;1;0;IT;low
0.1;0.84;5;298;4;0;1;0;IT;low
0.36;0.48;2;159;3;0;1;0;product_mng;low
0.81;0.92;5;239;5;0;1;0;product_mng;low
0.81;0.9;4;226;5;0;1;0;product_mng;medium
0.85;0.98;5;248;5;0;1;0;product_mng;medium
0.1;0.87;6;286;4;0;1;0;IT;medium
0.37;0.54;2;145;3;0;1;0;RandD;medium
0.09;0.97;7;254;4;1;1;0;RandD;medium
0.44;0.53;2;127;3;0;1;0;RandD;medium
0.86;0.93;5;223;5;0;1;0;RandD;medium
0.77;1;4;255;5;0;1;0;RandD;medium
0.41;0.48;2;136;3;0;1;0;marketing;medium
0.4;0.48;2;137;3;0;1;0;sales;medium
0.43;0.49;2;135;3;0;1;0;accounting;medium
0.43;0.5;2;137;3;0;1;0;support;medium
0.8;0.53;3;255;5;0;1;0;technical;high
0.8;0.85;4;273;5;0;1;0;management;low
0.82;0.98;5;234;5;0;1;0;marketing;medium
0.37;0.54;2;152;3;0;1;0;marketing;medium
0.37;0.48;2;134;3;0;1;0;marketing;medium
0.09;0.95;6;292;4;0;1;0;sales;medium
0.9;0.92;5;245;5;0;1;0;sales;low
0.41;0.52;2;159;3;0;1;0;sales;low
0.1;0.85;6;260;4;0;1;0;sales;low
0.44;0.53;2;149;3;0;1;0;sales;low
0.89;0.85;5;266;5;0;1;0;sales;low
0.42;0.56;2;149;3;0;1;0;sales;low
0.87;1;5;242;5;0;1;0;sales;low
0.45;0.57;2;134;3;0;1;0;sales;low
0.11;0.87;5;271;4;0;1;0;sales;low
0.09;0.79;6;275;4;0;1;0;sales;low
0.76;0.83;5;227;5;0;1;0;sales;low
0.11;0.96;7;277;5;0;1;0;sales;low
0.37;0.49;2;151;3;0;1;0;sales;low
0.1;0.79;6;274;4;0;1;0;sales;low
0.77;0.87;4;242;6;0;1;0;sales;low
0.42;0.54;2;143;3;1;1;0;sales;low
0.38;0.52;2;145;3;0;1;0;sales;low
0.32;0.95;5;172;2;0;1;0;sales;low
0.38;0.49;2;135;3;0;1;0;accounting;low
0.19;1;4;192;4;0;1;0;accounting;low
0.1;0.83;7;276;4;0;1;0;accounting;low
0.76;0.88;4;206;4;0;1;0;hr;medium
0.53;0.56;4;281;6;0;1;0;hr;medium
0.39;0.51;2;151;3;0;1;0;hr;medium
0.11;0.83;6;244;4;0;1;0;hr;medium
0.1;0.94;6;309;4;0;1;0;technical;medium
0.84;1;5;218;5;0;1;0;technical;medium
0.82;0.99;4;263;6;0;1;0;technical;medium
0.1;0.82;6;244;4;0;1;0;technical;medium
0.59;0.49;7;263;4;0;1;0;technical;medium
0.44;0.48;2;143;3;0;1;0;technical;medium
0.89;0.95;2;181;5;0;1;0;technical;medium
0.91;0.84;5;265;5;0;1;0;technical;medium
0.66;0.57;5;161;5;0;1;0;technical;high
0.11;0.87;7;282;5;0;1;0;technical;low
0.43;0.51;2;155;3;0;1;0;technical;medium
0.78;0.83;4;217;6;0;1;0;support;medium
0.11;0.97;6;289;5;0;1;0;support;medium
0.83;0.98;4;259;5;0;1;0;support;medium
0.39;0.54;2;158;3;0;1;0;support;low
0.38;0.55;2;158;3;0;1;0;support;low
0.37;0.57;2;155;3;0;1;0;support;low
0.44;0.48;2;146;3;0;1;0;support;low
0.53;0.85;2;164;5;0;1;0;support;low
0.09;0.96;6;259;4;0;1;0;support;low
0.11;0.89;6;293;4;0;1;0;support;low
0.83;0.96;5;275;5;0;1;0;support;low
0.88;1;5;219;6;1;1;0;technical;low
0.1;0.89;6;247;4;0;1;0;technical;low
0.09;0.86;7;309;4;0;1;0;technical;low
0.44;0.54;2;151;3;0;1;0;management;low
0.39;0.51;2;129;3;0;1;0;IT;low
0.87;0.94;4;274;5;0;1;0;IT;low
0.74;0.99;4;233;5;0;1;0;IT;low
0.1;0.95;7;289;4;0;1;0;IT;low
0.74;0.82;4;239;6;0;1;0;IT;low
0.75;0.99;5;221;5;0;1;0;product_mng;low
0.41;0.56;2;150;3;0;1;0;product_mng;low
0.41;0.45;2;144;3;1;1;0;product_mng;low
0.09;0.9;7;289;4;0;1;0;product_mng;low
0.09;0.8;6;301;5;0;1;0;IT;medium
0.39;0.57;2;145;3;0;1;0;accounting;medium
0.4;0.56;2;137;3;0;1;0;accounting;medium
0.37;0.54;2;131;3;1;1;0;hr;medium
0.1;0.84;6;246;4;0;1;0;hr;medium
0.43;0.51;2;136;3;0;1;0;hr;medium
0.75;0.85;5;240;6;1;1;0;marketing;medium
0.37;0.56;2;156;3;0;1;0;sales;medium
0.11;0.85;6;305;4;0;1;0;accounting;medium
0.45;0.45;2;154;3;1;1;0;support;medium
0.87;1;5;261;5;1;1;0;technical;medium
0.11;0.94;7;244;4;0;1;0;management;medium
0.45;0.54;2;129;3;0;1;0;marketing;high
0.81;0.87;4;254;5;0;1;0;marketing;low
0.77;0.91;5;236;5;0;1;0;marketing;medium
0.89;0.92;5;237;5;0;1;0;sales;medium
0.43;0.49;2;135;3;0;1;0;sales;medium
0.78;1;5;236;5;0;1;0;sales;medium
0.37;0.47;2;149;3;0;1;0;sales;low
0.37;0.5;2;141;3;0;1;0;sales;low
0.85;0.82;4;270;5;0;1;0;sales;low
0.41;0.47;2;138;3;0;1;0;sales;low
0.11;0.96;6;298;4;0;1;0;sales;low
0.75;0.99;5;254;5;0;1;0;sales;low
0.82;0.85;5;248;5;0;1;0;sales;low
0.79;1;5;257;6;0;1;0;sales;low
0.43;0.53;2;150;3;0;1;0;sales;low
0.1;0.9;7;281;4;0;1;0;sales;low
0.46;0.48;2;141;3;1;1;0;sales;low
0.43;0.57;2;157;3;0;1;0;sales;low
0.43;0.55;2;136;3;0;1;0;sales;low
0.11;0.8;7;296;4;0;1;0;sales;low
0.09;0.86;6;279;4;0;1;0;sales;low
0.37;0.53;2;131;3;0;1;0;sales;low
0.4;0.57;2;160;3;0;1;0;accounting;low
0.1;0.77;7;291;4;0;1;0;accounting;low
0.41;0.53;2;157;3;0;1;0;accounting;low
0.79;0.58;3;294;4;0;1;0;hr;low
0.11;0.79;7;310;4;0;1;0;hr;low
0.1;0.97;6;282;4;0;1;0;hr;medium
0.44;0.51;2;134;3;0;1;0;hr;medium
0.25;0.46;4;214;4;0;1;0;technical;medium
0.44;0.52;2;137;3;0;1;0;technical;medium
0.73;1;4;252;5;0;1;0;technical;medium
0.75;0.97;5;243;6;0;1;0;technical;medium
0.36;0.47;2;148;3;0;1;0;technical;medium
0.37;0.49;2;151;3;0;1;0;technical;medium
0.39;0.49;2;129;3;0;1;0;technical;medium
0.48;0.78;2;198;2;0;1;0;technical;medium
0.57;0.72;4;275;6;0;1;0;;medium
0.9;0.96;5;243;5;0;1;0;;medium
0.39;0.55;2;159;3;0;1;0;;high
0.44;0.51;2;145;3;0;1;0;;low
0.81;0.88;5;242;5;0;1;0;;medium
0.74;0.87;5;242;5;0;1;0;;medium
0.44;0.56;2;145;3;0;1;0;;medium
0.41;0.56;2;154;3;0;1;1;;medium
0.4;0.51;2;139;3;0;1;0;;low
0.46;0.57;2;152;3;0;1;0;;low
0.8;0.83;2;211;3;0;1;0;;low
0.87;0.9;5;258;5;0;1;0;;low
0.39;0.54;2;155;3;0;1;0;;low
0.38;0.55;2;148;3;0;1;0;;low
0.66;0.67;2;255;3;0;1;0;;low
0.1;0.8;6;264;4;0;1;0;;low
0.37;0.54;2;132;3;0;1;0;;low
0.1;0.77;6;255;4;0;1;0;;low
0.09;0.87;5;263;4;0;1;0;;low
0.86;0.84;5;222;5;0;1;0;;low
0.11;0.9;6;263;4;0;1;0;;low
0.37;0.46;2;157;3;0;1;0;;low
0.11;0.92;7;307;4;0;1;0;;low
0.77;0.98;5;259;6;0;1;0;;low
0.84;0.94;5;222;6;0;1;0;;low
0.1;0.84;7;250;4;0;1;0;;low
0.83;0.9;5;245;5;0;1;0;;low
0.11;0.79;6;292;4;0;1;0;;low
0.86;0.92;5;252;5;0;1;0;;low
0.38;0.56;2;161;3;0;1;0;;medium
0.11;0.88;5;250;4;0;1;0;;medium
0.45;0.49;2;134;3;0;1;0;;medium
0.1;0.85;7;279;4;0;1;0;;medium
0.09;0.95;7;256;4;0;1;0;;medium
0.39;0.53;2;127;3;0;1;0;;medium
0.37;0.47;2;138;3;1;1;0;;medium
0.81;0.97;5;243;5;0;1;0;;medium
0.09;0.9;7;296;4;0;1;0;;medium
0.1;0.88;7;267;4;0;1;0;;medium
0.39;0.49;2;144;3;0;1;0;;medium
0.83;0.95;4;251;5;0;1;0;;medium
0.45;0.57;2;148;3;0;1;0;;high
0.43;0.51;2;141;3;0;1;0;;low
0.8;0.75;3;268;2;0;1;0;;medium
0.1;0.86;6;247;4;0;1;0;;medium
0.1;0.55;2;247;4;0;1;0;;medium
0.36;0.52;2;146;3;0;1;0;;medium
0.38;0.5;2;140;3;0;1;0;;low
0.78;0.98;5;263;6;0;1;0;;low
0.44;0.49;2;145;3;0;1;0;;low
0.41;0.46;2;156;3;1;1;0;;low
0.72;0.85;5;244;6;0;1;0;;low
0.46;0.54;2;144;3;0;1;0;;low
0.1;0.9;7;286;4;0;1;0;;low
0.34;0.67;4;141;2;0;1;0;;low
0.11;0.89;6;260;5;0;1;0;;low
0.38;0.56;2;154;3;0;1;0;;low
0.82;0.92;5;225;5;0;1;0;;low
0.39;0.57;2;127;3;0;1;0;;low
0.44;0.53;2;140;3;0;1;0;;low
0.43;0.52;2;147;3;0;1;0;;low
0.84;0.83;4;227;5;0;1;0;;low
0.43;0.48;2;153;3;0;1;0;;low
0.37;0.52;2;128;3;0;1;0;;low
0.74;0.97;4;228;5;0;1;0;;low
0.73;0.97;5;235;5;0;1;0;;low
0.37;0.47;2;148;3;0;1;0;;low
0.58;0.62;4;238;3;0;1;0;;low
0.4;0.54;2;141;3;0;1;0;;medium
0.51;0.83;5;249;4;0;1;0;;medium
0.46;0.5;2;151;3;0;1;0;;medium
0.45;0.54;2;129;3;0;1;0;;medium
0.46;0.5;2;156;3;0;1;0;;medium
0.39;0.45;2;134;3;0;1;0;;medium
0.09;0.88;6;269;4;0;1;0;;medium
0.09;0.77;6;290;4;0;1;0;;medium
0.37;0.51;2;132;3;0;1;0;;medium
0.1;0.89;7;308;4;0;1;0;;medium
0.77;1;4;232;5;0;1;0;;medium
0.79;0.86;5;235;5;0;1;0;;medium
0.43;0.55;2;130;3;0;1;0;;high
0.38;0.53;2;146;3;0;1;0;;low
0.77;0.91;5;221;6;0;1;0;;medium
0.44;0.5;2;130;3;0;1;0;;medium
0.39;0.46;2;136;3;0;1;0;;medium
0.78;0.89;5;274;6;0;1;0;;medium
0.1;0.79;6;256;5;0;1;0;;low
0.1;0.77;5;276;4;0;1;0;;low
0.75;0.85;5;267;5;0;1;0;;low
0.46;0.62;6;213;3;0;1;0;;low
0.91;0.97;4;274;6;0;1;0;;low
0.1;0.92;6;258;4;0;1;0;;low
0.72;0.6;3;153;5;0;1;0;;low
0.11;0.95;6;245;4;0;1;0;;low
0.11;0.94;6;264;4;0;1;0;;low
0.46;0.57;2;154;3;0;1;0;;low
0.37;0.46;2;149;3;0;1;0;;low
0.46;0.5;2;157;3;0;1;0;;low
0.43;0.57;2;127;3;0;1;0;;low
0.11;0.82;6;270;4;0;1;0;;low
0.73;0.89;5;236;6;0;1;0;;low
0.43;0.47;2;158;3;0;1;0;;low
0.86;1;5;229;5;0;1;0;;low
0.1;0.83;6;269;4;0;1;0;;low
0.4;0.49;2;128;3;0;1;0;sales;low
0.11;0.87;7;278;4;0;1;0;sales;low
0.86;0.98;3;158;5;0;1;0;sales;low
0.42;1;3;202;3;0;1;0;sales;medium
0.79;0.84;4;240;5;0;1;0;sales;medium
0.1;0.96;7;255;4;0;1;0;marketing;medium
0.09;0.92;7;254;4;0;1;0;sales;medium
0.09;0.82;6;257;4;0;1;0;accounting;medium
0.87;1;4;228;5;0;1;0;support;medium
0.36;0.49;2;145;3;0;1;0;technical;medium
0.42;0.75;3;218;4;0;1;0;management;medium
0.84;0.86;5;268;5;0;1;0;marketing;medium
0.1;0.83;6;278;4;0;1;0;marketing;medium
0.78;0.71;3;249;5;0;1;0;marketing;medium
0.35;0.99;3;236;4;0;1;0;sales;medium
0.1;0.81;7;291;4;0;1;0;sales;high
0.11;0.8;6;306;4;0;1;0;sales;low
0.43;0.48;2;135;3;0;1;0;sales;medium
0.38;0.45;2;156;3;0;1;0;sales;medium
0.46;0.54;2;143;3;0;1;0;sales;medium
0.89;0.82;4;243;5;0;1;0;sales;medium
0.45;0.5;2;147;3;0;1;0;sales;low
0.44;0.53;2;159;3;0;1;0;sales;low
0.74;0.54;5;216;3;0;1;0;sales;low
0.45;0.54;2;152;3;0;1;0;sales;low
0.79;0.93;4;226;5;0;1;0;sales;low
0.79;0.91;5;271;5;0;1;0;sales;low
0.11;0.87;6;255;4;0;1;0;sales;low
0.42;0.48;2;140;3;0;1;0;sales;low
0.64;0.9;6;252;2;0;1;0;sales;low
0.4;0.55;2;159;3;0;1;0;sales;low
0.84;0.98;5;270;5;0;1;0;sales;low
0.73;0.92;5;232;5;0;1;0;sales;low
0.4;0.51;2;144;3;0;1;0;accounting;low
0.36;0.45;2;127;3;0;1;0;accounting;low
0.43;0.47;2;131;3;0;1;0;accounting;low
0.11;0.78;6;243;4;0;1;0;hr;low
0.91;1;5;244;6;0;1;0;hr;low
0.8;1;5;260;5;0;1;0;hr;low
0.42;0.49;2;139;3;0;1;0;hr;low
0.31;0.87;4;184;3;0;1;0;technical;low
0.44;0.47;2;130;3;0;1;0;technical;low
0.38;0.54;2;135;3;0;1;0;technical;medium
0.45;0.56;2;146;3;0;1;0;technical;medium
0.43;0.46;2;149;3;0;1;0;technical;medium
0.45;0.46;2;153;3;1;1;0;technical;medium
0.43;0.57;2;160;3;0;1;0;technical;medium
0.43;0.49;2;160;3;0;1;0;technical;medium
0.09;0.83;6;282;4;0;1;0;technical;medium
0.43;0.47;2;128;3;0;1;0;technical;medium
0.79;0.94;4;232;5;0;1;0;technical;medium
0.85;0.58;3;226;2;0;1;0;support;medium
0.38;0.45;2;129;3;0;1;0;support;medium
0.11;0.92;7;255;4;0;1;0;support;medium
0.83;0.99;5;258;5;0;1;0;support;high
0.81;0.91;4;229;5;0;1;0;support;low
0.42;0.56;2;143;3;0;1;0;support;medium
0.11;0.87;6;257;4;0;1;0;support;medium
0.11;0.85;7;275;4;0;1;0;support;medium
0.1;0.89;7;291;4;0;1;0;support;medium
0.5;0.54;5;153;4;0;1;0;support;low
0.44;0.49;2;154;3;0;1;0;support;low
0.11;0.9;6;301;4;0;1;0;technical;low
0.39;0.52;2;134;3;0;1;0;technical;low
0.11;0.78;6;245;4;0;1;0;technical;low
0.36;0.5;2;132;3;0;1;0;management;low
0.43;0.51;2;130;3;0;1;0;IT;low
0.4;0.5;2;127;3;0;1;0;IT;low
0.86;0.84;4;246;6;0;1;0;IT;low
0.38;0.49;2;145;3;0;1;0;IT;low
0.46;0.45;2;138;3;0;1;1;IT;low
0.37;0.57;2;129;3;0;1;0;product_mng;low
0.43;0.52;2;150;3;0;1;0;product_mng;low
0.66;0.93;5;253;5;0;1;0;product_mng;low
0.37;0.48;2;160;3;0;1;0;product_mng;low
0.77;0.92;5;235;5;0;1;0;IT;low
0.38;0.55;2;151;3;0;1;0;sales;low
0.39;0.54;2;127;3;0;1;0;sales;low
0.41;0.55;2;151;3;0;1;0;sales;low
0.1;0.9;7;290;4;0;1;0;sales;low
0.09;0.93;6;249;4;0;1;0;sales;low
0.41;0.47;2;131;3;0;1;0;marketing;medium
0.39;0.46;2;159;3;0;1;0;sales;medium
0.83;0.99;4;223;5;0;1;0;accounting;medium
0.09;0.87;3;214;2;0;1;0;support;medium
0.75;0.81;5;227;5;0;1;0;technical;medium
0.44;0.54;2;127;3;0;1;0;management;medium
0.1;0.84;6;293;5;0;1;0;marketing;medium
0.42;0.46;2;141;3;0;1;0;marketing;medium
0.1;0.83;6;300;4;0;1;0;marketing;medium
0.1;0.86;6;309;4;0;1;0;sales;medium
0.31;0.77;4;149;3;0;1;0;sales;medium
0.42;0.54;2;159;3;0;1;0;sales;medium
0.38;0.5;2;152;3;0;1;0;sales;high
0.39;0.57;2;158;3;0;1;0;sales;low
0.1;0.97;6;254;5;0;1;0;sales;medium
0.11;0.93;6;294;4;0;1;0;sales;medium
0.1;0.92;7;269;4;0;1;0;sales;medium
0.11;0.9;7;247;4;0;1;0;sales;medium
0.44;0.65;3;271;4;0;1;0;sales;low
0.91;0.96;4;232;5;0;1;0;sales;low
0.72;1;4;245;5;0;1;0;sales;low
0.36;0.46;2;132;3;0;1;0;sales;low
0.44;0.57;2;131;3;0;1;0;sales;low
0.85;0.99;5;248;5;0;1;0;sales;low
0.78;0.93;5;225;5;0;1;0;sales;low
0.39;0.46;2;156;3;0;1;0;sales;low
0.78;0.81;3;222;2;0;1;0;sales;low
0.1;0.92;6;243;4;1;1;0;sales;low
0.23;0.99;4;204;4;1;1;0;accounting;low
0.11;0.87;6;301;4;0;1;0;accounting;low
0.9;0.83;5;259;5;0;1;0;accounting;low
0.91;0.89;4;247;5;0;1;0;hr;low
0.11;0.79;7;295;4;0;1;0;hr;low
0.43;0.54;2;150;3;0;1;0;hr;low
0.45;0.49;2;151;3;0;1;0;hr;low
0.11;0.91;5;291;4;0;1;0;technical;low
0.11;0.93;6;253;4;1;1;0;technical;low
0.43;0.5;2;161;3;0;1;0;technical;low
0.91;0.97;4;251;6;0;1;0;technical;low
0.43;0.55;2;153;3;0;1;0;technical;medium
0.85;0.82;5;264;6;0;1;0;technical;medium
0.1;0.77;6;310;4;0;1;0;technical;medium
0.81;0.95;5;266;5;0;1;0;technical;medium
0.36;0.62;4;237;2;0;1;0;technical;medium
0.45;0.54;2;138;3;0;1;0;technical;medium
0.86;1;5;227;5;0;1;0;technical;medium
0.71;1;4;300;5;0;1;0;support;medium
0.11;0.97;7;310;4;0;1;0;support;medium
0.84;0.93;5;236;5;0;1;0;support;medium
0.09;0.97;7;288;4;0;1;0;support;medium
0.38;0.49;2;127;3;0;1;0;support;medium
0.15;0.55;6;139;4;0;1;0;support;high
0.1;0.92;7;253;4;1;1;0;support;low
0.8;0.97;4;218;5;1;1;0;support;medium
0.84;0.97;5;251;5;0;1;0;support;medium
0.11;0.87;6;264;4;0;1;0;support;medium
0.89;0.79;3;149;2;0;1;0;support;medium
0.45;0.51;2;138;3;0;1;0;technical;low
0.11;0.93;7;284;4;0;1;0;technical;low
0.74;0.93;5;244;5;0;1;0;technical;low
0.41;0.5;2;128;3;0;1;0;management;low
0.44;0.53;2;154;3;0;1;0;IT;low
0.37;0.56;2;138;3;0;1;0;IT;low
0.11;0.86;6;308;4;0;1;0;IT;low
0.1;0.93;6;269;4;0;1;0;IT;low
0.7;0.74;6;136;3;0;1;0;IT;low
0.59;1;2;160;5;0;1;0;product_mng;low
0.38;0.53;2;138;3;0;1;0;product_mng;low
0.72;0.95;4;220;5;0;1;0;product_mng;low
0.73;1;5;274;5;0;1;0;product_mng;low
0.39;0.48;2;161;3;0;1;0;IT;low
0.89;0.82;5;224;6;0;1;0;RandD;low
0.89;1;4;260;5;0;1;0;RandD;low
0.11;0.78;6;300;4;1;1;0;RandD;low
0.43;0.56;2;133;3;0;1;0;RandD;low
0.09;0.93;6;308;4;0;1;0;RandD;low
0.81;0.9;5;238;6;0;1;0;marketing;low
0.37;0.53;2;126;3;0;1;0;sales;low
0.36;0.56;2;138;3;0;1;0;accounting;medium
0.11;0.85;6;299;4;0;1;0;support;medium
0.1;0.85;6;254;4;0;1;0;technical;medium
0.66;0.47;7;156;2;0;1;0;management;medium
0.39;0.47;2;152;3;0;1;0;marketing;medium
0.44;0.51;2;146;3;0;1;0;marketing;medium
0.1;0.84;6;253;4;0;1;0;marketing;medium
0.79;0.94;5;227;6;0;1;0;sales;medium
0.1;0.81;6;301;4;1;1;0;sales;medium
0.54;0.94;6;294;3;0;1;0;sales;medium
0.37;0.47;2;151;3;0;1;0;sales;medium
0.37;0.57;2;128;3;0;1;0;sales;medium
0.82;0.89;5;217;5;0;1;0;sales;high
0.45;0.52;2;160;3;0;1;0;sales;low
0.79;0.9;5;263;5;0;1;0;sales;medium
0.42;0.56;2;156;3;0;1;0;sales;medium
0.1;0.85;6;273;4;0;1;0;sales;medium
0.11;0.78;6;303;4;0;1;0;sales;medium
0.74;1;4;253;5;0;1;0;sales;low
0.1;0.93;6;270;4;0;1;0;sales;low
0.79;1;4;218;5;0;1;0;sales;low
0.43;0.48;2;144;3;0;1;0;sales;low
0.41;0.47;2;154;3;0;1;0;sales;low
0.39;0.55;2;146;3;0;1;0;sales;low
0.1;0.94;6;260;4;0;1;0;sales;low
0.82;0.85;5;218;5;0;1;0;sales;low
0.41;0.46;2;128;3;0;1;0;accounting;low
0.42;0.56;2;128;3;0;1;0;accounting;low
0.74;0.88;4;248;6;0;1;0;accounting;low
0.38;0.57;2;152;3;1;1;0;hr;low
0.39;0.56;2;126;3;0;1;0;hr;low
0.87;0.94;4;260;5;0;1;0;hr;low
0.1;0.9;5;263;4;0;1;0;hr;low
0.78;1;5;220;5;0;1;0;technical;low
0.14;0.73;7;282;5;0;1;0;technical;low
0.11;0.94;6;277;5;0;1;0;technical;low
0.91;0.94;5;257;5;0;1;0;technical;low
0.49;0.63;6;265;3;0;1;0;technical;low
0.38;0.47;2;143;3;0;1;0;technical;low
0.82;0.97;5;263;5;0;1;0;technical;medium
0.38;0.88;3;154;4;0;1;0;technical;medium
0.89;1;5;253;5;0;1;0;technical;medium
0.11;0.79;6;294;4;0;1;0;technical;medium
0.37;0.51;2;128;3;0;1;0;technical;medium
0.38;0.5;2;153;3;0;1;0;support;medium
0.78;0.87;5;256;5;0;1;0;support;medium
0.41;0.51;2;127;3;0;1;0;support;medium
0.41;0.51;2;137;3;0;1;0;support;medium
0.11;0.83;6;295;4;0;1;0;support;medium
0.11;0.79;6;281;4;0;1;0;support;medium
0.43;0.57;2;131;3;1;1;0;support;medium
0.75;0.86;5;237;5;0;1;0;support;high
0.74;0.99;4;276;5;0;1;0;support;low
0.85;0.85;5;267;5;0;1;0;support;medium
0.73;0.92;5;266;5;0;1;0;support;medium
0.1;0.79;6;294;4;0;1;0;technical;medium
0.44;0.56;2;134;3;0;1;0;technical;medium
0.3;0.56;3;309;4;1;1;0;technical;low
0.11;0.77;7;273;4;0;1;0;management;low
0.84;0.83;5;238;5;0;1;0;IT;low
0.78;0.94;5;271;6;0;1;0;IT;low
0.43;0.53;2;145;3;0;1;0;IT;low
0.36;0.55;2;152;3;0;1;0;IT;low
0.43;0.47;2;128;3;0;1;0;IT;low
0.45;0.46;2;142;3;0;1;0;product_mng;low
0.76;0.93;5;238;5;0;1;0;product_mng;low
0.1;0.78;7;286;4;0;1;0;product_mng;low
0.09;0.86;6;291;4;0;1;0;product_mng;low
0.92;1;5;259;5;0;1;0;IT;low
0.92;0.9;5;248;5;0;1;0;sales;low
0.79;0.98;4;271;5;0;1;0;sales;low
0.43;0.51;2;140;3;0;1;0;sales;low
0.8;0.95;4;274;5;0;1;0;sales;low
0.44;0.49;2;127;3;1;1;0;sales;low
0.89;0.87;5;275;6;0;1;0;marketing;low
0.48;0.88;3;239;3;0;1;0;sales;low
0.11;0.82;6;304;4;1;1;0;accounting;low
0.38;0.55;2;145;3;0;1;0;support;low
0.11;0.85;6;259;4;0;1;0;technical;medium
0.82;0.86;4;264;5;0;1;0;management;medium
0.37;0.45;2;160;3;0;1;0;marketing;medium
0.4;0.48;2;138;3;0;1;0;marketing;medium
0.43;0.47;2;137;3;0;1;0;marketing;medium
0.44;0.5;2;156;3;0;1;0;sales;medium
0.42;0.56;2;147;3;0;1;0;sales;medium
0.11;0.8;7;243;4;0;1;0;sales;medium
0.78;0.87;4;236;5;0;1;0;sales;medium
0.46;0.86;2;212;4;0;1;0;sales;medium
0.77;0.91;5;261;6;0;1;0;sales;medium
0.83;0.82;4;243;5;0;1;0;sales;medium
0.32;0.58;5;271;5;0;1;0;sales;high
0.9;0.92;5;154;4;0;1;0;sales;low
0.42;0.52;2;151;3;0;1;0;sales;medium
0.1;0.96;6;254;4;1;1;0;sales;medium
0.1;0.91;6;285;4;0;1;0;sales;medium
0.44;0.49;2;130;3;0;1;0;sales;medium
0.1;0.95;7;301;4;0;1;0;sales;low
0.11;0.8;6;286;4;0;1;0;sales;low
0.1;0.89;6;246;4;0;1;0;sales;low
0.39;0.47;2;135;3;0;1;0;sales;low
0.92;0.92;4;245;5;0;1;0;sales;low
0.43;0.56;2;136;3;0;1;0;sales;low
0.11;0.89;6;301;4;0;1;0;accounting;low
0.81;1;5;235;5;0;1;0;accounting;low
0.11;0.85;7;272;4;0;1;0;accounting;low
0.87;1;5;274;5;0;1;0;hr;low
0.37;0.46;2;131;3;0;1;0;hr;low
0.39;0.56;2;135;3;0;1;0;hr;low
0.61;0.86;4;196;4;0;1;0;hr;low
0.11;0.95;6;285;4;0;1;0;technical;low
0.09;0.9;7;289;5;0;1;0;technical;low
0.36;0.52;2;157;3;0;1;0;technical;low
0.09;0.94;6;308;4;0;1;0;technical;low
0.41;0.71;4;301;5;0;1;0;technical;low
0.4;0.46;2;131;3;0;1;0;technical;low
0.1;0.91;6;262;5;1;1;0;technical;low
0.46;0.53;2;143;3;1;1;0;technical;low
0.39;0.57;2;133;3;0;1;0;technical;medium
0.41;0.5;2;153;3;0;1;0;technical;medium
0.1;0.94;7;281;4;0;1;0;technical;medium
0.39;0.51;2;132;3;0;1;0;support;medium
0.73;0.83;5;270;5;1;1;0;support;medium
0.41;0.45;2;150;3;0;1;0;support;medium
0.37;0.51;2;140;3;0;1;0;support;medium
0.38;0.5;2;150;3;1;1;0;support;medium
0.8;0.63;5;180;5;0;1;0;support;medium
0.09;0.85;5;281;4;0;1;0;support;medium
0.85;0.92;4;275;5;0;1;0;support;medium
0.42;0.54;2;130;3;0;1;0;support;medium
0.41;0.48;2;130;3;0;1;0;support;high
0.38;0.46;2;147;3;0;1;0;support;low
0.72;1;5;264;5;0;1;0;technical;medium
0.11;0.74;6;290;5;0;1;0;technical;medium
0.37;0.47;2;150;3;0;1;0;technical;medium
0.1;0.81;6;304;4;0;1;0;management;medium
0.36;0.54;2;136;3;0;1;0;IT;low
0.92;0.94;5;307;5;0;1;0;IT;low
0.11;0.87;5;303;4;0;1;0;IT;low
0.39;0.56;2;156;3;0;1;0;IT;low
0.11;0.95;6;271;4;0;1;0;IT;low
0.45;0.45;2;140;3;0;1;0;product_mng;low
0.44;0.55;2;130;3;1;1;0;product_mng;low
0.85;0.97;4;266;6;0;1;0;product_mng;low
0.43;0.52;2;139;3;0;1;0;product_mng;low
0.75;0.86;5;260;5;0;1;0;IT;low
0.11;0.55;2;137;3;1;1;0;RandD;low
0.36;0.5;2;158;3;0;1;0;RandD;low
0.1;0.79;6;249;4;0;1;0;RandD;low
0.74;0.89;5;259;5;0;1;0;RandD;low
0.4;0.46;2;144;3;0;1;0;RandD;low
0.09;0.77;6;244;4;0;1;0;marketing;low
0.76;0.91;4;219;5;0;1;0;sales;low
0.45;0.57;2;151;3;0;1;0;accounting;low
0.84;0.88;4;269;5;0;1;0;support;low
0.38;0.45;2;127;3;0;1;0;technical;low
0.38;0.46;2;144;3;0;1;0;management;low
0.38;0.54;2;157;3;0;1;0;marketing;medium
0.86;0.94;5;224;5;0;1;0;marketing;medium
0.37;0.46;2;155;3;0;1;0;marketing;medium