-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHR-dataset.csv
We can't make this file beautiful and searchable because it's too large.
15000 lines (15000 loc) · 633 KB
/
HR-dataset.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
empid,satisfaction_level,last_evaluation,number_project,average_montly_hours,time_spend_company,Work_accident,left,promotion_last_5years,dept,salary
1001,0.38,0.53,2,157,3,0,1,0,sales,low
1002,0.8,0.86,5,262,6,0,1,0,sales,medium
1003,0.11,0.88,7,272,4,0,1,0,sales,medium
1004,0.72,0.87,5,223,5,0,1,0,sales,low
1005,0.37,0.52,2,159,3,0,1,0,sales,low
1006,0.41,0.5,2,153,3,0,1,0,sales,low
1007,0.1,0.77,6,247,4,0,1,0,sales,low
1008,0.92,0.85,5,259,5,0,1,0,sales,low
1009,0.89,1,5,224,5,0,1,0,sales,low
1010,0.42,0.53,2,142,3,0,1,0,sales,low
1011,0.45,0.54,2,135,3,0,1,0,sales,low
1012,0.11,0.81,6,305,4,0,1,0,sales,low
1013,0.84,0.92,4,234,5,0,1,0,sales,low
1014,0.41,0.55,2,148,3,0,1,0,sales,low
1015,0.36,0.56,2,137,3,0,1,0,sales,low
1016,0.38,0.54,2,143,3,0,1,0,sales,low
1017,0.45,0.47,2,160,3,0,1,0,sales,low
1018,0.78,0.99,4,255,6,0,1,0,sales,low
1019,0.45,0.51,2,160,3,1,1,1,sales,low
1020,0.76,0.89,5,262,5,0,1,0,sales,low
1021,0.11,0.83,6,282,4,0,1,0,sales,low
1022,0.38,0.55,2,147,3,0,1,0,sales,low
1023,0.09,0.95,6,304,4,0,1,0,sales,low
1024,0.46,0.57,2,139,3,0,1,0,sales,low
1025,0.4,0.53,2,158,3,0,1,0,sales,low
1026,0.89,0.92,5,242,5,0,1,0,sales,low
1027,0.82,0.87,4,239,5,0,1,0,sales,low
1028,0.4,0.49,2,135,3,0,1,0,sales,low
1029,0.41,0.46,2,128,3,0,1,0,accounting,low
1030,0.38,0.5,2,132,3,0,1,0,accounting,low
1031,0.09,0.62,6,294,4,0,1,0,accounting,low
1032,0.45,0.57,2,134,3,0,1,0,hr,low
1033,0.4,0.51,2,145,3,0,1,0,hr,low
1034,0.45,0.55,2,140,3,0,1,0,hr,low
1035,0.84,0.87,4,246,6,0,1,0,hr,low
1036,0.1,0.94,6,255,4,0,1,0,technical,low
1037,0.38,0.46,2,137,3,0,1,0,technical,low
1038,0.45,0.5,2,126,3,0,1,0,technical,low
1039,0.11,0.89,6,306,4,0,1,0,technical,low
1040,0.41,0.54,2,152,3,0,1,0,technical,low
1041,0.87,0.88,5,269,5,0,1,0,technical,low
1042,0.45,0.48,2,158,3,0,1,0,technical,low
1043,0.4,0.46,2,127,3,0,1,0,technical,low
1044,0.1,0.8,7,281,4,0,1,0,technical,low
1045,0.09,0.89,6,276,4,0,1,0,technical,low
1046,0.84,0.74,3,182,4,0,1,0,technical,low
1047,0.4,0.55,2,147,3,0,1,0,support,low
1048,0.57,0.7,3,273,6,0,1,0,support,low
1049,0.4,0.54,2,148,3,0,1,0,support,low
1050,0.43,0.47,2,147,3,0,1,0,support,low
1051,0.13,0.78,6,152,2,0,1,0,support,low
1052,0.44,0.55,2,135,3,0,1,0,support,low
1053,0.38,0.55,2,134,3,0,1,0,support,low
1054,0.39,0.54,2,132,3,0,1,0,support,low
1055,0.1,0.92,7,307,4,0,1,0,support,low
1056,0.37,0.46,2,140,3,0,1,0,support,low
1057,0.11,0.94,7,255,4,0,1,0,support,low
1058,0.1,0.81,6,309,4,0,1,0,technical,low
1059,0.38,0.54,2,128,3,0,1,0,technical,low
1060,0.85,1,4,225,5,0,1,0,technical,low
1061,0.85,0.91,5,226,5,0,1,0,management,medium
1062,0.11,0.93,7,308,4,0,1,0,IT,medium
1063,0.1,0.95,6,244,5,0,1,0,IT,medium
1064,0.36,0.56,2,132,3,0,1,0,IT,medium
1065,0.11,0.94,6,286,4,0,1,0,IT,medium
1066,0.81,0.7,6,161,4,0,1,0,IT,medium
1067,0.43,0.54,2,153,3,0,1,0,product_mng,medium
1068,0.9,0.98,4,264,6,0,1,0,product_mng,medium
1069,0.76,0.86,5,223,5,1,1,0,product_mng,medium
1070,0.43,0.5,2,135,3,0,1,0,product_mng,medium
1071,0.74,0.99,2,277,3,0,1,0,IT,medium
1072,0.09,0.77,5,275,4,0,1,0,product_mng,medium
1073,0.45,0.49,2,149,3,0,1,0,product_mng,high
1074,0.09,0.87,7,295,4,0,1,0,product_mng,low
1075,0.11,0.97,6,277,4,0,1,0,product_mng,medium
1076,0.11,0.79,7,306,4,0,1,0,product_mng,medium
1077,0.1,0.83,6,295,4,0,1,0,product_mng,medium
1078,0.4,0.54,2,137,3,0,1,0,marketing,medium
1079,0.43,0.56,2,157,3,0,1,0,sales,low
1080,0.39,0.56,2,142,3,0,1,0,accounting,low
1081,0.45,0.54,2,140,3,0,1,0,support,low
1082,0.38,0.49,2,151,3,0,1,0,technical,low
1083,0.79,0.59,4,139,3,0,1,1,management,low
1084,0.84,0.85,4,249,6,0,1,0,marketing,low
1085,0.11,0.77,6,291,4,0,1,0,marketing,low
1086,0.11,0.87,6,305,4,0,1,0,marketing,low
1087,0.17,0.84,5,232,3,0,1,0,sales,low
1088,0.44,0.45,2,132,3,0,1,0,sales,low
1089,0.37,0.57,2,130,3,0,1,0,sales,low
1090,0.1,0.79,6,291,4,0,1,0,sales,low
1091,0.4,0.5,2,130,3,0,1,0,sales,low
1092,0.89,1,5,246,5,0,1,0,sales,low
1093,0.42,0.48,2,143,3,0,1,0,sales,low
1094,0.46,0.55,2,129,3,0,1,0,sales,low
1095,0.09,0.83,6,255,4,0,1,0,sales,low
1096,0.37,0.51,2,155,3,0,1,0,sales,low
1097,0.1,0.77,6,265,4,0,1,0,sales,low
1098,0.1,0.84,6,279,4,0,1,0,sales,low
1099,0.11,0.97,6,284,4,0,1,0,sales,low
1100,0.9,1,5,221,6,0,1,0,sales,medium
1101,0.38,0.52,2,154,3,0,1,0,sales,medium
1102,0.36,0.52,2,147,3,0,1,0,sales,medium
1103,0.42,0.46,2,150,3,0,1,0,sales,medium
1104,0.09,0.94,7,267,4,0,1,0,sales,medium
1105,0.43,0.52,2,158,3,0,1,0,sales,medium
1106,0.24,0.46,7,224,5,0,1,0,accounting,medium
1107,0.91,1,4,257,5,0,1,0,accounting,medium
1108,0.44,0.5,2,148,3,0,1,0,accounting,medium
1109,0.71,0.87,3,177,4,0,1,0,hr,medium
1110,0.4,0.49,2,155,3,0,1,0,hr,medium
1111,0.43,0.47,2,144,3,0,1,0,hr,medium
1112,0.09,0.85,6,289,4,0,1,0,hr,high
1113,0.43,0.52,2,160,3,0,1,0,technical,low
1114,0.9,0.96,4,258,5,0,1,0,technical,medium
1115,0.84,1,5,234,5,0,1,0,technical,medium
1116,0.37,0.48,2,137,3,0,1,0,technical,medium
1117,0.86,0.68,5,263,2,0,1,0,technical,medium
1118,0.11,0.84,6,251,4,0,1,0,technical,low
1119,0.37,0.57,2,133,3,0,1,0,technical,low
1120,0.4,0.46,2,132,3,0,1,0,technical,low
1121,0.14,0.62,4,158,4,1,1,0,technical,low
1122,0.4,0.46,2,135,3,0,1,0,technical,low
1123,0.75,1,4,216,6,0,1,0,technical,low
1124,0.11,0.84,6,300,5,1,1,0,support,low
1125,0.46,0.49,2,138,3,0,1,0,support,low
1126,0.11,0.92,6,260,4,0,1,0,support,low
1127,0.38,0.49,2,132,3,0,1,0,support,low
1128,0.7,0.89,3,183,5,0,1,0,support,low
1129,0.09,0.82,6,250,4,0,1,0,support,low
1130,0.37,0.45,2,151,3,0,1,0,support,low
1131,0.1,0.83,6,292,4,0,1,0,support,low
1132,0.38,0.57,2,140,3,0,1,0,support,low
1133,0.9,1,5,221,5,0,1,0,support,low
1134,0.44,0.51,2,138,3,0,1,0,support,low
1135,0.36,0.5,2,132,3,0,1,0,technical,low
1136,0.31,0.84,7,133,5,0,1,0,technical,low
1137,0.1,0.84,6,283,4,1,1,0,technical,low
1138,0.42,0.48,2,129,3,0,1,0,management,low
1139,0.74,1,4,249,5,0,1,0,IT,low
1140,0.73,0.87,5,257,5,0,1,0,IT,low
1141,0.09,0.96,6,245,4,0,1,0,IT,low
1142,0.45,0.53,2,155,3,0,1,0,IT,low
1143,0.11,0.8,6,256,4,0,1,0,IT,low
1144,0.37,0.47,2,152,3,0,1,0,product_mng,low
1145,0.84,0.99,4,267,5,0,1,0,product_mng,low
1146,0.41,0.46,2,151,3,0,1,0,product_mng,low
1147,0.76,0.92,4,239,5,0,1,0,product_mng,low
1148,0.11,0.87,6,306,4,0,1,0,IT,low
1149,0.84,0.88,4,263,5,1,1,0,marketing,low
1150,0.39,0.5,2,147,3,0,1,0,marketing,low
1151,0.11,0.91,6,278,4,0,1,0,marketing,low
1152,0.45,0.56,2,154,3,0,1,0,marketing,low
1153,0.37,0.52,2,143,3,0,1,0,marketing,low
1154,0.4,0.52,2,155,3,0,1,0,marketing,low
1155,0.39,0.48,2,160,3,0,1,0,sales,low
1156,0.11,0.8,6,304,4,0,1,0,accounting,low
1157,0.83,1,5,240,5,0,1,0,support,low
1158,0.11,0.92,6,305,4,0,1,0,technical,low
1159,0.39,0.5,2,136,3,0,1,0,management,low
1160,0.45,0.45,2,132,3,0,1,0,marketing,low
1161,0.1,0.95,7,301,4,0,1,0,marketing,low
1162,0.9,0.98,5,243,6,0,1,0,marketing,low
1163,0.45,0.51,2,147,3,0,1,0,sales,low
1164,0.79,0.89,5,239,5,0,1,0,sales,low
1165,0.9,0.99,5,260,5,0,1,0,sales,low
1166,0.11,0.84,7,296,4,0,1,0,sales,low
1167,0.43,0.55,2,129,3,0,1,0,sales,low
1168,0.31,0.54,5,132,5,0,1,0,sales,low
1169,0.32,0.5,2,135,5,0,1,0,sales,low
1170,0.45,0.57,2,158,3,0,1,0,sales,low
1171,0.81,0.99,4,259,5,0,1,0,sales,low
1172,0.41,0.46,2,160,3,0,1,1,sales,low
1173,0.11,0.78,7,278,4,0,1,0,sales,low
1174,0.1,0.88,6,284,4,0,1,0,sales,low
1175,0.7,0.53,2,274,4,0,1,0,sales,low
1176,0.54,0.74,4,164,2,0,1,0,sales,low
1177,0.41,0.48,2,148,3,0,1,0,sales,low
1178,0.38,0.5,2,140,3,0,1,0,sales,medium
1179,0.37,0.51,2,127,3,0,1,0,sales,medium
1180,0.11,0.85,6,308,5,0,1,0,sales,medium
1181,0.4,0.47,2,146,3,0,1,0,sales,medium
1182,0.1,0.84,6,261,4,0,1,0,accounting,medium
1183,0.89,0.99,5,257,5,0,1,0,accounting,medium
1184,0.11,0.8,6,285,4,0,1,0,accounting,medium
1185,0.36,0.55,2,141,3,0,1,0,hr,medium
1186,0.4,0.46,2,127,3,0,1,0,hr,medium
1187,0.09,0.85,6,297,4,0,1,0,hr,medium
1188,0.4,0.46,2,143,3,0,1,0,hr,medium
1189,0.37,0.55,2,152,3,0,1,0,technical,medium
1190,0.44,0.51,2,156,3,0,1,0,technical,high
1191,0.09,0.8,7,283,5,0,1,0,technical,low
1192,0.92,0.87,4,226,6,1,1,0,technical,medium
1193,0.74,0.91,4,232,5,0,1,0,technical,medium
1194,0.09,0.82,6,249,4,0,1,0,technical,medium
1195,0.89,0.95,4,275,5,0,1,0,technical,medium
1196,0.09,0.8,6,304,4,0,1,0,technical,low
1197,0.27,0.54,7,278,3,0,1,0,technical,low
1198,0.1,0.91,6,287,4,0,1,0,technical,low
1199,0.1,0.89,7,285,4,0,1,0,technical,low
1200,0.77,0.94,5,226,6,0,1,0,support,low
1201,0.9,0.82,5,259,5,0,1,0,support,low
1202,0.39,0.5,2,135,3,0,1,0,support,low
1203,0.76,1,5,219,5,0,1,0,support,low
1204,0.1,0.93,6,256,4,0,1,0,support,low
1205,0.87,0.9,5,254,6,0,1,0,support,low
1206,0.38,0.5,2,153,3,0,1,0,support,low
1207,0.77,0.99,5,228,5,0,1,0,support,low
1208,0.78,0.87,4,228,5,0,1,0,support,low
1209,0.44,0.5,2,128,3,0,1,0,support,low
1210,0.38,0.52,2,153,3,0,1,0,support,low
1211,0.43,0.46,2,156,3,0,1,0,technical,low
1212,0.39,0.5,4,294,3,0,1,0,technical,low
1213,0.88,1,5,219,5,0,1,0,technical,low
1214,0.45,0.46,2,153,3,0,1,0,management,low
1215,0.4,0.53,2,151,3,0,1,0,IT,low
1216,0.36,0.51,2,155,3,0,1,0,IT,low
1217,0.36,0.48,2,158,3,0,1,0,IT,low
1218,0.9,0.98,5,245,5,0,1,0,IT,low
1219,0.43,0.53,2,131,3,0,1,0,IT,low
1220,0.89,0.87,5,225,5,0,1,0,product_mng,low
1221,0.1,0.84,6,286,4,0,1,0,product_mng,low
1222,0.37,0.5,2,135,3,0,1,0,product_mng,low
1223,0.37,0.51,2,153,3,0,1,0,product_mng,low
1224,0.87,0.9,5,252,5,0,1,0,IT,low
1225,0.4,0.56,2,149,3,0,1,0,accounting,low
1226,0.9,0.97,4,258,5,0,1,0,accounting,low
1227,0.37,0.46,2,158,3,0,1,0,hr,low
1228,0.44,0.54,2,149,3,0,1,0,hr,low
1229,0.85,0.95,5,236,5,0,1,0,hr,low
1230,0.78,0.98,5,239,6,0,1,0,marketing,low
1231,0.42,0.47,2,159,3,0,1,0,marketing,low
1232,0.92,0.99,5,255,6,0,1,0,sales,low
1233,0.11,0.83,6,244,4,0,1,0,accounting,low
1234,0.42,0.56,2,134,3,0,1,0,support,low
1235,0.48,0.57,4,270,4,0,1,0,technical,low
1236,0.83,0.85,4,255,5,0,1,0,management,low
1237,0.4,0.53,2,151,3,0,1,0,marketing,low
1238,0.43,0.45,2,135,3,0,1,0,marketing,low
1239,0.43,0.53,2,146,3,0,1,0,marketing,low
1240,0.1,0.97,7,254,4,0,1,0,sales,low
1241,0.1,0.87,7,289,4,0,1,0,sales,low
1242,0.37,0.46,2,156,3,0,1,0,sales,low
1243,0.38,0.53,2,156,3,0,1,0,sales,low
1244,0.4,0.5,2,128,3,0,1,0,sales,low
1245,0.89,0.86,5,275,5,0,1,0,sales,low
1246,0.45,0.46,2,155,3,0,1,0,sales,low
1247,0.37,0.48,2,159,3,0,1,0,sales,low
1248,0.46,0.49,2,148,3,0,1,0,sales,low
1249,0.87,0.91,4,228,5,0,1,0,sales,low
1250,0.11,0.84,6,298,4,0,1,0,sales,low
1251,0.79,0.87,5,261,5,0,1,0,sales,low
1252,0.79,0.92,5,254,6,0,1,0,sales,low
1253,0.19,0.59,7,192,3,0,1,0,sales,low
1254,0.87,0.98,4,248,5,0,1,0,sales,low
1255,0.6,0.92,2,258,5,0,1,0,sales,low
1256,0.44,0.45,2,156,3,0,1,0,sales,medium
1257,0.11,0.81,6,266,4,1,1,0,sales,medium
1258,0.42,0.54,2,156,3,0,1,0,sales,medium
1259,0.88,0.88,5,232,5,1,1,0,accounting,medium
1260,0.11,0.84,6,287,4,0,1,0,accounting,medium
1261,0.46,0.46,2,154,3,0,1,0,accounting,medium
1262,0.82,0.97,5,263,5,0,1,0,hr,medium
1263,0.44,0.56,2,131,3,0,1,0,hr,medium
1264,0.11,0.78,6,260,4,0,1,0,hr,medium
1265,0.42,0.5,2,139,3,0,1,0,hr,medium
1266,0.84,0.93,4,251,5,0,1,0,technical,medium
1267,0.11,0.95,6,286,4,0,1,0,technical,medium
1268,0.45,0.53,2,129,3,0,1,0,technical,high
1269,0.38,0.56,2,156,3,0,1,0,technical,low
1270,0.38,0.86,6,139,6,0,1,0,technical,medium
1271,0.44,0.51,2,127,3,0,1,0,technical,medium
1272,0.11,0.84,6,251,4,0,1,0,technical,medium
1273,0.81,0.93,5,270,5,0,1,0,technical,medium
1274,0.09,0.96,6,296,4,0,1,0,technical,low
1275,0.11,0.9,6,254,4,0,1,0,technical,low
1276,0.81,0.95,5,238,6,0,1,0,technical,low
1277,0.1,0.97,6,267,4,1,1,0,support,low
1278,0.74,0.89,5,229,6,0,1,0,support,low
1279,0.09,0.78,6,254,4,0,1,0,support,low
1280,0.82,0.81,4,233,4,1,1,0,support,low
1281,0.1,0.98,6,268,4,0,1,0,support,low
1282,0.27,0.56,3,301,3,0,1,0,support,low
1283,0.83,0.92,5,267,6,0,1,0,support,low
1284,0.1,0.93,6,289,4,1,1,0,support,low
1285,0.38,0.47,2,144,3,0,1,0,support,low
1286,0.4,0.56,2,148,3,0,1,0,support,low
1287,0.11,0.83,6,306,4,0,1,0,support,low
1288,0.11,0.79,6,292,4,0,1,1,technical,low
1289,0.82,0.91,5,232,5,0,1,0,technical,low
1290,0.36,0.48,2,137,3,0,1,0,technical,low
1291,0.4,0.46,2,128,3,0,1,0,management,low
1292,0.87,0.84,5,231,5,0,1,0,IT,low
1293,0.41,0.49,2,146,3,0,1,0,IT,low
1294,0.11,0.91,6,308,4,1,1,0,IT,low
1295,0.1,0.93,6,253,4,0,1,0,IT,medium
1296,0.38,0.51,2,146,3,0,1,0,IT,medium
1297,0.39,0.55,2,156,3,0,1,0,product_mng,medium
1298,0.4,0.52,2,147,3,0,1,0,product_mng,medium
1299,0.45,0.48,2,136,3,0,1,0,product_mng,medium
1300,0.74,0.84,5,249,5,0,1,0,product_mng,medium
1301,0.45,0.55,2,151,3,0,1,0,IT,medium
1302,0.12,1,3,278,4,0,1,0,RandD,medium
1303,0.1,0.77,7,250,5,0,1,0,RandD,medium
1304,0.37,0.55,2,127,3,0,1,0,RandD,medium
1305,0.89,0.87,5,255,5,0,1,0,RandD,medium
1306,0.45,0.47,2,135,3,0,1,0,RandD,medium
1307,0.37,0.46,2,149,3,0,1,0,marketing,high
1308,0.11,0.81,5,287,4,0,1,0,sales,low
1309,0.41,0.48,2,145,3,0,1,0,accounting,medium
1310,0.1,0.94,6,285,4,0,1,0,support,medium
1311,0.1,0.93,7,305,4,0,1,0,technical,medium
1312,0.11,0.95,7,300,4,0,1,0,management,medium
1313,0.4,0.54,2,139,3,0,1,0,marketing,low
1314,0.41,0.49,2,130,3,0,1,0,marketing,low
1315,0.1,0.81,6,268,4,0,1,0,marketing,low
1316,0.73,0.86,4,245,6,0,1,0,sales,low
1317,0.43,0.47,2,135,3,0,1,0,sales,low
1318,0.37,0.46,2,153,3,0,1,0,sales,low
1319,0.11,0.94,6,276,4,0,1,0,sales,low
1320,0.4,0.46,2,130,3,0,1,0,sales,low
1321,0.41,0.54,2,153,3,1,1,0,sales,low
1322,0.82,0.84,5,244,5,0,1,0,sales,low
1323,0.61,0.47,2,253,3,0,1,0,sales,low
1324,0.11,0.91,7,287,4,0,1,0,sales,low
1325,0.37,0.45,2,131,3,0,1,0,sales,low
1326,0.41,0.52,2,135,3,0,1,0,sales,low
1327,0.37,0.52,2,157,3,0,1,0,sales,low
1328,0.88,0.99,5,262,6,0,1,0,sales,low
1329,0.1,0.85,6,266,4,0,1,0,sales,low
1330,0.44,0.48,2,148,3,0,1,0,sales,low
1331,0.38,0.57,2,140,3,0,1,0,sales,low
1332,0.11,0.85,7,302,4,0,1,0,sales,low
1333,0.09,0.98,6,271,4,0,1,0,sales,low
1334,0.45,0.52,2,145,3,0,1,0,sales,medium
1335,0.1,0.81,6,290,4,0,1,0,accounting,medium
1336,0.45,0.47,2,151,3,0,1,0,accounting,medium
1337,0.77,0.87,5,266,5,0,1,0,accounting,medium
1338,0.44,0.51,2,140,3,0,1,0,hr,medium
1339,0.39,0.5,2,142,3,0,1,0,hr,medium
1340,0.1,0.91,6,246,4,0,1,0,hr,medium
1341,0.09,0.89,7,308,5,0,1,0,hr,medium
1342,0.37,0.47,2,141,3,0,1,0,technical,medium
1343,0.9,1,5,232,5,0,1,0,technical,medium
1344,0.41,0.56,2,143,3,0,1,0,technical,medium
1345,0.37,0.52,2,155,3,0,1,0,technical,medium
1346,0.1,0.86,6,278,4,0,1,0,technical,high
1347,0.81,1,4,253,5,0,1,0,technical,low
1348,0.11,0.8,6,282,4,0,1,0,technical,medium
1349,0.11,0.84,7,264,4,0,1,0,technical,medium
1350,0.4,0.46,2,149,3,0,1,0,technical,medium
1351,0.09,0.8,6,304,5,0,1,0,technical,medium
1352,0.48,0.93,3,219,6,0,1,0,technical,low
1353,0.91,0.91,4,262,6,0,1,0,support,low
1354,0.43,0.57,2,135,3,0,1,0,support,low
1355,0.33,0.88,6,219,5,0,1,0,support,low
1356,0.41,0.57,2,136,3,0,1,0,support,low
1357,0.41,0.55,2,154,3,0,1,0,support,low
1358,0.37,0.54,2,149,3,0,1,0,support,low
1359,0.31,0.62,6,135,5,0,1,0,support,low
1360,0.09,0.91,6,275,4,0,1,0,support,low
1361,0.1,0.87,6,290,4,0,1,0,support,low
1362,0.76,0.9,4,263,5,0,1,0,support,low
1363,0.41,0.54,2,145,3,0,1,0,support,low
1364,0.72,0.96,5,267,5,0,1,0,technical,low
1365,0.4,0.5,2,141,3,1,1,0,technical,low
1366,0.91,0.87,4,235,5,0,1,0,technical,low
1367,0.1,0.83,6,258,4,0,1,0,management,low
1368,0.4,0.56,2,131,3,0,1,0,IT,low
1369,0.82,0.86,5,243,5,0,1,0,IT,low
1370,0.1,0.82,6,266,4,0,1,0,IT,low
1371,0.37,0.45,2,142,3,0,1,0,IT,low
1372,0.36,0.51,2,135,3,0,1,0,IT,low
1373,0.39,0.48,2,141,3,0,1,0,product_mng,medium
1374,0.36,0.57,2,142,3,0,1,0,product_mng,medium
1375,0.86,0.84,5,254,5,0,1,0,product_mng,medium
1376,0.73,0.99,5,262,5,0,1,0,product_mng,medium
1377,0.56,0.71,4,296,2,0,1,0,IT,medium
1378,0.44,0.56,2,158,3,0,1,0,accounting,medium
1379,0.31,0.56,4,238,2,0,1,0,accounting,medium
1380,0.77,0.93,4,231,5,0,1,0,hr,medium
1381,0.44,0.45,2,156,3,0,1,0,hr,medium
1382,0.38,0.46,2,145,3,0,1,0,hr,medium
1383,0.45,0.48,2,144,3,0,1,0,marketing,medium
1384,0.38,0.51,2,159,3,0,1,0,sales,medium
1385,0.36,0.48,2,156,3,0,1,0,accounting,high
1386,0.75,0.9,5,256,5,0,1,0,support,low
1387,0.1,0.93,6,298,4,0,1,0,technical,medium
1388,0.1,0.97,6,247,4,0,1,0,management,medium
1389,0.45,0.5,2,157,3,0,1,0,marketing,medium
1390,0.42,0.57,2,154,3,1,1,0,marketing,medium
1391,0.78,1,4,253,5,0,1,0,marketing,low
1392,0.45,0.55,2,148,3,0,1,0,sales,low
1393,0.84,1,4,261,5,0,1,0,sales,low
1394,0.11,0.93,6,282,4,0,1,0,sales,low
1395,0.42,0.56,2,133,3,0,1,0,sales,low
1396,0.45,0.46,2,128,3,0,1,0,sales,low
1397,0.46,0.57,2,139,3,0,1,0,sales,low
1398,0.09,0.79,6,293,5,0,1,0,sales,low
1399,0.87,0.83,4,265,6,0,1,0,sales,low
1400,0.1,0.87,6,250,4,0,1,0,sales,low
1401,0.91,1,5,251,6,0,1,0,sales,low
1402,0.76,0.92,4,246,5,0,1,0,sales,low
1403,0.74,1,5,275,5,0,1,0,sales,low
1404,0.92,0.93,5,240,5,0,1,0,sales,low
1405,0.76,0.87,5,245,5,0,1,0,sales,low
1406,0.47,0.5,4,254,4,0,1,0,sales,low
1407,0.73,0.99,5,241,5,0,1,0,sales,low
1408,0.09,0.94,6,257,4,0,1,0,sales,low
1409,0.91,0.92,4,246,5,0,1,0,sales,low
1410,0.82,0.98,4,233,5,0,1,0,sales,low
1411,0.28,0.45,6,218,4,0,1,0,accounting,low
1412,0.84,0.99,4,262,6,0,1,0,accounting,medium
1413,0.45,0.53,2,138,3,0,1,0,accounting,medium
1414,0.45,0.54,2,142,3,0,1,0,hr,medium
1415,0.91,0.97,5,233,5,0,1,0,hr,medium
1416,0.42,0.48,2,155,3,0,1,0,hr,medium
1417,0.82,1,4,229,6,0,1,0,hr,medium
1418,0.11,0.9,6,264,4,0,1,0,technical,medium
1419,0.42,0.53,3,199,4,0,1,0,technical,medium
1420,0.82,0.85,4,223,5,0,1,0,technical,medium
1421,0.09,0.96,6,268,4,0,1,0,technical,medium
1422,0.1,0.94,6,287,4,0,1,0,technical,medium
1423,0.86,1,5,257,5,0,1,0,technical,medium
1424,0.4,0.46,2,143,3,0,1,0,technical,high
1425,0.45,0.46,2,130,3,0,1,0,technical,low
1426,0.42,0.51,2,136,3,0,1,0,technical,medium
1427,0.74,0.92,4,261,5,0,1,0,technical,medium
1428,0.55,0.6,3,180,4,0,1,0,technical,medium
1429,0.37,0.45,2,126,3,0,1,0,support,medium
1430,0.41,0.52,2,127,3,1,1,0,support,low
1431,0.89,0.65,5,195,6,0,1,0,support,low
1432,0.41,0.57,2,160,3,0,1,0,support,low
1433,0.44,0.51,2,150,3,0,1,0,support,low
1434,0.87,0.84,4,264,6,0,1,0,support,low
1435,0.1,0.84,6,309,4,0,1,0,support,low
1436,0.41,0.47,2,135,3,0,1,0,support,low
1437,0.11,0.85,6,261,4,0,1,0,support,low
1438,0.43,0.53,2,160,3,0,1,0,support,low
1439,0.77,0.9,4,237,5,0,1,0,support,low
1440,0.41,0.52,2,136,3,0,1,0,technical,low
1441,0.41,0.48,2,139,3,0,1,0,technical,low
1442,0.36,0.78,2,151,4,0,1,0,technical,low
1443,0.77,1,5,229,5,0,1,0,management,low
1444,0.81,0.98,5,245,5,0,1,0,IT,low
1445,0.39,0.54,2,127,3,0,1,0,IT,low
1446,0.09,0.94,6,283,5,0,1,0,IT,low
1447,0.44,0.46,2,143,3,0,1,0,IT,low
1448,0.1,0.84,5,298,4,0,1,0,IT,low
1449,0.36,0.48,2,159,3,0,1,0,product_mng,low
1450,0.81,0.92,5,239,5,0,1,0,product_mng,low
1451,0.81,0.9,4,226,5,0,1,0,product_mng,medium
1452,0.85,0.98,5,248,5,0,1,0,product_mng,medium
1453,0.1,0.87,6,286,4,0,1,0,IT,medium
1454,0.37,0.54,2,145,3,0,1,0,RandD,medium
1455,0.09,0.97,7,254,4,1,1,0,RandD,medium
1456,0.44,0.53,2,127,3,0,1,0,RandD,medium
1457,0.86,0.93,5,223,5,0,1,0,RandD,medium
1458,0.77,1,4,255,5,0,1,0,RandD,medium
1459,0.41,0.48,2,136,3,0,1,0,marketing,medium
1460,0.4,0.48,2,137,3,0,1,0,sales,medium
1461,0.43,0.49,2,135,3,0,1,0,accounting,medium
1462,0.43,0.5,2,137,3,0,1,0,support,medium
1463,0.8,0.53,3,255,5,0,1,0,technical,high
1464,0.8,0.85,4,273,5,0,1,0,management,low
1465,0.82,0.98,5,234,5,0,1,0,marketing,medium
1466,0.37,0.54,2,152,3,0,1,0,marketing,medium
1467,0.37,0.48,2,134,3,0,1,0,marketing,medium
1468,0.09,0.95,6,292,4,0,1,0,sales,medium
1469,0.9,0.92,5,245,5,0,1,0,sales,low
1470,0.41,0.52,2,159,3,0,1,0,sales,low
1471,0.1,0.85,6,260,4,0,1,0,sales,low
1472,0.44,0.53,2,149,3,0,1,0,sales,low
1473,0.89,0.85,5,266,5,0,1,0,sales,low
1474,0.42,0.56,2,149,3,0,1,0,sales,low
1475,0.87,1,5,242,5,0,1,0,sales,low
1476,0.45,0.57,2,134,3,0,1,0,sales,low
1477,0.11,0.87,5,271,4,0,1,0,sales,low
1478,0.09,0.79,6,275,4,0,1,0,sales,low
1479,0.76,0.83,5,227,5,0,1,0,sales,low
1480,0.11,0.96,7,277,5,0,1,0,sales,low
1481,0.37,0.49,2,151,3,0,1,0,sales,low
1482,0.1,0.79,6,274,4,0,1,0,sales,low
1483,0.77,0.87,4,242,6,0,1,0,sales,low
1484,0.42,0.54,2,143,3,1,1,0,sales,low
1485,0.38,0.52,2,145,3,0,1,0,sales,low
1486,0.32,0.95,5,172,2,0,1,0,sales,low
1487,0.38,0.49,2,135,3,0,1,0,accounting,low
1488,0.19,1,4,192,4,0,1,0,accounting,low
1489,0.1,0.83,7,276,4,0,1,0,accounting,low
1490,0.76,0.88,4,206,4,0,1,0,hr,medium
1491,0.53,0.56,4,281,6,0,1,0,hr,medium
1492,0.39,0.51,2,151,3,0,1,0,hr,medium
1493,0.11,0.83,6,244,4,0,1,0,hr,medium
1494,0.1,0.94,6,309,4,0,1,0,technical,medium
1495,0.84,1,5,218,5,0,1,0,technical,medium
1496,0.82,0.99,4,263,6,0,1,0,technical,medium
1497,0.1,0.82,6,244,4,0,1,0,technical,medium
1498,0.59,0.49,7,263,4,0,1,0,technical,medium
1499,0.44,0.48,2,143,3,0,1,0,technical,medium
1500,0.89,0.95,2,181,5,0,1,0,technical,medium
1501,0.91,0.84,5,265,5,0,1,0,technical,medium
1502,0.66,0.57,5,161,5,0,1,0,technical,high
1503,0.11,0.87,7,282,5,0,1,0,technical,low
1504,0.43,0.51,2,155,3,0,1,0,technical,medium
1505,0.78,0.83,4,217,6,0,1,0,support,medium
1506,0.11,0.97,6,289,5,0,1,0,support,medium
1507,0.83,0.98,4,259,5,0,1,0,support,medium
1508,0.39,0.54,2,158,3,0,1,0,support,low
1509,0.38,0.55,2,158,3,0,1,0,support,low
1510,0.37,0.57,2,155,3,0,1,0,support,low
1511,0.44,0.48,2,146,3,0,1,0,support,low
1512,0.53,0.85,2,164,5,0,1,0,support,low
1513,0.09,0.96,6,259,4,0,1,0,support,low
1514,0.11,0.89,6,293,4,0,1,0,support,low
1515,0.83,0.96,5,275,5,0,1,0,support,low
1516,0.88,1,5,219,6,1,1,0,technical,low
1517,0.1,0.89,6,247,4,0,1,0,technical,low
1518,0.09,0.86,7,309,4,0,1,0,technical,low
1519,0.44,0.54,2,151,3,0,1,0,management,low
1520,0.39,0.51,2,129,3,0,1,0,IT,low
1521,0.87,0.94,4,274,5,0,1,0,IT,low
1522,0.74,0.99,4,233,5,0,1,0,IT,low
1523,0.1,0.95,7,289,4,0,1,0,IT,low
1524,0.74,0.82,4,239,6,0,1,0,IT,low
1525,0.75,0.99,5,221,5,0,1,0,product_mng,low
1526,0.41,0.56,2,150,3,0,1,0,product_mng,low
1527,0.41,0.45,2,144,3,1,1,0,product_mng,low
1528,0.09,0.9,7,289,4,0,1,0,product_mng,low
1529,0.09,0.8,6,301,5,0,1,0,IT,medium
1530,0.39,0.57,2,145,3,0,1,0,accounting,medium
1531,0.4,0.56,2,137,3,0,1,0,accounting,medium
1532,0.37,0.54,2,131,3,1,1,0,hr,medium
1533,0.1,0.84,6,246,4,0,1,0,hr,medium
1534,0.43,0.51,2,136,3,0,1,0,hr,medium
1535,0.75,0.85,5,240,6,1,1,0,marketing,medium
1536,0.37,0.56,2,156,3,0,1,0,sales,medium
1537,0.11,0.85,6,305,4,0,1,0,accounting,medium
1538,0.45,0.45,2,154,3,1,1,0,support,medium
1539,0.87,1,5,261,5,1,1,0,technical,medium
1540,0.11,0.94,7,244,4,0,1,0,management,medium
1541,0.45,0.54,2,129,3,0,1,0,marketing,high
1542,0.81,0.87,4,254,5,0,1,0,marketing,low
1543,0.77,0.91,5,236,5,0,1,0,marketing,medium
1544,0.89,0.92,5,237,5,0,1,0,sales,medium
1545,0.43,0.49,2,135,3,0,1,0,sales,medium
1546,0.78,1,5,236,5,0,1,0,sales,medium
1547,0.37,0.47,2,149,3,0,1,0,sales,low
1548,0.37,0.5,2,141,3,0,1,0,sales,low
1549,0.85,0.82,4,270,5,0,1,0,sales,low
1550,0.41,0.47,2,138,3,0,1,0,sales,low
1551,0.11,0.96,6,298,4,0,1,0,sales,low
1552,0.75,0.99,5,254,5,0,1,0,sales,low
1553,0.82,0.85,5,248,5,0,1,0,sales,low
1554,0.79,1,5,257,6,0,1,0,sales,low
1555,0.43,0.53,2,150,3,0,1,0,sales,low
1556,0.1,0.9,7,281,4,0,1,0,sales,low
1557,0.46,0.48,2,141,3,1,1,0,sales,low
1558,0.43,0.57,2,157,3,0,1,0,sales,low
1559,0.43,0.55,2,136,3,0,1,0,sales,low
1560,0.11,0.8,7,296,4,0,1,0,sales,low
1561,0.09,0.86,6,279,4,0,1,0,sales,low
1562,0.37,0.53,2,131,3,0,1,0,sales,low
1563,0.4,0.57,2,160,3,0,1,0,accounting,low
1564,0.1,0.77,7,291,4,0,1,0,accounting,low
1565,0.41,0.53,2,157,3,0,1,0,accounting,low
1566,0.79,0.58,3,294,4,0,1,0,hr,low
1567,0.11,0.79,7,310,4,0,1,0,hr,low
1568,0.1,0.97,6,282,4,0,1,0,hr,medium
1569,0.44,0.51,2,134,3,0,1,0,hr,medium
1570,0.25,0.46,4,214,4,0,1,0,technical,medium
1571,0.44,0.52,2,137,3,0,1,0,technical,medium
1572,0.73,1,4,252,5,0,1,0,technical,medium
1573,0.75,0.97,5,243,6,0,1,0,technical,medium
1574,0.36,0.47,2,148,3,0,1,0,technical,medium
1575,0.37,0.49,2,151,3,0,1,0,technical,medium
1576,0.39,0.49,2,129,3,0,1,0,technical,medium
1577,0.48,0.78,2,198,2,0,1,0,technical,medium
1578,0.57,0.72,4,275,6,0,1,0,technical,medium
1579,0.9,0.96,5,243,5,0,1,0,technical,medium
1580,0.39,0.55,2,159,3,0,1,0,technical,high
1581,0.44,0.51,2,145,3,0,1,0,support,low
1582,0.81,0.88,5,242,5,0,1,0,support,medium
1583,0.74,0.87,5,242,5,0,1,0,support,medium
1584,0.44,0.56,2,145,3,0,1,0,support,medium
1585,0.41,0.56,2,154,3,0,1,1,support,medium
1586,0.4,0.51,2,139,3,0,1,0,support,low
1587,0.46,0.57,2,152,3,0,1,0,support,low
1588,0.8,0.83,2,211,3,0,1,0,support,low
1589,0.87,0.9,5,258,5,0,1,0,support,low
1590,0.39,0.54,2,155,3,0,1,0,support,low
1591,0.38,0.55,2,148,3,0,1,0,support,low
1592,0.66,0.67,2,255,3,0,1,0,technical,low
1593,0.1,0.8,6,264,4,0,1,0,technical,low
1594,0.37,0.54,2,132,3,0,1,0,technical,low
1595,0.1,0.77,6,255,4,0,1,0,management,low
1596,0.09,0.87,5,263,4,0,1,0,IT,low
1597,0.86,0.84,5,222,5,0,1,0,IT,low
1598,0.11,0.9,6,263,4,0,1,0,IT,low
1599,0.37,0.46,2,157,3,0,1,0,IT,low
1600,0.11,0.92,7,307,4,0,1,0,IT,low
1601,0.77,0.98,5,259,6,0,1,0,product_mng,low
1602,0.84,0.94,5,222,6,0,1,0,product_mng,low
1603,0.1,0.84,7,250,4,0,1,0,product_mng,low
1604,0.83,0.9,5,245,5,0,1,0,product_mng,low
1605,0.11,0.79,6,292,4,0,1,0,IT,low
1606,0.86,0.92,5,252,5,0,1,0,RandD,low
1607,0.38,0.56,2,161,3,0,1,0,RandD,medium
1608,0.11,0.88,5,250,4,0,1,0,RandD,medium
1609,0.45,0.49,2,134,3,0,1,0,RandD,medium
1610,0.1,0.85,7,279,4,0,1,0,RandD,medium
1611,0.09,0.95,7,256,4,0,1,0,marketing,medium
1612,0.39,0.53,2,127,3,0,1,0,sales,medium
1613,0.37,0.47,2,138,3,1,1,0,accounting,medium
1614,0.81,0.97,5,243,5,0,1,0,support,medium
1615,0.09,0.9,7,296,4,0,1,0,technical,medium
1616,0.1,0.88,7,267,4,0,1,0,management,medium
1617,0.39,0.49,2,144,3,0,1,0,marketing,medium
1618,0.83,0.95,4,251,5,0,1,0,marketing,medium
1619,0.45,0.57,2,148,3,0,1,0,marketing,high
1620,0.43,0.51,2,141,3,0,1,0,sales,low
1621,0.8,0.75,3,268,2,0,1,0,sales,medium
1622,0.1,0.86,6,247,4,0,1,0,sales,medium
1623,0.1,0.55,2,247,4,0,1,0,sales,medium
1624,0.36,0.52,2,146,3,0,1,0,sales,medium
1625,0.38,0.5,2,140,3,0,1,0,sales,low
1626,0.78,0.98,5,263,6,0,1,0,sales,low
1627,0.44,0.49,2,145,3,0,1,0,sales,low
1628,0.41,0.46,2,156,3,1,1,0,sales,low
1629,0.72,0.85,5,244,6,0,1,0,sales,low
1630,0.46,0.54,2,144,3,0,1,0,sales,low
1631,0.1,0.9,7,286,4,0,1,0,sales,low
1632,0.34,0.67,4,141,2,0,1,0,sales,low
1633,0.11,0.89,6,260,5,0,1,0,sales,low
1634,0.38,0.56,2,154,3,0,1,0,sales,low
1635,0.82,0.92,5,225,5,0,1,0,sales,low
1636,0.39,0.57,2,127,3,0,1,0,sales,low
1637,0.44,0.53,2,140,3,0,1,0,sales,low
1638,0.43,0.52,2,147,3,0,1,0,sales,low
1639,0.84,0.83,4,227,5,0,1,0,accounting,low
1640,0.43,0.48,2,153,3,0,1,0,accounting,low
1641,0.37,0.52,2,128,3,0,1,0,accounting,low
1642,0.74,0.97,4,228,5,0,1,0,hr,low
1643,0.73,0.97,5,235,5,0,1,0,hr,low
1644,0.37,0.47,2,148,3,0,1,0,hr,low
1645,0.58,0.62,4,238,3,0,1,0,hr,low
1646,0.4,0.54,2,141,3,0,1,0,technical,medium
1647,0.51,0.83,5,249,4,0,1,0,technical,medium
1648,0.46,0.5,2,151,3,0,1,0,technical,medium
1649,0.45,0.54,2,129,3,0,1,0,technical,medium
1650,0.46,0.5,2,156,3,0,1,0,technical,medium
1651,0.39,0.45,2,134,3,0,1,0,technical,medium
1652,0.09,0.88,6,269,4,0,1,0,technical,medium
1653,0.09,0.77,6,290,4,0,1,0,technical,medium
1654,0.37,0.51,2,132,3,0,1,0,technical,medium
1655,0.1,0.89,7,308,4,0,1,0,technical,medium
1656,0.77,1,4,232,5,0,1,0,technical,medium
1657,0.79,0.86,5,235,5,0,1,0,support,medium
1658,0.43,0.55,2,130,3,0,1,0,support,high
1659,0.38,0.53,2,146,3,0,1,0,support,low
1660,0.77,0.91,5,221,6,0,1,0,support,medium
1661,0.44,0.5,2,130,3,0,1,0,support,medium
1662,0.39,0.46,2,136,3,0,1,0,support,medium
1663,0.78,0.89,5,274,6,0,1,0,support,medium
1664,0.1,0.79,6,256,5,0,1,0,support,low
1665,0.1,0.77,5,276,4,0,1,0,support,low
1666,0.75,0.85,5,267,5,0,1,0,support,low
1667,0.46,0.62,6,213,3,0,1,0,support,low
1668,0.91,0.97,4,274,6,0,1,0,technical,low
1669,0.1,0.92,6,258,4,0,1,0,technical,low
1670,0.72,0.6,3,153,5,0,1,0,technical,low
1671,0.11,0.95,6,245,4,0,1,0,management,low
1672,0.11,0.94,6,264,4,0,1,0,IT,low
1673,0.46,0.57,2,154,3,0,1,0,IT,low
1674,0.37,0.46,2,149,3,0,1,0,IT,low
1675,0.46,0.5,2,157,3,0,1,0,IT,low
1676,0.43,0.57,2,127,3,0,1,0,IT,low
1677,0.11,0.82,6,270,4,0,1,0,product_mng,low
1678,0.73,0.89,5,236,6,0,1,0,product_mng,low
1679,0.43,0.47,2,158,3,0,1,0,product_mng,low
1680,0.86,1,5,229,5,0,1,0,product_mng,low
1681,0.1,0.83,6,269,4,0,1,0,IT,low
1682,0.4,0.49,2,128,3,0,1,0,sales,low
1683,0.11,0.87,7,278,4,0,1,0,sales,low
1684,0.86,0.98,3,158,5,0,1,0,sales,low
1685,0.42,1,3,202,3,0,1,0,sales,medium
1686,0.79,0.84,4,240,5,0,1,0,sales,medium
1687,0.1,0.96,7,255,4,0,1,0,marketing,medium
1688,0.09,0.92,7,254,4,0,1,0,sales,medium
1689,0.09,0.82,6,257,4,0,1,0,accounting,medium
1690,0.87,1,4,228,5,0,1,0,support,medium
1691,0.36,0.49,2,145,3,0,1,0,technical,medium
1692,0.42,0.75,3,218,4,0,1,0,management,medium
1693,0.84,0.86,5,268,5,0,1,0,marketing,medium
1694,0.1,0.83,6,278,4,0,1,0,marketing,medium
1695,0.78,0.71,3,249,5,0,1,0,marketing,medium
1696,0.35,0.99,3,236,4,0,1,0,sales,medium
1697,0.1,0.81,7,291,4,0,1,0,sales,high
1698,0.11,0.8,6,306,4,0,1,0,sales,low
1699,0.43,0.48,2,135,3,0,1,0,sales,medium
1700,0.38,0.45,2,156,3,0,1,0,sales,medium
1701,0.46,0.54,2,143,3,0,1,0,sales,medium
1702,0.89,0.82,4,243,5,0,1,0,sales,medium
1703,0.45,0.5,2,147,3,0,1,0,sales,low
1704,0.44,0.53,2,159,3,0,1,0,sales,low
1705,0.74,0.54,5,216,3,0,1,0,sales,low
1706,0.45,0.54,2,152,3,0,1,0,sales,low
1707,0.79,0.93,4,226,5,0,1,0,sales,low
1708,0.79,0.91,5,271,5,0,1,0,sales,low
1709,0.11,0.87,6,255,4,0,1,0,sales,low
1710,0.42,0.48,2,140,3,0,1,0,sales,low
1711,0.64,0.9,6,252,2,0,1,0,sales,low
1712,0.4,0.55,2,159,3,0,1,0,sales,low
1713,0.84,0.98,5,270,5,0,1,0,sales,low
1714,0.73,0.92,5,232,5,0,1,0,sales,low
1715,0.4,0.51,2,144,3,0,1,0,accounting,low
1716,0.36,0.45,2,127,3,0,1,0,accounting,low
1717,0.43,0.47,2,131,3,0,1,0,accounting,low
1718,0.11,0.78,6,243,4,0,1,0,hr,low
1719,0.91,1,5,244,6,0,1,0,hr,low
1720,0.8,1,5,260,5,0,1,0,hr,low
1721,0.42,0.49,2,139,3,0,1,0,hr,low
1722,0.31,0.87,4,184,3,0,1,0,technical,low
1723,0.44,0.47,2,130,3,0,1,0,technical,low
1724,0.38,0.54,2,135,3,0,1,0,technical,medium
1725,0.45,0.56,2,146,3,0,1,0,technical,medium
1726,0.43,0.46,2,149,3,0,1,0,technical,medium
1727,0.45,0.46,2,153,3,1,1,0,technical,medium
1728,0.43,0.57,2,160,3,0,1,0,technical,medium
1729,0.43,0.49,2,160,3,0,1,0,technical,medium
1730,0.09,0.83,6,282,4,0,1,0,technical,medium
1731,0.43,0.47,2,128,3,0,1,0,technical,medium
1732,0.79,0.94,4,232,5,0,1,0,technical,medium
1733,0.85,0.58,3,226,2,0,1,0,support,medium
1734,0.38,0.45,2,129,3,0,1,0,support,medium
1735,0.11,0.92,7,255,4,0,1,0,support,medium
1736,0.83,0.99,5,258,5,0,1,0,support,high
1737,0.81,0.91,4,229,5,0,1,0,support,low
1738,0.42,0.56,2,143,3,0,1,0,support,medium
1739,0.11,0.87,6,257,4,0,1,0,support,medium
1740,0.11,0.85,7,275,4,0,1,0,support,medium
1741,0.1,0.89,7,291,4,0,1,0,support,medium
1742,0.5,0.54,5,153,4,0,1,0,support,low
1743,0.44,0.49,2,154,3,0,1,0,support,low
1744,0.11,0.9,6,301,4,0,1,0,technical,low
1745,0.39,0.52,2,134,3,0,1,0,technical,low
1746,0.11,0.78,6,245,4,0,1,0,technical,low
1747,0.36,0.5,2,132,3,0,1,0,management,low
1748,0.43,0.51,2,130,3,0,1,0,IT,low
1749,0.4,0.5,2,127,3,0,1,0,IT,low
1750,0.86,0.84,4,246,6,0,1,0,IT,low
1751,0.38,0.49,2,145,3,0,1,0,IT,low
1752,0.46,0.45,2,138,3,0,1,1,IT,low
1753,0.37,0.57,2,129,3,0,1,0,product_mng,low
1754,0.43,0.52,2,150,3,0,1,0,product_mng,low
1755,0.66,0.93,5,253,5,0,1,0,product_mng,low
1756,0.37,0.48,2,160,3,0,1,0,product_mng,low
1757,0.77,0.92,5,235,5,0,1,0,IT,low
1758,0.38,0.55,2,151,3,0,1,0,sales,low
1759,0.39,0.54,2,127,3,0,1,0,sales,low
1760,0.41,0.55,2,151,3,0,1,0,sales,low
1761,0.1,0.9,7,290,4,0,1,0,sales,low
1762,0.09,0.93,6,249,4,0,1,0,sales,low
1763,0.41,0.47,2,131,3,0,1,0,marketing,medium
1764,0.39,0.46,2,159,3,0,1,0,sales,medium
1765,0.83,0.99,4,223,5,0,1,0,accounting,medium
1766,0.09,0.87,3,214,2,0,1,0,support,medium
1767,0.75,0.81,5,227,5,0,1,0,technical,medium
1768,0.44,0.54,2,127,3,0,1,0,management,medium
1769,0.1,0.84,6,293,5,0,1,0,marketing,medium
1770,0.42,0.46,2,141,3,0,1,0,marketing,medium
1771,0.1,0.83,6,300,4,0,1,0,marketing,medium
1772,0.1,0.86,6,309,4,0,1,0,sales,medium
1773,0.31,0.77,4,149,3,0,1,0,sales,medium
1774,0.42,0.54,2,159,3,0,1,0,sales,medium
1775,0.38,0.5,2,152,3,0,1,0,sales,high
1776,0.39,0.57,2,158,3,0,1,0,sales,low
1777,0.1,0.97,6,254,5,0,1,0,sales,medium
1778,0.11,0.93,6,294,4,0,1,0,sales,medium
1779,0.1,0.92,7,269,4,0,1,0,sales,medium
1780,0.11,0.9,7,247,4,0,1,0,sales,medium
1781,0.44,0.65,3,271,4,0,1,0,sales,low
1782,0.91,0.96,4,232,5,0,1,0,sales,low
1783,0.72,1,4,245,5,0,1,0,sales,low
1784,0.36,0.46,2,132,3,0,1,0,sales,low
1785,0.44,0.57,2,131,3,0,1,0,sales,low
1786,0.85,0.99,5,248,5,0,1,0,sales,low
1787,0.78,0.93,5,225,5,0,1,0,sales,low
1788,0.39,0.46,2,156,3,0,1,0,sales,low
1789,0.78,0.81,3,222,2,0,1,0,sales,low
1790,0.1,0.92,6,243,4,1,1,0,sales,low
1791,0.23,0.99,4,204,4,1,1,0,accounting,low
1792,0.11,0.87,6,301,4,0,1,0,accounting,low
1793,0.9,0.83,5,259,5,0,1,0,accounting,low
1794,0.91,0.89,4,247,5,0,1,0,hr,low
1795,0.11,0.79,7,295,4,0,1,0,hr,low
1796,0.43,0.54,2,150,3,0,1,0,hr,low
1797,0.45,0.49,2,151,3,0,1,0,hr,low
1798,0.11,0.91,5,291,4,0,1,0,technical,low
1799,0.11,0.93,6,253,4,1,1,0,technical,low
1800,0.43,0.5,2,161,3,0,1,0,technical,low
1801,0.91,0.97,4,251,6,0,1,0,technical,low
1802,0.43,0.55,2,153,3,0,1,0,technical,medium
1803,0.85,0.82,5,264,6,0,1,0,technical,medium
1804,0.1,0.77,6,310,4,0,1,0,technical,medium
1805,0.81,0.95,5,266,5,0,1,0,technical,medium
1806,0.36,0.62,4,237,2,0,1,0,technical,medium
1807,0.45,0.54,2,138,3,0,1,0,technical,medium
1808,0.86,1,5,227,5,0,1,0,technical,medium
1809,0.71,1,4,300,5,0,1,0,support,medium
1810,0.11,0.97,7,310,4,0,1,0,support,medium
1811,0.84,0.93,5,236,5,0,1,0,support,medium
1812,0.09,0.97,7,288,4,0,1,0,support,medium
1813,0.38,0.49,2,127,3,0,1,0,support,medium
1814,0.15,0.55,6,139,4,0,1,0,support,high
1815,0.1,0.92,7,253,4,1,1,0,support,low
1816,0.8,0.97,4,218,5,1,1,0,support,medium
1817,0.84,0.97,5,251,5,0,1,0,support,medium
1818,0.11,0.87,6,264,4,0,1,0,support,medium
1819,0.89,0.79,3,149,2,0,1,0,support,medium
1820,0.45,0.51,2,138,3,0,1,0,technical,low
1821,0.11,0.93,7,284,4,0,1,0,technical,low
1822,0.74,0.93,5,244,5,0,1,0,technical,low
1823,0.41,0.5,2,128,3,0,1,0,management,low
1824,0.44,0.53,2,154,3,0,1,0,IT,low
1825,0.37,0.56,2,138,3,0,1,0,IT,low
1826,0.11,0.86,6,308,4,0,1,0,IT,low
1827,0.1,0.93,6,269,4,0,1,0,IT,low
1828,0.7,0.74,6,136,3,0,1,0,IT,low
1829,0.59,1,2,160,5,0,1,0,product_mng,low
1830,0.38,0.53,2,138,3,0,1,0,product_mng,low
1831,0.72,0.95,4,220,5,0,1,0,product_mng,low
1832,0.73,1,5,274,5,0,1,0,product_mng,low
1833,0.39,0.48,2,161,3,0,1,0,IT,low
1834,0.89,0.82,5,224,6,0,1,0,RandD,low
1835,0.89,1,4,260,5,0,1,0,RandD,low
1836,0.11,0.78,6,300,4,1,1,0,RandD,low
1837,0.43,0.56,2,133,3,0,1,0,RandD,low
1838,0.09,0.93,6,308,4,0,1,0,RandD,low
1839,0.81,0.9,5,238,6,0,1,0,marketing,low
1840,0.37,0.53,2,126,3,0,1,0,sales,low
1841,0.36,0.56,2,138,3,0,1,0,accounting,medium
1842,0.11,0.85,6,299,4,0,1,0,support,medium
1843,0.1,0.85,6,254,4,0,1,0,technical,medium
1844,0.66,0.47,7,156,2,0,1,0,management,medium
1845,0.39,0.47,2,152,3,0,1,0,marketing,medium
1846,0.44,0.51,2,146,3,0,1,0,marketing,medium
1847,0.1,0.84,6,253,4,0,1,0,marketing,medium
1848,0.79,0.94,5,227,6,0,1,0,sales,medium
1849,0.1,0.81,6,301,4,1,1,0,sales,medium
1850,0.54,0.94,6,294,3,0,1,0,sales,medium
1851,0.37,0.47,2,151,3,0,1,0,sales,medium
1852,0.37,0.57,2,128,3,0,1,0,sales,medium
1853,0.82,0.89,5,217,5,0,1,0,sales,high
1854,0.45,0.52,2,160,3,0,1,0,sales,low
1855,0.79,0.9,5,263,5,0,1,0,sales,medium
1856,0.42,0.56,2,156,3,0,1,0,sales,medium
1857,0.1,0.85,6,273,4,0,1,0,sales,medium
1858,0.11,0.78,6,303,4,0,1,0,sales,medium
1859,0.74,1,4,253,5,0,1,0,sales,low
1860,0.1,0.93,6,270,4,0,1,0,sales,low
1861,0.79,1,4,218,5,0,1,0,sales,low
1862,0.43,0.48,2,144,3,0,1,0,sales,low
1863,0.41,0.47,2,154,3,0,1,0,sales,low
1864,0.39,0.55,2,146,3,0,1,0,sales,low
1865,0.1,0.94,6,260,4,0,1,0,sales,low
1866,0.82,0.85,5,218,5,0,1,0,sales,low
1867,0.41,0.46,2,128,3,0,1,0,accounting,low
1868,0.42,0.56,2,128,3,0,1,0,accounting,low
1869,0.74,0.88,4,248,6,0,1,0,accounting,low
1870,0.38,0.57,2,152,3,1,1,0,hr,low
1871,0.39,0.56,2,126,3,0,1,0,hr,low
1872,0.87,0.94,4,260,5,0,1,0,hr,low
1873,0.1,0.9,5,263,4,0,1,0,hr,low
1874,0.78,1,5,220,5,0,1,0,technical,low
1875,0.14,0.73,7,282,5,0,1,0,technical,low
1876,0.11,0.94,6,277,5,0,1,0,technical,low
1877,0.91,0.94,5,257,5,0,1,0,technical,low
1878,0.49,0.63,6,265,3,0,1,0,technical,low
1879,0.38,0.47,2,143,3,0,1,0,technical,low
1880,0.82,0.97,5,263,5,0,1,0,technical,medium
1881,0.38,0.88,3,154,4,0,1,0,technical,medium
1882,0.89,1,5,253,5,0,1,0,technical,medium
1883,0.11,0.79,6,294,4,0,1,0,technical,medium
1884,0.37,0.51,2,128,3,0,1,0,technical,medium
1885,0.38,0.5,2,153,3,0,1,0,support,medium
1886,0.78,0.87,5,256,5,0,1,0,support,medium
1887,0.41,0.51,2,127,3,0,1,0,support,medium
1888,0.41,0.51,2,137,3,0,1,0,support,medium
1889,0.11,0.83,6,295,4,0,1,0,support,medium
1890,0.11,0.79,6,281,4,0,1,0,support,medium
1891,0.43,0.57,2,131,3,1,1,0,support,medium
1892,0.75,0.86,5,237,5,0,1,0,support,high
1893,0.74,0.99,4,276,5,0,1,0,support,low
1894,0.85,0.85,5,267,5,0,1,0,support,medium
1895,0.73,0.92,5,266,5,0,1,0,support,medium
1896,0.1,0.79,6,294,4,0,1,0,technical,medium
1897,0.44,0.56,2,134,3,0,1,0,technical,medium
1898,0.3,0.56,3,309,4,1,1,0,technical,low
1899,0.11,0.77,7,273,4,0,1,0,management,low
1900,0.84,0.83,5,238,5,0,1,0,IT,low
1901,0.78,0.94,5,271,6,0,1,0,IT,low
1902,0.43,0.53,2,145,3,0,1,0,IT,low
1903,0.36,0.55,2,152,3,0,1,0,IT,low
1904,0.43,0.47,2,128,3,0,1,0,IT,low
1905,0.45,0.46,2,142,3,0,1,0,product_mng,low
1906,0.76,0.93,5,238,5,0,1,0,product_mng,low
1907,0.1,0.78,7,286,4,0,1,0,product_mng,low
1908,0.09,0.86,6,291,4,0,1,0,product_mng,low
1909,0.92,1,5,259,5,0,1,0,IT,low
1910,0.92,0.9,5,248,5,0,1,0,sales,low
1911,0.79,0.98,4,271,5,0,1,0,sales,low
1912,0.43,0.51,2,140,3,0,1,0,sales,low
1913,0.8,0.95,4,274,5,0,1,0,sales,low
1914,0.44,0.49,2,127,3,1,1,0,sales,low
1915,0.89,0.87,5,275,6,0,1,0,marketing,low
1916,0.48,0.88,3,239,3,0,1,0,sales,low
1917,0.11,0.82,6,304,4,1,1,0,accounting,low
1918,0.38,0.55,2,145,3,0,1,0,support,low
1919,0.11,0.85,6,259,4,0,1,0,technical,medium
1920,0.82,0.86,4,264,5,0,1,0,management,medium
1921,0.37,0.45,2,160,3,0,1,0,marketing,medium
1922,0.4,0.48,2,138,3,0,1,0,marketing,medium
1923,0.43,0.47,2,137,3,0,1,0,marketing,medium
1924,0.44,0.5,2,156,3,0,1,0,sales,medium
1925,0.42,0.56,2,147,3,0,1,0,sales,medium
1926,0.11,0.8,7,243,4,0,1,0,sales,medium
1927,0.78,0.87,4,236,5,0,1,0,sales,medium
1928,0.46,0.86,2,212,4,0,1,0,sales,medium
1929,0.77,0.91,5,261,6,0,1,0,sales,medium
1930,0.83,0.82,4,243,5,0,1,0,sales,medium
1931,0.32,0.58,5,271,5,0,1,0,sales,high
1932,0.9,0.92,5,154,4,0,1,0,sales,low
1933,0.42,0.52,2,151,3,0,1,0,sales,medium
1934,0.1,0.96,6,254,4,1,1,0,sales,medium
1935,0.1,0.91,6,285,4,0,1,0,sales,medium
1936,0.44,0.49,2,130,3,0,1,0,sales,medium
1937,0.1,0.95,7,301,4,0,1,0,sales,low
1938,0.11,0.8,6,286,4,0,1,0,sales,low
1939,0.1,0.89,6,246,4,0,1,0,sales,low
1940,0.39,0.47,2,135,3,0,1,0,sales,low
1941,0.92,0.92,4,245,5,0,1,0,sales,low
1942,0.43,0.56,2,136,3,0,1,0,sales,low
1943,0.11,0.89,6,301,4,0,1,0,accounting,low
1944,0.81,1,5,235,5,0,1,0,accounting,low
1945,0.11,0.85,7,272,4,0,1,0,accounting,low
1946,0.87,1,5,274,5,0,1,0,hr,low
1947,0.37,0.46,2,131,3,0,1,0,hr,low
1948,0.39,0.56,2,135,3,0,1,0,hr,low
1949,0.61,0.86,4,196,4,0,1,0,hr,low
1950,0.11,0.95,6,285,4,0,1,0,technical,low
1951,0.09,0.9,7,289,5,0,1,0,technical,low
1952,0.36,0.52,2,157,3,0,1,0,technical,low
1953,0.09,0.94,6,308,4,0,1,0,technical,low
1954,0.41,0.71,4,301,5,0,1,0,technical,low
1955,0.4,0.46,2,131,3,0,1,0,technical,low
1956,0.1,0.91,6,262,5,1,1,0,technical,low
1957,0.46,0.53,2,143,3,1,1,0,technical,low
1958,0.39,0.57,2,133,3,0,1,0,technical,medium
1959,0.41,0.5,2,153,3,0,1,0,technical,medium
1960,0.1,0.94,7,281,4,0,1,0,technical,medium
1961,0.39,0.51,2,132,3,0,1,0,support,medium
1962,0.73,0.83,5,270,5,1,1,0,support,medium
1963,0.41,0.45,2,150,3,0,1,0,support,medium
1964,0.37,0.51,2,140,3,0,1,0,support,medium
1965,0.38,0.5,2,150,3,1,1,0,support,medium
1966,0.8,0.63,5,180,5,0,1,0,support,medium
1967,0.09,0.85,5,281,4,0,1,0,support,medium
1968,0.85,0.92,4,275,5,0,1,0,support,medium
1969,0.42,0.54,2,130,3,0,1,0,support,medium
1970,0.41,0.48,2,130,3,0,1,0,support,high
1971,0.38,0.46,2,147,3,0,1,0,support,low
1972,0.72,1,5,264,5,0,1,0,technical,medium
1973,0.11,0.74,6,290,5,0,1,0,technical,medium
1974,0.37,0.47,2,150,3,0,1,0,technical,medium
1975,0.1,0.81,6,304,4,0,1,0,management,medium
1976,0.36,0.54,2,136,3,0,1,0,IT,low
1977,0.92,0.94,5,307,5,0,1,0,IT,low
1978,0.11,0.87,5,303,4,0,1,0,IT,low
1979,0.39,0.56,2,156,3,0,1,0,IT,low
1980,0.11,0.95,6,271,4,0,1,0,IT,low
1981,0.45,0.45,2,140,3,0,1,0,product_mng,low
1982,0.44,0.55,2,130,3,1,1,0,product_mng,low
1983,0.85,0.97,4,266,6,0,1,0,product_mng,low
1984,0.43,0.52,2,139,3,0,1,0,product_mng,low
1985,0.75,0.86,5,260,5,0,1,0,IT,low
1986,0.11,0.55,2,137,3,1,1,0,RandD,low
1987,0.36,0.5,2,158,3,0,1,0,RandD,low
1988,0.1,0.79,6,249,4,0,1,0,RandD,low
1989,0.74,0.89,5,259,5,0,1,0,RandD,low
1990,0.4,0.46,2,144,3,0,1,0,RandD,low
1991,0.09,0.77,6,244,4,0,1,0,marketing,low
1992,0.76,0.91,4,219,5,0,1,0,sales,low
1993,0.45,0.57,2,151,3,0,1,0,accounting,low
1994,0.84,0.88,4,269,5,0,1,0,support,low
1995,0.38,0.45,2,127,3,0,1,0,technical,low
1996,0.38,0.46,2,144,3,0,1,0,management,low
1997,0.38,0.54,2,157,3,0,1,0,marketing,medium
1998,0.86,0.94,5,224,5,0,1,0,marketing,medium
1999,0.37,0.46,2,155,3,0,1,0,marketing,medium