-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHR_Employee_Data.csv
We can't make this file beautiful and searchable because it's too large.
15000 lines (15000 loc) · 660 KB
/
HR_Employee_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
Emp_Id,satisfaction_level,last_evaluation,number_project,average_montly_hours,time_spend_company,Work_accident,left,promotion_last_5years,Department,salary
IND02438,38%,53%,2,157,3,0,1,0,sales,low
IND28133,80%,86%,5,262,6,0,1,0,sales,medium
IND07164,11%,88%,7,272,4,0,1,0,sales,medium
IND30478,72%,87%,5,223,5,0,1,0,sales,low
IND24003,37%,52%,2,159,3,0,1,0,sales,low
IND08609,41%,50%,2,153,3,0,1,0,sales,low
IND14345,10%,77%,6,247,4,0,1,0,sales,low
IND16300,92%,85%,5,259,5,0,1,0,sales,low
IND27336,89%,100%,5,224,5,0,1,0,sales,low
IND41409,42%,53%,2,142,3,0,1,0,sales,low
IND01460,45%,54%,2,135,3,0,1,0,sales,low
IND07665,11%,81%,6,305,4,0,1,0,sales,low
IND13556,84%,92%,4,234,5,0,1,0,sales,low
IND20559,41%,55%,2,148,3,0,1,0,sales,low
IND12896,36%,56%,2,137,3,0,1,0,sales,low
IND18204,38%,54%,2,143,3,0,1,0,sales,low
IND43525,45%,47%,2,160,3,0,1,0,sales,low
IND21424,78%,99%,4,255,6,0,1,0,sales,low
IND40030,45%,51%,2,160,3,1,1,1,sales,low
IND22302,76%,89%,5,262,5,0,1,0,sales,low
IND24750,11%,83%,6,282,4,0,1,0,sales,low
IND08173,38%,55%,2,147,3,0,1,0,sales,low
IND21310,9%,95%,6,304,4,0,1,0,sales,low
IND24366,46%,57%,2,139,3,0,1,0,sales,low
IND06318,40%,53%,2,158,3,0,1,0,sales,low
IND22204,89%,92%,5,242,5,0,1,0,sales,low
IND41510,82%,87%,4,239,5,0,1,0,sales,low
IND02947,40%,49%,2,135,3,0,1,0,sales,low
IND21633,41%,46%,2,128,3,0,1,0,accounting,low
IND41210,38%,50%,2,132,3,0,1,0,accounting,low
IND17550,9%,62%,6,294,4,0,1,0,accounting,low
IND30016,45%,57%,2,134,3,0,1,0,hr,low
IND31764,40%,51%,2,145,3,0,1,0,hr,low
IND21118,45%,55%,2,140,3,0,1,0,hr,low
IND13230,84%,87%,4,246,6,0,1,0,hr,low
IND23503,10%,94%,6,255,4,0,1,0,technical,low
IND23009,38%,46%,2,137,3,0,1,0,technical,low
IND16251,45%,50%,2,126,3,0,1,0,technical,low
IND31502,11%,89%,6,306,4,0,1,0,technical,low
IND38874,41%,54%,2,152,3,0,1,0,technical,low
IND04297,87%,88%,5,269,5,0,1,0,technical,low
IND29124,45%,48%,2,158,3,0,1,0,technical,low
IND40935,40%,46%,2,127,3,0,1,0,technical,low
IND0463,10%,80%,7,281,4,0,1,0,technical,low
IND19955,9%,89%,6,276,4,0,1,0,technical,low
IND29898,84%,74%,3,182,4,0,1,0,technical,low
IND38961,40%,55%,2,147,3,0,1,0,support,low
IND44725,57%,70%,3,273,6,0,1,0,support,low
IND02198,40%,54%,2,148,3,0,1,0,support,low
IND24197,43%,47%,2,147,3,0,1,0,support,low
IND01835,13%,78%,6,152,2,0,1,0,support,low
IND09516,44%,55%,2,135,3,0,1,0,support,low
IND40870,38%,55%,2,134,3,0,1,0,support,low
IND21560,39%,54%,2,132,3,0,1,0,support,low
IND25217,10%,92%,7,307,4,0,1,0,support,low
IND37503,37%,46%,2,140,3,0,1,0,support,low
IND15216,11%,94%,7,255,4,0,1,0,support,low
IND21703,10%,81%,6,309,4,0,1,0,technical,low
IND25958,38%,54%,2,128,3,0,1,0,technical,low
IND30439,85%,100%,4,225,5,0,1,0,technical,low
IND32895,85%,91%,5,226,5,0,1,0,management,medium
IND36072,11%,93%,7,308,4,0,1,0,IT,medium
IND43578,10%,95%,6,244,5,0,1,0,IT,medium
IND30248,36%,56%,2,132,3,0,1,0,IT,medium
IND38757,11%,94%,6,286,4,0,1,0,IT,medium
IND26312,81%,70%,6,161,4,0,1,0,IT,medium
IND0234,43%,54%,2,153,3,0,1,0,product_mng,medium
IND18896,90%,98%,4,264,6,0,1,0,product_mng,medium
IND06323,76%,86%,5,223,5,1,1,0,product_mng,medium
IND09616,43%,50%,2,135,3,0,1,0,product_mng,medium
IND05081,74%,99%,2,277,3,0,1,0,IT,medium
IND20622,9%,77%,5,275,4,0,1,0,product_mng,medium
IND24625,45%,49%,2,149,3,0,1,0,product_mng,high
IND34139,9%,87%,7,295,4,0,1,0,product_mng,low
IND11972,11%,97%,6,277,4,0,1,0,product_mng,medium
IND08365,11%,79%,7,306,4,0,1,0,product_mng,medium
IND30334,10%,83%,6,295,4,0,1,0,product_mng,medium
IND36638,40%,54%,2,137,3,0,1,0,marketing,medium
IND10308,43%,56%,2,157,3,0,1,0,sales,low
IND35179,39%,56%,2,142,3,0,1,0,accounting,low
IND09604,45%,54%,2,140,3,0,1,0,support,low
IND04427,38%,49%,2,151,3,0,1,0,technical,low
IND16967,79%,59%,4,139,3,0,1,1,management,low
IND34303,84%,85%,4,249,6,0,1,0,marketing,low
IND37496,11%,77%,6,291,4,0,1,0,marketing,low
IND10898,11%,87%,6,305,4,0,1,0,marketing,low
IND36692,17%,84%,5,232,3,0,1,0,sales,low
IND19455,44%,45%,2,132,3,0,1,0,sales,low
IND27490,37%,57%,2,130,3,0,1,0,sales,low
IND17538,10%,79%,6,291,4,0,1,0,sales,low
IND24185,40%,50%,2,130,3,0,1,0,sales,low
IND36961,89%,100%,5,246,5,0,1,0,sales,low
IND02719,42%,48%,2,143,3,0,1,0,sales,low
IND05615,46%,55%,2,129,3,0,1,0,sales,low
IND09082,9%,83%,6,255,4,0,1,0,sales,low
IND24961,37%,51%,2,155,3,0,1,0,sales,low
IND27342,10%,77%,6,265,4,0,1,0,sales,low
IND27994,10%,84%,6,279,4,0,1,0,sales,low
IND10485,11%,97%,6,284,4,0,1,0,sales,low
IND16337,90%,100%,5,221,6,0,1,0,sales,medium
IND07521,38%,52%,2,154,3,0,1,0,sales,medium
IND10328,36%,52%,2,147,3,0,1,0,sales,medium
IND32485,42%,46%,2,150,3,0,1,0,sales,medium
IND34746,9%,94%,7,267,4,0,1,0,sales,medium
IND36536,43%,52%,2,158,3,0,1,0,sales,medium
IND06361,24%,46%,7,224,5,0,1,0,accounting,medium
IND12562,91%,100%,4,257,5,0,1,0,accounting,medium
IND22820,44%,50%,2,148,3,0,1,0,accounting,medium
IND27386,71%,87%,3,177,4,0,1,0,hr,medium
IND39001,40%,49%,2,155,3,0,1,0,hr,medium
IND04678,43%,47%,2,144,3,0,1,0,hr,medium
IND23073,9%,85%,6,289,4,0,1,0,hr,high
IND30104,43%,52%,2,160,3,0,1,0,technical,low
IND15117,90%,96%,4,258,5,0,1,0,technical,medium
IND38017,84%,100%,5,234,5,0,1,0,technical,medium
IND06875,37%,48%,2,137,3,0,1,0,technical,medium
IND21577,86%,68%,5,263,2,0,1,0,technical,medium
IND26914,11%,84%,6,251,4,0,1,0,technical,low
IND15804,37%,57%,2,133,3,0,1,0,technical,low
IND40954,40%,46%,2,132,3,0,1,0,technical,low
IND35990,14%,62%,4,158,4,1,1,0,technical,low
IND37669,40%,46%,2,135,3,0,1,0,technical,low
IND36618,75%,100%,4,216,6,0,1,0,technical,low
IND05008,11%,84%,6,300,5,1,1,0,support,low
IND03262,46%,49%,2,138,3,0,1,0,support,low
IND11117,11%,92%,6,260,4,0,1,0,support,low
IND28138,38%,49%,2,132,3,0,1,0,support,low
IND37226,70%,89%,3,183,5,0,1,0,support,low
IND0521,9%,82%,6,250,4,0,1,0,support,low
IND13372,37%,45%,2,151,3,0,1,0,support,low
IND17302,10%,83%,6,292,4,0,1,0,support,low
IND17471,38%,57%,2,140,3,0,1,0,support,low
IND0881,90%,100%,5,221,5,0,1,0,support,low
IND32175,44%,51%,2,138,3,0,1,0,support,low
IND39036,36%,50%,2,132,3,0,1,0,technical,low
IND04634,31%,84%,7,133,5,0,1,0,technical,low
IND19947,10%,84%,6,283,4,1,1,0,technical,low
IND02513,42%,48%,2,129,3,0,1,0,management,low
IND14819,74%,100%,4,249,5,0,1,0,IT,low
IND18272,73%,87%,5,257,5,0,1,0,IT,low
IND05552,9%,96%,6,245,4,0,1,0,IT,low
IND18930,45%,53%,2,155,3,0,1,0,IT,low
IND21059,11%,80%,6,256,4,0,1,0,IT,low
IND30847,37%,47%,2,152,3,0,1,0,product_mng,low
IND37054,84%,99%,4,267,5,0,1,0,product_mng,low
IND01497,41%,46%,2,151,3,0,1,0,product_mng,low
IND09083,76%,92%,4,239,5,0,1,0,product_mng,low
IND02261,11%,87%,6,306,4,0,1,0,IT,low
IND16957,84%,88%,4,263,5,1,1,0,marketing,low
IND17000,39%,50%,2,147,3,0,1,0,marketing,low
IND44713,11%,91%,6,278,4,0,1,0,marketing,low
IND21308,45%,56%,2,154,3,0,1,0,marketing,low
IND16549,37%,52%,2,143,3,0,1,0,marketing,low
IND16885,40%,52%,2,155,3,0,1,0,marketing,low
IND0303,39%,48%,2,160,3,0,1,0,sales,low
IND09693,11%,80%,6,304,4,0,1,0,accounting,low
IND15384,83%,100%,5,240,5,0,1,0,support,low
IND23381,11%,92%,6,305,4,0,1,0,technical,low
IND26259,39%,50%,2,136,3,0,1,0,management,low
IND14788,45%,45%,2,132,3,0,1,0,marketing,low
IND44000,10%,95%,7,301,4,0,1,0,marketing,low
IND14758,90%,98%,5,243,6,0,1,0,marketing,low
IND20741,45%,51%,2,147,3,0,1,0,sales,low
IND21140,79%,89%,5,239,5,0,1,0,sales,low
IND26885,90%,99%,5,260,5,0,1,0,sales,low
IND06026,11%,84%,7,296,4,0,1,0,sales,low
IND10990,43%,55%,2,129,3,0,1,0,sales,low
IND28377,31%,54%,5,132,5,0,1,0,sales,low
IND10806,32%,50%,2,135,5,0,1,0,sales,low
IND03259,45%,57%,2,158,3,0,1,0,sales,low
IND03963,81%,99%,4,259,5,0,1,0,sales,low
IND04181,41%,46%,2,160,3,0,1,1,sales,low
IND31430,11%,78%,7,278,4,0,1,0,sales,low
IND31870,10%,88%,6,284,4,0,1,0,sales,low
IND44113,70%,53%,2,274,4,0,1,0,sales,low
IND02033,54%,74%,4,164,2,0,1,0,sales,low
IND34753,41%,48%,2,148,3,0,1,0,sales,low
IND35044,38%,50%,2,140,3,0,1,0,sales,medium
IND17131,37%,51%,2,127,3,0,1,0,sales,medium
IND29549,11%,85%,6,308,5,0,1,0,sales,medium
IND06962,40%,47%,2,146,3,0,1,0,sales,medium
IND08956,10%,84%,6,261,4,0,1,0,accounting,medium
IND23874,89%,99%,5,257,5,0,1,0,accounting,medium
IND28320,11%,80%,6,285,4,0,1,0,accounting,medium
IND43812,36%,55%,2,141,3,0,1,0,hr,medium
IND02857,40%,46%,2,127,3,0,1,0,hr,medium
IND09513,9%,85%,6,297,4,0,1,0,hr,medium
IND33556,40%,46%,2,143,3,0,1,0,hr,medium
IND38080,37%,55%,2,152,3,0,1,0,technical,medium
IND43469,44%,51%,2,156,3,0,1,0,technical,high
IND13463,9%,80%,7,283,5,0,1,0,technical,low
IND42799,92%,87%,4,226,6,1,1,0,technical,medium
IND44570,74%,91%,4,232,5,0,1,0,technical,medium
IND33860,9%,82%,6,249,4,0,1,0,technical,medium
IND39257,89%,95%,4,275,5,0,1,0,technical,medium
IND28422,9%,80%,6,304,4,0,1,0,technical,low
IND12179,27%,54%,7,278,3,0,1,0,technical,low
IND16585,10%,91%,6,287,4,0,1,0,technical,low
IND25094,10%,89%,7,285,4,0,1,0,technical,low
IND18533,77%,94%,5,226,6,0,1,0,support,low
IND30817,90%,82%,5,259,5,0,1,0,support,low
IND06625,39%,50%,2,135,3,0,1,0,support,low
IND17330,76%,100%,5,219,5,0,1,0,support,low
IND26672,10%,93%,6,256,4,0,1,0,support,low
IND16687,87%,90%,5,254,6,0,1,0,support,low
IND19503,38%,50%,2,153,3,0,1,0,support,low
IND41222,77%,99%,5,228,5,0,1,0,support,low
IND07024,78%,87%,4,228,5,0,1,0,support,low
IND07912,44%,50%,2,128,3,0,1,0,support,low
IND28692,38%,52%,2,153,3,0,1,0,support,low
IND29058,43%,46%,2,156,3,0,1,0,technical,low
IND43494,39%,50%,4,294,3,0,1,0,technical,low
IND30367,88%,100%,5,219,5,0,1,0,technical,low
IND08292,45%,46%,2,153,3,0,1,0,management,low
IND27207,40%,53%,2,151,3,0,1,0,IT,low
IND16191,36%,51%,2,155,3,0,1,0,IT,low
IND0682,36%,48%,2,158,3,0,1,0,IT,low
IND28726,90%,98%,5,245,5,0,1,0,IT,low
IND05052,43%,53%,2,131,3,0,1,0,IT,low
IND31328,89%,87%,5,225,5,0,1,0,product_mng,low
IND01489,10%,84%,6,286,4,0,1,0,product_mng,low
IND06073,37%,50%,2,135,3,0,1,0,product_mng,low
IND30496,37%,51%,2,153,3,0,1,0,product_mng,low
IND41140,87%,90%,5,252,5,0,1,0,IT,low
IND08304,40%,56%,2,149,3,0,1,0,accounting,low
IND12729,90%,97%,4,258,5,0,1,0,accounting,low
IND20887,37%,46%,2,158,3,0,1,0,hr,low
IND35561,44%,54%,2,149,3,0,1,0,hr,low
IND42660,85%,95%,5,236,5,0,1,0,hr,low
IND24369,78%,98%,5,239,6,0,1,0,marketing,low
IND13224,42%,47%,2,159,3,0,1,0,marketing,low
IND14406,92%,99%,5,255,6,0,1,0,sales,low
IND34424,11%,83%,6,244,4,0,1,0,accounting,low
IND27347,42%,56%,2,134,3,0,1,0,support,low
IND35173,48%,57%,4,270,4,0,1,0,technical,low
IND38184,83%,85%,4,255,5,0,1,0,management,low
IND40084,40%,53%,2,151,3,0,1,0,marketing,low
IND06645,43%,45%,2,135,3,0,1,0,marketing,low
IND13460,43%,53%,2,146,3,0,1,0,marketing,low
IND29291,10%,97%,7,254,4,0,1,0,sales,low
IND42842,10%,87%,7,289,4,0,1,0,sales,low
IND10790,37%,46%,2,156,3,0,1,0,sales,low
IND36333,38%,53%,2,156,3,0,1,0,sales,low
IND09285,40%,50%,2,128,3,0,1,0,sales,low
IND04368,89%,86%,5,275,5,0,1,0,sales,low
IND16033,45%,46%,2,155,3,0,1,0,sales,low
IND18868,37%,48%,2,159,3,0,1,0,sales,low
IND17976,46%,49%,2,148,3,0,1,0,sales,low
IND31925,87%,91%,4,228,5,0,1,0,sales,low
IND0839,11%,84%,6,298,4,0,1,0,sales,low
IND36656,79%,87%,5,261,5,0,1,0,sales,low
IND38815,79%,92%,5,254,6,0,1,0,sales,low
IND05341,19%,59%,7,192,3,0,1,0,sales,low
IND20706,87%,98%,4,248,5,0,1,0,sales,low
IND29072,60%,92%,2,258,5,0,1,0,sales,low
IND37159,44%,45%,2,156,3,0,1,0,sales,medium
IND13032,11%,81%,6,266,4,1,1,0,sales,medium
IND19562,42%,54%,2,156,3,0,1,0,sales,medium
IND29613,88%,88%,5,232,5,1,1,0,accounting,medium
IND08344,11%,84%,6,287,4,0,1,0,accounting,medium
IND24283,46%,46%,2,154,3,0,1,0,accounting,medium
IND44438,82%,97%,5,263,5,0,1,0,hr,medium
IND30621,44%,56%,2,131,3,0,1,0,hr,medium
IND36430,11%,78%,6,260,4,0,1,0,hr,medium
IND0369,42%,50%,2,139,3,0,1,0,hr,medium
IND02505,84%,93%,4,251,5,0,1,0,technical,medium
IND36321,11%,95%,6,286,4,0,1,0,technical,medium
IND38100,45%,53%,2,129,3,0,1,0,technical,high
IND13212,38%,56%,2,156,3,0,1,0,technical,low
IND25228,38%,86%,6,139,6,0,1,0,technical,medium
IND35610,44%,51%,2,127,3,0,1,0,technical,medium
IND41403,11%,84%,6,251,4,0,1,0,technical,medium
IND44935,81%,93%,5,270,5,0,1,0,technical,medium
IND09041,9%,96%,6,296,4,0,1,0,technical,low
IND27858,11%,90%,6,254,4,0,1,0,technical,low
IND20480,81%,95%,5,238,6,0,1,0,technical,low
IND0818,10%,97%,6,267,4,1,1,0,support,low
IND10394,74%,89%,5,229,6,0,1,0,support,low
IND28413,9%,78%,6,254,4,0,1,0,support,low
IND28709,82%,81%,4,233,4,1,1,0,support,low
IND07271,10%,98%,6,268,4,0,1,0,support,low
IND07090,27%,56%,3,301,3,0,1,0,support,low
IND30375,83%,92%,5,267,6,0,1,0,support,low
IND19040,10%,93%,6,289,4,1,1,0,support,low
IND30483,38%,47%,2,144,3,0,1,0,support,low
IND40879,40%,56%,2,148,3,0,1,0,support,low
IND41938,11%,83%,6,306,4,0,1,0,support,low
IND07760,11%,79%,6,292,4,0,1,1,technical,low
IND03264,82%,91%,5,232,5,0,1,0,technical,low
IND06225,36%,48%,2,137,3,0,1,0,technical,low
IND35004,40%,46%,2,128,3,0,1,0,management,low
IND25762,87%,84%,5,231,5,0,1,0,IT,low
IND23892,41%,49%,2,146,3,0,1,0,IT,low
IND31584,11%,91%,6,308,4,1,1,0,IT,low
IND43337,10%,93%,6,253,4,0,1,0,IT,medium
IND12691,38%,51%,2,146,3,0,1,0,IT,medium
IND15509,39%,55%,2,156,3,0,1,0,product_mng,medium
IND24340,40%,52%,2,147,3,0,1,0,product_mng,medium
IND32788,45%,48%,2,136,3,0,1,0,product_mng,medium
IND03425,74%,84%,5,249,5,0,1,0,product_mng,medium
IND05837,45%,55%,2,151,3,0,1,0,IT,medium
IND35722,12%,100%,3,278,4,0,1,0,RandD,medium
IND23749,10%,77%,7,250,5,0,1,0,RandD,medium
IND048,37%,55%,2,127,3,0,1,0,RandD,medium
IND04733,89%,87%,5,255,5,0,1,0,RandD,medium
IND17963,45%,47%,2,135,3,0,1,0,RandD,medium
IND02462,37%,46%,2,149,3,0,1,0,marketing,high
IND25050,11%,81%,5,287,4,0,1,0,sales,low
IND33895,41%,48%,2,145,3,0,1,0,accounting,medium
IND36409,10%,94%,6,285,4,0,1,0,support,medium
IND38328,10%,93%,7,305,4,0,1,0,technical,medium
IND05005,11%,95%,7,300,4,0,1,0,management,medium
IND05284,40%,54%,2,139,3,0,1,0,marketing,low
IND31191,41%,49%,2,130,3,0,1,0,marketing,low
IND0636,10%,81%,6,268,4,0,1,0,marketing,low
IND09913,73%,86%,4,245,6,0,1,0,sales,low
IND45004,43%,47%,2,135,3,0,1,0,sales,low
IND21604,37%,46%,2,153,3,0,1,0,sales,low
IND17722,11%,94%,6,276,4,0,1,0,sales,low
IND35333,40%,46%,2,130,3,0,1,0,sales,low
IND36557,41%,54%,2,153,3,1,1,0,sales,low
IND21834,82%,84%,5,244,5,0,1,0,sales,low
IND41907,61%,47%,2,253,3,0,1,0,sales,low
IND31120,11%,91%,7,287,4,0,1,0,sales,low
IND01918,37%,45%,2,131,3,0,1,0,sales,low
IND20772,41%,52%,2,135,3,0,1,0,sales,low
IND08699,37%,52%,2,157,3,0,1,0,sales,low
IND31644,88%,99%,5,262,6,0,1,0,sales,low
IND37098,10%,85%,6,266,4,0,1,0,sales,low
IND35544,44%,48%,2,148,3,0,1,0,sales,low
IND18627,38%,57%,2,140,3,0,1,0,sales,low
IND30769,11%,85%,7,302,4,0,1,0,sales,low
IND33187,9%,98%,6,271,4,0,1,0,sales,low
IND07254,45%,52%,2,145,3,0,1,0,sales,medium
IND29466,10%,81%,6,290,4,0,1,0,accounting,medium
IND36017,45%,47%,2,151,3,0,1,0,accounting,medium
IND43579,77%,87%,5,266,5,0,1,0,accounting,medium
IND43393,44%,51%,2,140,3,0,1,0,hr,medium
IND02895,39%,50%,2,142,3,0,1,0,hr,medium
IND04984,10%,91%,6,246,4,0,1,0,hr,medium
IND11607,9%,89%,7,308,5,0,1,0,hr,medium
IND41347,37%,47%,2,141,3,0,1,0,technical,medium
IND02676,90%,100%,5,232,5,0,1,0,technical,medium
IND04698,41%,56%,2,143,3,0,1,0,technical,medium
IND20375,37%,52%,2,155,3,0,1,0,technical,medium
IND37284,10%,86%,6,278,4,0,1,0,technical,high
IND23482,81%,100%,4,253,5,0,1,0,technical,low
IND39285,11%,80%,6,282,4,0,1,0,technical,medium
IND04237,11%,84%,7,264,4,0,1,0,technical,medium
IND01864,40%,46%,2,149,3,0,1,0,technical,medium
IND02500,9%,80%,6,304,5,0,1,0,technical,medium
IND29143,48%,93%,3,219,6,0,1,0,technical,low
IND20937,91%,91%,4,262,6,0,1,0,support,low
IND05507,43%,57%,2,135,3,0,1,0,support,low
IND01,33%,88%,6,219,5,0,1,0,support,low
IND20035,41%,57%,2,136,3,0,1,0,support,low
IND06084,41%,55%,2,154,3,0,1,0,support,low
IND24666,37%,54%,2,149,3,0,1,0,support,low
IND25893,31%,62%,6,135,5,0,1,0,support,low
IND31280,9%,91%,6,275,4,0,1,0,support,low
IND41323,10%,87%,6,290,4,0,1,0,support,low
IND19003,76%,90%,4,263,5,0,1,0,support,low
IND09805,41%,54%,2,145,3,0,1,0,support,low
IND27257,72%,96%,5,267,5,0,1,0,technical,low
IND03850,40%,50%,2,141,3,1,1,0,technical,low
IND26902,91%,87%,4,235,5,0,1,0,technical,low
IND24156,10%,83%,6,258,4,0,1,0,management,low
IND37061,40%,56%,2,131,3,0,1,0,IT,low
IND38588,82%,86%,5,243,5,0,1,0,IT,low
IND03063,10%,82%,6,266,4,0,1,0,IT,low
IND13975,37%,45%,2,142,3,0,1,0,IT,low
IND40823,36%,51%,2,135,3,0,1,0,IT,low
IND01469,39%,48%,2,141,3,0,1,0,product_mng,medium
IND01656,36%,57%,2,142,3,0,1,0,product_mng,medium
IND12465,86%,84%,5,254,5,0,1,0,product_mng,medium
IND16382,73%,99%,5,262,5,0,1,0,product_mng,medium
IND17796,56%,71%,4,296,2,0,1,0,IT,medium
IND32278,44%,56%,2,158,3,0,1,0,accounting,medium
IND34555,31%,56%,4,238,2,0,1,0,accounting,medium
IND22783,77%,93%,4,231,5,0,1,0,hr,medium
IND0583,44%,45%,2,156,3,0,1,0,hr,medium
IND26226,38%,46%,2,145,3,0,1,0,hr,medium
IND37137,45%,48%,2,144,3,0,1,0,marketing,medium
IND13629,38%,51%,2,159,3,0,1,0,sales,medium
IND31613,36%,48%,2,156,3,0,1,0,accounting,high
IND38501,75%,90%,5,256,5,0,1,0,support,low
IND01958,10%,93%,6,298,4,0,1,0,technical,medium
IND10086,10%,97%,6,247,4,0,1,0,management,medium
IND24010,45%,50%,2,157,3,0,1,0,marketing,medium
IND27604,42%,57%,2,154,3,1,1,0,marketing,medium
IND27827,78%,100%,4,253,5,0,1,0,marketing,low
IND42944,45%,55%,2,148,3,0,1,0,sales,low
IND31899,84%,100%,4,261,5,0,1,0,sales,low
IND02723,11%,93%,6,282,4,0,1,0,sales,low
IND10009,42%,56%,2,133,3,0,1,0,sales,low
IND05076,45%,46%,2,128,3,0,1,0,sales,low
IND44741,46%,57%,2,139,3,0,1,0,sales,low
IND10776,9%,79%,6,293,5,0,1,0,sales,low
IND36436,87%,83%,4,265,6,0,1,0,sales,low
IND41623,10%,87%,6,250,4,0,1,0,sales,low
IND25674,91%,100%,5,251,6,0,1,0,sales,low
IND01773,76%,92%,4,246,5,0,1,0,sales,low
IND03668,74%,100%,5,275,5,0,1,0,sales,low
IND34514,92%,93%,5,240,5,0,1,0,sales,low
IND44563,76%,87%,5,245,5,0,1,0,sales,low
IND05806,47%,50%,4,254,4,0,1,0,sales,low
IND36010,73%,99%,5,241,5,0,1,0,sales,low
IND06087,9%,94%,6,257,4,0,1,0,sales,low
IND37459,91%,92%,4,246,5,0,1,0,sales,low
IND22464,82%,98%,4,233,5,0,1,0,sales,low
IND41760,28%,45%,6,218,4,0,1,0,accounting,low
IND37034,84%,99%,4,262,6,0,1,0,accounting,medium
IND18121,45%,53%,2,138,3,0,1,0,accounting,medium
IND33996,45%,54%,2,142,3,0,1,0,hr,medium
IND0350,91%,97%,5,233,5,0,1,0,hr,medium
IND35777,42%,48%,2,155,3,0,1,0,hr,medium
IND21927,82%,100%,4,229,6,0,1,0,hr,medium
IND36809,11%,90%,6,264,4,0,1,0,technical,medium
IND09677,42%,53%,3,199,4,0,1,0,technical,medium
IND08739,82%,85%,4,223,5,0,1,0,technical,medium
IND15989,9%,96%,6,268,4,0,1,0,technical,medium
IND38180,10%,94%,6,287,4,0,1,0,technical,medium
IND42344,86%,100%,5,257,5,0,1,0,technical,medium
IND08064,40%,46%,2,143,3,0,1,0,technical,high
IND37269,45%,46%,2,130,3,0,1,0,technical,low
IND42385,42%,51%,2,136,3,0,1,0,technical,medium
IND05142,74%,92%,4,261,5,0,1,0,technical,medium
IND36170,55%,60%,3,180,4,0,1,0,technical,medium
IND36678,37%,45%,2,126,3,0,1,0,support,medium
IND05300,41%,52%,2,127,3,1,1,0,support,low
IND36918,89%,65%,5,195,6,0,1,0,support,low
IND15685,41%,57%,2,160,3,0,1,0,support,low
IND18291,44%,51%,2,150,3,0,1,0,support,low
IND39292,87%,84%,4,264,6,0,1,0,support,low
IND16653,10%,84%,6,309,4,0,1,0,support,low
IND23120,41%,47%,2,135,3,0,1,0,support,low
IND30329,11%,85%,6,261,4,0,1,0,support,low
IND02012,43%,53%,2,160,3,0,1,0,support,low
IND14328,77%,90%,4,237,5,0,1,0,support,low
IND19845,41%,52%,2,136,3,0,1,0,technical,low
IND27485,41%,48%,2,139,3,0,1,0,technical,low
IND06978,36%,78%,2,151,4,0,1,0,technical,low
IND20346,77%,100%,5,229,5,0,1,0,management,low
IND26050,81%,98%,5,245,5,0,1,0,IT,low
IND12047,39%,54%,2,127,3,0,1,0,IT,low
IND23467,9%,94%,6,283,5,0,1,0,IT,low
IND05879,44%,46%,2,143,3,0,1,0,IT,low
IND32980,10%,84%,5,298,4,0,1,0,IT,low
IND04065,36%,48%,2,159,3,0,1,0,product_mng,low
IND08523,81%,92%,5,239,5,0,1,0,product_mng,low
IND18383,81%,90%,4,226,5,0,1,0,product_mng,medium
IND10597,85%,98%,5,248,5,0,1,0,product_mng,medium
IND21832,10%,87%,6,286,4,0,1,0,IT,medium
IND42704,37%,54%,2,145,3,0,1,0,RandD,medium
IND24889,9%,97%,7,254,4,1,1,0,RandD,medium
IND42455,44%,53%,2,127,3,0,1,0,RandD,medium
IND13842,86%,93%,5,223,5,0,1,0,RandD,medium
IND21827,77%,100%,4,255,5,0,1,0,RandD,medium
IND33940,41%,48%,2,136,3,0,1,0,marketing,medium
IND35104,40%,48%,2,137,3,0,1,0,sales,medium
IND12113,43%,49%,2,135,3,0,1,0,accounting,medium
IND19427,43%,50%,2,137,3,0,1,0,support,medium
IND37240,80%,53%,3,255,5,0,1,0,technical,high
IND42009,80%,85%,4,273,5,0,1,0,management,low
IND05309,82%,98%,5,234,5,0,1,0,marketing,medium
IND25359,37%,54%,2,152,3,0,1,0,marketing,medium
IND06000,37%,48%,2,134,3,0,1,0,marketing,medium
IND24351,9%,95%,6,292,4,0,1,0,sales,medium
IND07890,90%,92%,5,245,5,0,1,0,sales,low
IND08028,41%,52%,2,159,3,0,1,0,sales,low
IND24567,10%,85%,6,260,4,0,1,0,sales,low
IND43807,44%,53%,2,149,3,0,1,0,sales,low
IND17425,89%,85%,5,266,5,0,1,0,sales,low
IND19288,42%,56%,2,149,3,0,1,0,sales,low
IND17008,87%,100%,5,242,5,0,1,0,sales,low
IND15254,45%,57%,2,134,3,0,1,0,sales,low
IND10863,11%,87%,5,271,4,0,1,0,sales,low
IND22262,9%,79%,6,275,4,0,1,0,sales,low
IND34043,76%,83%,5,227,5,0,1,0,sales,low
IND31522,11%,96%,7,277,5,0,1,0,sales,low
IND24223,37%,49%,2,151,3,0,1,0,sales,low
IND36904,10%,79%,6,274,4,0,1,0,sales,low
IND10536,77%,87%,4,242,6,0,1,0,sales,low
IND25101,42%,54%,2,143,3,1,1,0,sales,low
IND17067,38%,52%,2,145,3,0,1,0,sales,low
IND22772,32%,95%,5,172,2,0,1,0,sales,low
IND23388,38%,49%,2,135,3,0,1,0,accounting,low
IND37431,19%,100%,4,192,4,0,1,0,accounting,low
IND38560,10%,83%,7,276,4,0,1,0,accounting,low
IND13288,76%,88%,4,206,4,0,1,0,hr,medium
IND32351,53%,56%,4,281,6,0,1,0,hr,medium
IND26529,39%,51%,2,151,3,0,1,0,hr,medium
IND01418,11%,83%,6,244,4,0,1,0,hr,medium
IND04738,10%,94%,6,309,4,0,1,0,technical,medium
IND40609,84%,100%,5,218,5,0,1,0,technical,medium
IND27440,82%,99%,4,263,6,0,1,0,technical,medium
IND05665,10%,82%,6,244,4,0,1,0,technical,medium
IND44483,59%,49%,7,263,4,0,1,0,technical,medium
IND01324,44%,48%,2,143,3,0,1,0,technical,medium
IND02691,89%,95%,2,181,5,0,1,0,technical,medium
IND30703,91%,84%,5,265,5,0,1,0,technical,medium
IND09106,66%,57%,5,161,5,0,1,0,technical,high
IND05801,11%,87%,7,282,5,0,1,0,technical,low
IND14500,43%,51%,2,155,3,0,1,0,technical,medium
IND33314,78%,83%,4,217,6,0,1,0,support,medium
IND34692,11%,97%,6,289,5,0,1,0,support,medium
IND35202,83%,98%,4,259,5,0,1,0,support,medium
IND18498,39%,54%,2,158,3,0,1,0,support,low
IND37090,38%,55%,2,158,3,0,1,0,support,low
IND02881,37%,57%,2,155,3,0,1,0,support,low
IND08688,44%,48%,2,146,3,0,1,0,support,low
IND18973,53%,85%,2,164,5,0,1,0,support,low
IND37820,9%,96%,6,259,4,0,1,0,support,low
IND40754,11%,89%,6,293,4,0,1,0,support,low
IND36953,83%,96%,5,275,5,0,1,0,support,low
IND02938,88%,100%,5,219,6,1,1,0,technical,low
IND27246,10%,89%,6,247,4,0,1,0,technical,low
IND06039,9%,86%,7,309,4,0,1,0,technical,low
IND19162,44%,54%,2,151,3,0,1,0,management,low
IND20583,39%,51%,2,129,3,0,1,0,IT,low
IND03238,87%,94%,4,274,5,0,1,0,IT,low
IND07968,74%,99%,4,233,5,0,1,0,IT,low
IND22029,10%,95%,7,289,4,0,1,0,IT,low
IND05649,74%,82%,4,239,6,0,1,0,IT,low
IND11090,75%,99%,5,221,5,0,1,0,product_mng,low
IND23958,41%,56%,2,150,3,0,1,0,product_mng,low
IND27981,41%,45%,2,144,3,1,1,0,product_mng,low
IND28838,9%,90%,7,289,4,0,1,0,product_mng,low
IND20591,9%,80%,6,301,5,0,1,0,IT,medium
IND06641,39%,57%,2,145,3,0,1,0,accounting,medium
IND30303,40%,56%,2,137,3,0,1,0,accounting,medium
IND12568,37%,54%,2,131,3,1,1,0,hr,medium
IND09205,10%,84%,6,246,4,0,1,0,hr,medium
IND12188,43%,51%,2,136,3,0,1,0,hr,medium
IND12244,75%,85%,5,240,6,1,1,0,marketing,medium
IND26251,37%,56%,2,156,3,0,1,0,sales,medium
IND15398,11%,85%,6,305,4,0,1,0,accounting,medium
IND05168,45%,45%,2,154,3,1,1,0,support,medium
IND21695,87%,100%,5,261,5,1,1,0,technical,medium
IND30407,11%,94%,7,244,4,0,1,0,management,medium
IND08180,45%,54%,2,129,3,0,1,0,marketing,high
IND34994,81%,87%,4,254,5,0,1,0,marketing,low
IND06513,77%,91%,5,236,5,0,1,0,marketing,medium
IND13049,89%,92%,5,237,5,0,1,0,sales,medium
IND24284,43%,49%,2,135,3,0,1,0,sales,medium
IND40912,78%,100%,5,236,5,0,1,0,sales,medium
IND41986,37%,47%,2,149,3,0,1,0,sales,low
IND16256,37%,50%,2,141,3,0,1,0,sales,low
IND01894,85%,82%,4,270,5,0,1,0,sales,low
IND22318,41%,47%,2,138,3,0,1,0,sales,low
IND24444,11%,96%,6,298,4,0,1,0,sales,low
IND19246,75%,99%,5,254,5,0,1,0,sales,low
IND43133,82%,85%,5,248,5,0,1,0,sales,low
IND16492,79%,100%,5,257,6,0,1,0,sales,low
IND13801,43%,53%,2,150,3,0,1,0,sales,low
IND22374,10%,90%,7,281,4,0,1,0,sales,low
IND23319,46%,48%,2,141,3,1,1,0,sales,low
IND07666,43%,57%,2,157,3,0,1,0,sales,low
IND05958,43%,55%,2,136,3,0,1,0,sales,low
IND42430,11%,80%,7,296,4,0,1,0,sales,low
IND11284,9%,86%,6,279,4,0,1,0,sales,low
IND32630,37%,53%,2,131,3,0,1,0,sales,low
IND18923,40%,57%,2,160,3,0,1,0,accounting,low
IND38865,10%,77%,7,291,4,0,1,0,accounting,low
IND07753,41%,53%,2,157,3,0,1,0,accounting,low
IND37573,79%,58%,3,294,4,0,1,0,hr,low
IND22209,11%,79%,7,310,4,0,1,0,hr,low
IND34918,10%,97%,6,282,4,0,1,0,hr,medium
IND41921,44%,51%,2,134,3,0,1,0,hr,medium
IND32081,25%,46%,4,214,4,0,1,0,technical,medium
IND03208,44%,52%,2,137,3,0,1,0,technical,medium
IND16461,73%,100%,4,252,5,0,1,0,technical,medium
IND25142,75%,97%,5,243,6,0,1,0,technical,medium
IND20951,36%,47%,2,148,3,0,1,0,technical,medium
IND35726,37%,49%,2,151,3,0,1,0,technical,medium
IND21419,39%,49%,2,129,3,0,1,0,technical,medium
IND38340,48%,78%,2,198,2,0,1,0,technical,medium
IND19201,57%,72%,4,275,6,0,1,0,technical,medium
IND10739,90%,96%,5,243,5,0,1,0,technical,medium
IND16087,39%,55%,2,159,3,0,1,0,technical,high
IND27416,44%,51%,2,145,3,0,1,0,support,low
IND42741,81%,88%,5,242,5,0,1,0,support,medium
IND13319,74%,87%,5,242,5,0,1,0,support,medium
IND35549,44%,56%,2,145,3,0,1,0,support,medium
IND03706,41%,56%,2,154,3,0,1,1,support,medium
IND07325,40%,51%,2,139,3,0,1,0,support,low
IND24154,46%,57%,2,152,3,0,1,0,support,low
IND24839,80%,83%,2,211,3,0,1,0,support,low
IND02151,87%,90%,5,258,5,0,1,0,support,low
IND33393,39%,54%,2,155,3,0,1,0,support,low
IND19940,38%,55%,2,148,3,0,1,0,support,low
IND20079,66%,67%,2,255,3,0,1,0,technical,low
IND28297,10%,80%,6,264,4,0,1,0,technical,low
IND27128,37%,54%,2,132,3,0,1,0,technical,low
IND31349,10%,77%,6,255,4,0,1,0,management,low
IND30700,9%,87%,5,263,4,0,1,0,IT,low
IND16587,86%,84%,5,222,5,0,1,0,IT,low
IND17677,11%,90%,6,263,4,0,1,0,IT,low
IND43324,37%,46%,2,157,3,0,1,0,IT,low
IND05241,11%,92%,7,307,4,0,1,0,IT,low
IND11317,77%,98%,5,259,6,0,1,0,product_mng,low
IND14551,84%,94%,5,222,6,0,1,0,product_mng,low
IND21230,10%,84%,7,250,4,0,1,0,product_mng,low
IND17743,83%,90%,5,245,5,0,1,0,product_mng,low
IND32407,11%,79%,6,292,4,0,1,0,IT,low
IND32944,86%,92%,5,252,5,0,1,0,RandD,low
IND12205,38%,56%,2,161,3,0,1,0,RandD,medium
IND10813,11%,88%,5,250,4,0,1,0,RandD,medium
IND03680,45%,49%,2,134,3,0,1,0,RandD,medium
IND20607,10%,85%,7,279,4,0,1,0,RandD,medium
IND42900,9%,95%,7,256,4,0,1,0,marketing,medium
IND02098,39%,53%,2,127,3,0,1,0,sales,medium
IND14635,37%,47%,2,138,3,1,1,0,accounting,medium
IND37664,81%,97%,5,243,5,0,1,0,support,medium
IND40998,9%,90%,7,296,4,0,1,0,technical,medium
IND04086,10%,88%,7,267,4,0,1,0,management,medium
IND04143,39%,49%,2,144,3,0,1,0,marketing,medium
IND10847,83%,95%,4,251,5,0,1,0,marketing,medium
IND29768,45%,57%,2,148,3,0,1,0,marketing,high
IND31261,43%,51%,2,141,3,0,1,0,sales,low
IND08542,80%,75%,3,268,2,0,1,0,sales,medium
IND21159,10%,86%,6,247,4,0,1,0,sales,medium
IND31162,10%,55%,2,247,4,0,1,0,sales,medium
IND31717,36%,52%,2,146,3,0,1,0,sales,medium
IND38105,38%,50%,2,140,3,0,1,0,sales,low
IND23662,78%,98%,5,263,6,0,1,0,sales,low
IND34816,44%,49%,2,145,3,0,1,0,sales,low
IND40837,41%,46%,2,156,3,1,1,0,sales,low
IND12932,72%,85%,5,244,6,0,1,0,sales,low
IND27664,46%,54%,2,144,3,0,1,0,sales,low
IND36381,10%,90%,7,286,4,0,1,0,sales,low
IND02182,34%,67%,4,141,2,0,1,0,sales,low
IND20126,11%,89%,6,260,5,0,1,0,sales,low
IND26713,38%,56%,2,154,3,0,1,0,sales,low
IND20093,82%,92%,5,225,5,0,1,0,sales,low
IND08930,39%,57%,2,127,3,0,1,0,sales,low
IND04848,44%,53%,2,140,3,0,1,0,sales,low
IND08979,43%,52%,2,147,3,0,1,0,sales,low
IND21075,84%,83%,4,227,5,0,1,0,accounting,low
IND34888,43%,48%,2,153,3,0,1,0,accounting,low
IND41175,37%,52%,2,128,3,0,1,0,accounting,low
IND26403,74%,97%,4,228,5,0,1,0,hr,low
IND32796,73%,97%,5,235,5,0,1,0,hr,low
IND10497,37%,47%,2,148,3,0,1,0,hr,low
IND20374,58%,62%,4,238,3,0,1,0,hr,low
IND07668,40%,54%,2,141,3,0,1,0,technical,medium
IND17972,51%,83%,5,249,4,0,1,0,technical,medium
IND0921,46%,50%,2,151,3,0,1,0,technical,medium
IND43921,45%,54%,2,129,3,0,1,0,technical,medium
IND09833,46%,50%,2,156,3,0,1,0,technical,medium
IND22192,39%,45%,2,134,3,0,1,0,technical,medium
IND32249,9%,88%,6,269,4,0,1,0,technical,medium
IND34388,9%,77%,6,290,4,0,1,0,technical,medium
IND01733,37%,51%,2,132,3,0,1,0,technical,medium
IND03272,10%,89%,7,308,4,0,1,0,technical,medium
IND04269,77%,100%,4,232,5,0,1,0,technical,medium
IND02615,79%,86%,5,235,5,0,1,0,support,medium
IND43208,43%,55%,2,130,3,0,1,0,support,high
IND35622,38%,53%,2,146,3,0,1,0,support,low
IND41956,77%,91%,5,221,6,0,1,0,support,medium
IND18926,44%,50%,2,130,3,0,1,0,support,medium
IND13053,39%,46%,2,136,3,0,1,0,support,medium
IND13181,78%,89%,5,274,6,0,1,0,support,medium
IND37399,10%,79%,6,256,5,0,1,0,support,low
IND24064,10%,77%,5,276,4,0,1,0,support,low
IND40964,75%,85%,5,267,5,0,1,0,support,low
IND42333,46%,62%,6,213,3,0,1,0,support,low
IND30739,91%,97%,4,274,6,0,1,0,technical,low
IND32985,10%,92%,6,258,4,0,1,0,technical,low
IND04681,72%,60%,3,153,5,0,1,0,technical,low
IND20017,11%,95%,6,245,4,0,1,0,management,low
IND44990,11%,94%,6,264,4,0,1,0,IT,low
IND18895,46%,57%,2,154,3,0,1,0,IT,low
IND02028,37%,46%,2,149,3,0,1,0,IT,low
IND19751,46%,50%,2,157,3,0,1,0,IT,low
IND35591,43%,57%,2,127,3,0,1,0,IT,low
IND19736,11%,82%,6,270,4,0,1,0,product_mng,low
IND20998,73%,89%,5,236,6,0,1,0,product_mng,low
IND25336,43%,47%,2,158,3,0,1,0,product_mng,low
IND03883,86%,100%,5,229,5,0,1,0,product_mng,low
IND19525,10%,83%,6,269,4,0,1,0,IT,low
IND23659,40%,49%,2,128,3,0,1,0,sales,low
IND30109,11%,87%,7,278,4,0,1,0,sales,low
IND32952,86%,98%,3,158,5,0,1,0,sales,low
IND38166,42%,100%,3,202,3,0,1,0,sales,medium
IND42564,79%,84%,4,240,5,0,1,0,sales,medium
IND02877,10%,96%,7,255,4,0,1,0,marketing,medium
IND04457,9%,92%,7,254,4,0,1,0,sales,medium
IND06989,9%,82%,6,257,4,0,1,0,accounting,medium
IND01598,87%,100%,4,228,5,0,1,0,support,medium
IND13179,36%,49%,2,145,3,0,1,0,technical,medium
IND32075,42%,75%,3,218,4,0,1,0,management,medium
IND35219,84%,86%,5,268,5,0,1,0,marketing,medium
IND15759,10%,83%,6,278,4,0,1,0,marketing,medium
IND37483,78%,71%,3,249,5,0,1,0,marketing,medium
IND25668,35%,99%,3,236,4,0,1,0,sales,medium
IND44321,10%,81%,7,291,4,0,1,0,sales,high
IND10444,11%,80%,6,306,4,0,1,0,sales,low
IND20564,43%,48%,2,135,3,0,1,0,sales,medium
IND01572,38%,45%,2,156,3,0,1,0,sales,medium
IND34273,46%,54%,2,143,3,0,1,0,sales,medium
IND38832,89%,82%,4,243,5,0,1,0,sales,medium
IND20145,45%,50%,2,147,3,0,1,0,sales,low
IND03101,44%,53%,2,159,3,0,1,0,sales,low
IND10512,74%,54%,5,216,3,0,1,0,sales,low
IND41127,45%,54%,2,152,3,0,1,0,sales,low
IND07192,79%,93%,4,226,5,0,1,0,sales,low
IND07581,79%,91%,5,271,5,0,1,0,sales,low
IND08629,11%,87%,6,255,4,0,1,0,sales,low
IND16656,42%,48%,2,140,3,0,1,0,sales,low
IND0604,64%,90%,6,252,2,0,1,0,sales,low
IND0957,40%,55%,2,159,3,0,1,0,sales,low
IND11630,84%,98%,5,270,5,0,1,0,sales,low
IND02115,73%,92%,5,232,5,0,1,0,sales,low
IND34984,40%,51%,2,144,3,0,1,0,accounting,low
IND36130,36%,45%,2,127,3,0,1,0,accounting,low
IND41547,43%,47%,2,131,3,0,1,0,accounting,low
IND29216,11%,78%,6,243,4,0,1,0,hr,low
IND14399,91%,100%,5,244,6,0,1,0,hr,low
IND43458,80%,100%,5,260,5,0,1,0,hr,low
IND11429,42%,49%,2,139,3,0,1,0,hr,low
IND37273,31%,87%,4,184,3,0,1,0,technical,low
IND39614,44%,47%,2,130,3,0,1,0,technical,low
IND07631,38%,54%,2,135,3,0,1,0,technical,medium
IND36146,45%,56%,2,146,3,0,1,0,technical,medium
IND12275,43%,46%,2,149,3,0,1,0,technical,medium
IND25137,45%,46%,2,153,3,1,1,0,technical,medium
IND25767,43%,57%,2,160,3,0,1,0,technical,medium
IND28222,43%,49%,2,160,3,0,1,0,technical,medium
IND12606,9%,83%,6,282,4,0,1,0,technical,medium
IND0353,43%,47%,2,128,3,0,1,0,technical,medium
IND09781,79%,94%,4,232,5,0,1,0,technical,medium
IND04581,85%,58%,3,226,2,0,1,0,support,medium
IND30217,38%,45%,2,129,3,0,1,0,support,medium
IND27831,11%,92%,7,255,4,0,1,0,support,medium
IND02428,83%,99%,5,258,5,0,1,0,support,high
IND11084,81%,91%,4,229,5,0,1,0,support,low
IND29035,42%,56%,2,143,3,0,1,0,support,medium
IND43286,11%,87%,6,257,4,0,1,0,support,medium
IND13466,11%,85%,7,275,4,0,1,0,support,medium
IND37486,10%,89%,7,291,4,0,1,0,support,medium
IND11298,50%,54%,5,153,4,0,1,0,support,low
IND29621,44%,49%,2,154,3,0,1,0,support,low
IND27738,11%,90%,6,301,4,0,1,0,technical,low
IND36534,39%,52%,2,134,3,0,1,0,technical,low
IND40501,11%,78%,6,245,4,0,1,0,technical,low
IND25745,36%,50%,2,132,3,0,1,0,management,low
IND31873,43%,51%,2,130,3,0,1,0,IT,low
IND23980,40%,50%,2,127,3,0,1,0,IT,low
IND31948,86%,84%,4,246,6,0,1,0,IT,low
IND01852,38%,49%,2,145,3,0,1,0,IT,low
IND03304,46%,45%,2,138,3,0,1,1,IT,low
IND15035,37%,57%,2,129,3,0,1,0,product_mng,low
IND30146,43%,52%,2,150,3,0,1,0,product_mng,low
IND10466,66%,93%,5,253,5,0,1,0,product_mng,low
IND18113,37%,48%,2,160,3,0,1,0,product_mng,low
IND25911,77%,92%,5,235,5,0,1,0,IT,low
IND31320,38%,55%,2,151,3,0,1,0,sales,low
IND33674,39%,54%,2,127,3,0,1,0,sales,low
IND37293,41%,55%,2,151,3,0,1,0,sales,low
IND39444,10%,90%,7,290,4,0,1,0,sales,low
IND04627,9%,93%,6,249,4,0,1,0,sales,low
IND06005,41%,47%,2,131,3,0,1,0,marketing,medium
IND08463,39%,46%,2,159,3,0,1,0,sales,medium
IND34567,83%,99%,4,223,5,0,1,0,accounting,medium
IND34163,9%,87%,3,214,2,0,1,0,support,medium
IND10935,75%,81%,5,227,5,0,1,0,technical,medium
IND25124,44%,54%,2,127,3,0,1,0,management,medium
IND37120,10%,84%,6,293,5,0,1,0,marketing,medium
IND25468,42%,46%,2,141,3,0,1,0,marketing,medium
IND35108,10%,83%,6,300,4,0,1,0,marketing,medium
IND18111,10%,86%,6,309,4,0,1,0,sales,medium
IND25003,31%,77%,4,149,3,0,1,0,sales,medium
IND43867,42%,54%,2,159,3,0,1,0,sales,medium
IND01688,38%,50%,2,152,3,0,1,0,sales,high
IND19136,39%,57%,2,158,3,0,1,0,sales,low
IND22254,10%,97%,6,254,5,0,1,0,sales,medium
IND40649,11%,93%,6,294,4,0,1,0,sales,medium
IND06410,10%,92%,7,269,4,0,1,0,sales,medium
IND16985,11%,90%,7,247,4,0,1,0,sales,medium
IND13574,44%,65%,3,271,4,0,1,0,sales,low
IND0686,91%,96%,4,232,5,0,1,0,sales,low
IND10631,72%,100%,4,245,5,0,1,0,sales,low
IND20355,36%,46%,2,132,3,0,1,0,sales,low
IND25072,44%,57%,2,131,3,0,1,0,sales,low
IND41459,85%,99%,5,248,5,0,1,0,sales,low
IND43008,78%,93%,5,225,5,0,1,0,sales,low
IND44648,39%,46%,2,156,3,0,1,0,sales,low
IND32574,78%,81%,3,222,2,0,1,0,sales,low
IND31258,10%,92%,6,243,4,1,1,0,sales,low
IND12083,23%,99%,4,204,4,1,1,0,accounting,low
IND29034,11%,87%,6,301,4,0,1,0,accounting,low
IND03992,90%,83%,5,259,5,0,1,0,accounting,low
IND12875,91%,89%,4,247,5,0,1,0,hr,low
IND16318,11%,79%,7,295,4,0,1,0,hr,low
IND43057,43%,54%,2,150,3,0,1,0,hr,low
IND39517,45%,49%,2,151,3,0,1,0,hr,low
IND37016,11%,91%,5,291,4,0,1,0,technical,low
IND22669,11%,93%,6,253,4,1,1,0,technical,low
IND33403,43%,50%,2,161,3,0,1,0,technical,low
IND34711,91%,97%,4,251,6,0,1,0,technical,low
IND11092,43%,55%,2,153,3,0,1,0,technical,medium
IND13836,85%,82%,5,264,6,0,1,0,technical,medium
IND38899,10%,77%,6,310,4,0,1,0,technical,medium
IND39109,81%,95%,5,266,5,0,1,0,technical,medium
IND44881,36%,62%,4,237,2,0,1,0,technical,medium
IND03150,45%,54%,2,138,3,0,1,0,technical,medium
IND14208,86%,100%,5,227,5,0,1,0,technical,medium
IND14375,71%,100%,4,300,5,0,1,0,support,medium
IND31920,11%,97%,7,310,4,0,1,0,support,medium
IND14570,84%,93%,5,236,5,0,1,0,support,medium
IND36834,9%,97%,7,288,4,0,1,0,support,medium
IND37752,38%,49%,2,127,3,0,1,0,support,medium
IND43001,15%,55%,6,139,4,0,1,0,support,high
IND21426,10%,92%,7,253,4,1,1,0,support,low
IND43839,80%,97%,4,218,5,1,1,0,support,medium
IND21430,84%,97%,5,251,5,0,1,0,support,medium
IND27895,11%,87%,6,264,4,0,1,0,support,medium
IND41567,89%,79%,3,149,2,0,1,0,support,medium
IND44985,45%,51%,2,138,3,0,1,0,technical,low
IND02339,11%,93%,7,284,4,0,1,0,technical,low
IND37346,74%,93%,5,244,5,0,1,0,technical,low
IND08132,41%,50%,2,128,3,0,1,0,management,low
IND25946,44%,53%,2,154,3,0,1,0,IT,low
IND35226,37%,56%,2,138,3,0,1,0,IT,low
IND10965,11%,86%,6,308,4,0,1,0,IT,low
IND16617,10%,93%,6,269,4,0,1,0,IT,low
IND09568,70%,74%,6,136,3,0,1,0,IT,low
IND42330,59%,100%,2,160,5,0,1,0,product_mng,low
IND34540,38%,53%,2,138,3,0,1,0,product_mng,low
IND37572,72%,95%,4,220,5,0,1,0,product_mng,low
IND23292,73%,100%,5,274,5,0,1,0,product_mng,low
IND29752,39%,48%,2,161,3,0,1,0,IT,low
IND13534,89%,82%,5,224,6,0,1,0,RandD,low
IND26013,89%,100%,4,260,5,0,1,0,RandD,low
IND28286,11%,78%,6,300,4,1,1,0,RandD,low
IND10164,43%,56%,2,133,3,0,1,0,RandD,low
IND19787,9%,93%,6,308,4,0,1,0,RandD,low
IND21953,81%,90%,5,238,6,0,1,0,marketing,low
IND10372,37%,53%,2,126,3,0,1,0,sales,low
IND22583,36%,56%,2,138,3,0,1,0,accounting,medium
IND25797,11%,85%,6,299,4,0,1,0,support,medium
IND17877,10%,85%,6,254,4,0,1,0,technical,medium
IND15694,66%,47%,7,156,2,0,1,0,management,medium
IND44379,39%,47%,2,152,3,0,1,0,marketing,medium
IND19561,44%,51%,2,146,3,0,1,0,marketing,medium
IND30210,10%,84%,6,253,4,0,1,0,marketing,medium
IND14858,79%,94%,5,227,6,0,1,0,sales,medium
IND34869,10%,81%,6,301,4,1,1,0,sales,medium
IND38477,54%,94%,6,294,3,0,1,0,sales,medium
IND39971,37%,47%,2,151,3,0,1,0,sales,medium
IND16346,37%,57%,2,128,3,0,1,0,sales,medium
IND21184,82%,89%,5,217,5,0,1,0,sales,high
IND38421,45%,52%,2,160,3,0,1,0,sales,low
IND23823,79%,90%,5,263,5,0,1,0,sales,medium
IND07046,42%,56%,2,156,3,0,1,0,sales,medium
IND04570,10%,85%,6,273,4,0,1,0,sales,medium
IND24706,11%,78%,6,303,4,0,1,0,sales,medium
IND37577,74%,100%,4,253,5,0,1,0,sales,low
IND0958,10%,93%,6,270,4,0,1,0,sales,low
IND0200,79%,100%,4,218,5,0,1,0,sales,low
IND40413,43%,48%,2,144,3,0,1,0,sales,low
IND36293,41%,47%,2,154,3,0,1,0,sales,low
IND11490,39%,55%,2,146,3,0,1,0,sales,low
IND17875,10%,94%,6,260,4,0,1,0,sales,low
IND24274,82%,85%,5,218,5,0,1,0,sales,low
IND23901,41%,46%,2,128,3,0,1,0,accounting,low
IND31913,42%,56%,2,128,3,0,1,0,accounting,low
IND29278,74%,88%,4,248,6,0,1,0,accounting,low
IND27973,38%,57%,2,152,3,1,1,0,hr,low
IND28242,39%,56%,2,126,3,0,1,0,hr,low
IND05959,87%,94%,4,260,5,0,1,0,hr,low
IND0431,10%,90%,5,263,4,0,1,0,hr,low
IND20596,78%,100%,5,220,5,0,1,0,technical,low
IND32071,14%,73%,7,282,5,0,1,0,technical,low
IND23622,11%,94%,6,277,5,0,1,0,technical,low
IND42875,91%,94%,5,257,5,0,1,0,technical,low
IND06382,49%,63%,6,265,3,0,1,0,technical,low
IND19669,38%,47%,2,143,3,0,1,0,technical,low
IND23852,82%,97%,5,263,5,0,1,0,technical,medium
IND13076,38%,88%,3,154,4,0,1,0,technical,medium
IND03038,89%,100%,5,253,5,0,1,0,technical,medium
IND11647,11%,79%,6,294,4,0,1,0,technical,medium
IND25490,37%,51%,2,128,3,0,1,0,technical,medium
IND27050,38%,50%,2,153,3,0,1,0,support,medium
IND03040,78%,87%,5,256,5,0,1,0,support,medium
IND05505,41%,51%,2,127,3,0,1,0,support,medium
IND19011,41%,51%,2,137,3,0,1,0,support,medium
IND22841,11%,83%,6,295,4,0,1,0,support,medium
IND41180,11%,79%,6,281,4,0,1,0,support,medium
IND42619,43%,57%,2,131,3,1,1,0,support,medium
IND22296,75%,86%,5,237,5,0,1,0,support,high
IND23494,74%,99%,4,276,5,0,1,0,support,low
IND31449,85%,85%,5,267,5,0,1,0,support,medium
IND35383,73%,92%,5,266,5,0,1,0,support,medium
IND43533,10%,79%,6,294,4,0,1,0,technical,medium
IND08254,44%,56%,2,134,3,0,1,0,technical,medium
IND12032,30%,56%,3,309,4,1,1,0,technical,low
IND40832,11%,77%,7,273,4,0,1,0,management,low
IND12485,84%,83%,5,238,5,0,1,0,IT,low
IND43086,78%,94%,5,271,6,0,1,0,IT,low
IND23889,43%,53%,2,145,3,0,1,0,IT,low
IND34318,36%,55%,2,152,3,0,1,0,IT,low
IND23584,43%,47%,2,128,3,0,1,0,IT,low
IND26381,45%,46%,2,142,3,0,1,0,product_mng,low
IND0465,76%,93%,5,238,5,0,1,0,product_mng,low
IND15162,10%,78%,7,286,4,0,1,0,product_mng,low
IND15440,9%,86%,6,291,4,0,1,0,product_mng,low
IND14332,92%,100%,5,259,5,0,1,0,IT,low
IND44473,92%,90%,5,248,5,0,1,0,sales,low
IND30941,79%,98%,4,271,5,0,1,0,sales,low
IND06514,43%,51%,2,140,3,0,1,0,sales,low
IND25591,80%,95%,4,274,5,0,1,0,sales,low
IND0488,44%,49%,2,127,3,1,1,0,sales,low
IND0889,89%,87%,5,275,6,0,1,0,marketing,low
IND06154,48%,88%,3,239,3,0,1,0,sales,low
IND36386,11%,82%,6,304,4,1,1,0,accounting,low
IND11588,38%,55%,2,145,3,0,1,0,support,low
IND23371,11%,85%,6,259,4,0,1,0,technical,medium
IND44870,82%,86%,4,264,5,0,1,0,management,medium
IND09094,37%,45%,2,160,3,0,1,0,marketing,medium
IND11067,40%,48%,2,138,3,0,1,0,marketing,medium
IND17479,43%,47%,2,137,3,0,1,0,marketing,medium
IND39051,44%,50%,2,156,3,0,1,0,sales,medium
IND31062,42%,56%,2,147,3,0,1,0,sales,medium
IND39452,11%,80%,7,243,4,0,1,0,sales,medium
IND07935,78%,87%,4,236,5,0,1,0,sales,medium
IND25007,46%,86%,2,212,4,0,1,0,sales,medium
IND39646,77%,91%,5,261,6,0,1,0,sales,medium
IND32542,83%,82%,4,243,5,0,1,0,sales,medium
IND40827,32%,58%,5,271,5,0,1,0,sales,high
IND42834,90%,92%,5,154,4,0,1,0,sales,low
IND14777,42%,52%,2,151,3,0,1,0,sales,medium
IND20139,10%,96%,6,254,4,1,1,0,sales,medium
IND32987,10%,91%,6,285,4,0,1,0,sales,medium
IND13214,44%,49%,2,130,3,0,1,0,sales,medium
IND19993,10%,95%,7,301,4,0,1,0,sales,low
IND08798,11%,80%,6,286,4,0,1,0,sales,low
IND23266,10%,89%,6,246,4,0,1,0,sales,low
IND05125,39%,47%,2,135,3,0,1,0,sales,low
IND11215,92%,92%,4,245,5,0,1,0,sales,low
IND28874,43%,56%,2,136,3,0,1,0,sales,low
IND37301,11%,89%,6,301,4,0,1,0,accounting,low
IND06357,81%,100%,5,235,5,0,1,0,accounting,low
IND21038,11%,85%,7,272,4,0,1,0,accounting,low
IND33052,87%,100%,5,274,5,0,1,0,hr,low
IND38142,37%,46%,2,131,3,0,1,0,hr,low
IND33020,39%,56%,2,135,3,0,1,0,hr,low
IND0562,61%,86%,4,196,4,0,1,0,hr,low
IND30229,11%,95%,6,285,4,0,1,0,technical,low
IND41072,9%,90%,7,289,5,0,1,0,technical,low
IND20585,36%,52%,2,157,3,0,1,0,technical,low
IND25763,9%,94%,6,308,4,0,1,0,technical,low
IND38385,41%,71%,4,301,5,0,1,0,technical,low
IND17675,40%,46%,2,131,3,0,1,0,technical,low
IND19660,10%,91%,6,262,5,1,1,0,technical,low
IND02593,46%,53%,2,143,3,1,1,0,technical,low
IND25604,39%,57%,2,133,3,0,1,0,technical,medium
IND18589,41%,50%,2,153,3,0,1,0,technical,medium
IND11924,10%,94%,7,281,4,0,1,0,technical,medium
IND20324,39%,51%,2,132,3,0,1,0,support,medium
IND43628,73%,83%,5,270,5,1,1,0,support,medium
IND02240,41%,45%,2,150,3,0,1,0,support,medium
IND08791,37%,51%,2,140,3,0,1,0,support,medium
IND08580,38%,50%,2,150,3,1,1,0,support,medium
IND38989,80%,63%,5,180,5,0,1,0,support,medium
IND33819,9%,85%,5,281,4,0,1,0,support,medium
IND35853,85%,92%,4,275,5,0,1,0,support,medium
IND01962,42%,54%,2,130,3,0,1,0,support,medium
IND33612,41%,48%,2,130,3,0,1,0,support,high
IND15829,38%,46%,2,147,3,0,1,0,support,low
IND25831,72%,100%,5,264,5,0,1,0,technical,medium
IND27726,11%,74%,6,290,5,0,1,0,technical,medium
IND42594,37%,47%,2,150,3,0,1,0,technical,medium
IND09580,10%,81%,6,304,4,0,1,0,management,medium
IND29182,36%,54%,2,136,3,0,1,0,IT,low
IND09674,92%,94%,5,307,5,0,1,0,IT,low
IND31875,11%,87%,5,303,4,0,1,0,IT,low
IND24042,39%,56%,2,156,3,0,1,0,IT,low
IND09527,11%,95%,6,271,4,0,1,0,IT,low
IND19915,45%,45%,2,140,3,0,1,0,product_mng,low
IND24707,44%,55%,2,130,3,1,1,0,product_mng,low
IND26944,85%,97%,4,266,6,0,1,0,product_mng,low
IND04441,43%,52%,2,139,3,0,1,0,product_mng,low
IND24770,75%,86%,5,260,5,0,1,0,IT,low
IND12510,11%,55%,2,137,3,1,1,0,RandD,low
IND14607,36%,50%,2,158,3,0,1,0,RandD,low
IND36369,10%,79%,6,249,4,0,1,0,RandD,low
IND42067,74%,89%,5,259,5,0,1,0,RandD,low
IND13110,40%,46%,2,144,3,0,1,0,RandD,low
IND11621,9%,77%,6,244,4,0,1,0,marketing,low
IND02056,76%,91%,4,219,5,0,1,0,sales,low
IND32234,45%,57%,2,151,3,0,1,0,accounting,low
IND36003,84%,88%,4,269,5,0,1,0,support,low
IND40225,38%,45%,2,127,3,0,1,0,technical,low
IND21012,38%,46%,2,144,3,0,1,0,management,low
IND31622,38%,54%,2,157,3,0,1,0,marketing,medium
IND34493,86%,94%,5,224,5,0,1,0,marketing,medium
IND23059,37%,46%,2,155,3,0,1,0,marketing,medium