-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHR_data.csv
We can't make this file beautiful and searchable because it's too large.
9617 lines (9617 loc) · 639 KB
/
HR_data.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
department,region,termination_date,bracket_salary 1,salary,satisfaction_level,last_evaluation,number_project,average_monthly_hours,time_spend_company,work_accident,promotion_last_5years,resigned
technical,US,2015-06-27T00:00:00Z,low,52000,0.82,0.63,4,232,4,0,0,0
product_mng,Europe,2017-02-24T00:00:00Z,low,36000,0.72,0.79,4,154,3,0,0,0
sales,Canada,2008-12-06T00:00:00Z,medium,77000,0.71,0.88,3,140,2,0,0,0
support,US,2015-11-22T00:00:00Z,medium,70000,0.53,0.75,4,239,2,1,0,0
technical,US,2009-03-29T00:00:00Z,medium,76000,0.49,0.49,2,245,3,0,0,0
RandD,Canada,2015-02-06T00:00:00Z,medium,84000,0.41,0.48,2,148,3,0,0,1
sales,US,2017-08-15T00:00:00Z,medium,76000,1,0.87,3,165,2,0,0,0
technical,US,2014-08-01T00:00:00Z,low,32000,0.09,0.97,7,268,4,0,0,1
marketing,US,2016-02-25T00:00:00Z,high,174000,0.74,0.64,4,268,3,0,0,0
technical,US,2017-08-17T00:00:00Z,low,44000,0.96,0.73,3,193,3,1,0,0
marketing,US,2017-04-28T00:00:00Z,low,35000,0.79,0.83,4,250,2,0,0,0
sales,US,2015-09-08T00:00:00Z,medium,79000,0.89,1,4,237,5,0,0,1
IT,US,2010-10-14T00:00:00Z,medium,62000,0.49,0.57,4,141,3,0,0,0
IT,Europe,2017-11-20T00:00:00Z,high,138000,0.85,0.78,3,165,4,0,0,0
sales,US,2012-08-02T00:00:00Z,low,60000,0.99,0.7,3,219,3,0,0,0
sales,US,2017-10-28T00:00:00Z,medium,67000,0.43,0.52,2,147,3,0,0,1
technical,US,2017-06-12T00:00:00Z,medium,72000,0.66,0.6,3,210,2,0,0,0
marketing,US,2015-03-06T00:00:00Z,medium,75000,0.82,0.57,2,158,3,1,0,0
IT,Canada,2017-01-18T00:00:00Z,medium,89000,0.1,0.82,6,244,4,0,0,1
technical,US,2016-05-24T00:00:00Z,medium,72000,0.85,0.55,3,226,4,0,0,0
sales,US,2017-07-03T00:00:00Z,medium,81000,0.44,0.48,2,148,3,0,0,1
support,US,2017-05-04T00:00:00Z,medium,84000,0.67,0.5,4,157,2,0,0,0
sales,US,2016-07-23T00:00:00Z,low,59000,0.43,0.51,2,136,3,0,0,1
sales,Canada,2009-06-22T00:00:00Z,low,42000,0.11,0.82,6,270,4,0,0,1
support,Canada,2015-12-10T00:00:00Z,medium,77000,0.84,0.64,2,211,3,0,0,0
technical,US,2012-10-29T00:00:00Z,low,55000,0.42,0.48,2,143,3,0,0,1
sales,Europe,2009-06-29T00:00:00Z,low,33000,0.74,0.98,3,166,3,1,1,0
sales,US,2009-08-27T00:00:00Z,medium,89000,0.75,0.74,5,231,3,0,1,0
support,US,2018-01-26T00:00:00Z,medium,75000,0.66,0.65,4,154,3,0,0,0
IT,US,2017-12-08T00:00:00Z,low,47000,0.29,0.57,5,134,2,0,1,0
support,US,2017-08-17T00:00:00Z,low,56000,0.11,0.84,6,298,4,0,0,1
support,APAC,2017-11-03T00:00:00Z,low,38000,0.91,1,5,251,6,0,0,1
sales,US,2012-12-04T00:00:00Z,low,42000,0.67,0.55,4,256,6,0,0,0
accounting,US,2012-12-22T00:00:00Z,medium,77000,0.1,0.86,5,253,4,0,0,1
support,US,2008-08-08T00:00:00Z,low,34000,0.93,0.64,4,253,3,0,0,0
sales,APAC,2016-12-12T00:00:00Z,medium,68000,0.38,0.59,4,276,2,0,0,0
IT,US,2017-11-19T00:00:00Z,medium,76000,0.85,0.69,3,263,3,0,0,0
product_mng,US,2018-01-10T00:00:00Z,low,47000,0.25,0.9,6,229,8,0,0,0
sales,Europe,2009-10-09T00:00:00Z,low,56000,0.88,0.72,2,144,4,1,0,0
technical,US,2015-10-28T00:00:00Z,medium,77000,0.51,0.75,3,234,2,1,0,0
technical,US,2016-07-30T00:00:00Z,medium,81000,0.15,0.9,5,284,4,0,0,0
support,US,2011-03-31T00:00:00Z,low,51000,0.74,0.5,4,265,3,0,0,0
technical,US,2017-07-13T00:00:00Z,medium,77000,0.43,0.49,2,160,3,0,0,1
support,US,2017-06-06T00:00:00Z,medium,62000,0.95,0.73,3,243,3,1,0,0
accounting,US,2017-06-17T00:00:00Z,low,51000,0.7,0.8,4,183,2,0,0,0
technical,Europe,2017-04-21T00:00:00Z,low,60000,1,1,5,142,4,0,0,0
support,US,2009-07-01T00:00:00Z,medium,63000,0.88,0.53,3,188,3,0,0,0
marketing,Europe,2016-05-19T00:00:00Z,low,47000,0.66,0.87,4,139,3,0,0,0
support,US,2015-03-02T00:00:00Z,high,167000,0.84,0.87,4,246,6,0,0,1
support,Europe,2015-07-20T00:00:00Z,low,55000,0.76,0.69,4,253,3,0,0,0
sales,Europe,2017-11-21T00:00:00Z,medium,73000,0.1,0.79,6,271,4,0,0,1
hr,Europe,2015-12-23T00:00:00Z,medium,78000,0.67,0.72,4,192,3,1,0,0
accounting,Europe,2018-01-09T00:00:00Z,low,33000,0.15,0.42,4,238,3,0,0,0
technical,Europe,2017-03-17T00:00:00Z,medium,80000,0.75,0.53,3,222,2,0,0,0
sales,US,2016-06-18T00:00:00Z,low,58000,0.77,0.66,6,181,4,0,0,0
product_mng,US,2016-03-22T00:00:00Z,low,55000,0.59,0.87,4,183,2,0,0,0
technical,Canada,2017-07-12T00:00:00Z,medium,74000,0.64,0.5,3,261,2,0,0,0
support,Europe,2016-10-17T00:00:00Z,low,46000,0.2,0.69,6,236,4,0,0,0
RandD,Canada,2015-11-23T00:00:00Z,medium,90000,0.89,0.84,5,168,2,0,0,0
support,US,2008-07-28T00:00:00Z,medium,87000,0.33,0.95,4,280,3,0,0,0
sales,US,2016-05-18T00:00:00Z,low,110000,0.18,0.51,6,227,2,0,0,0
support,Canada,2009-04-22T00:00:00Z,medium,63000,0.57,0.39,3,193,6,0,0,0
support,Canada,2015-05-19T00:00:00Z,low,44000,0.6,0.98,5,213,3,0,0,0
IT,US,2008-05-23T00:00:00Z,low,56000,0.47,0.5,4,254,4,0,0,1
hr,US,2016-05-21T00:00:00Z,medium,82000,0.9,0.91,5,176,3,0,0,0
sales,US,2011-08-11T00:00:00Z,medium,62000,0.6,0.62,3,238,4,0,1,0
technical,Europe,2015-12-02T00:00:00Z,low,32000,0.81,0.95,5,238,6,0,0,1
technical,Canada,2016-06-20T00:00:00Z,medium,70000,0.95,0.49,3,188,3,0,0,0
technical,US,2015-10-30T00:00:00Z,medium,86000,0.95,0.48,5,214,6,1,1,0
support,US,2008-06-18T00:00:00Z,medium,89000,0.42,0.47,2,135,3,0,0,1
RandD,US,2017-01-24T00:00:00Z,medium,61000,0.46,0.54,2,138,3,0,0,1
support,US,2009-04-04T00:00:00Z,medium,74000,0.99,0.7,5,195,3,0,0,0
marketing,US,2017-02-06T00:00:00Z,medium,85000,0.81,0.72,3,232,3,1,0,0
technical,Europe,2017-03-23T00:00:00Z,medium,81000,0.96,1,4,167,2,1,0,0
product_mng,US,2017-11-29T00:00:00Z,low,60000,0.96,0.84,3,264,3,0,0,0
technical,Europe,2015-12-13T00:00:00Z,low,58000,0.88,0.57,4,261,4,0,0,0
sales,Europe,2017-05-05T00:00:00Z,medium,86000,0.5,0.59,4,192,2,0,0,0
technical,US,2017-05-22T00:00:00Z,low,38000,0.57,0.62,5,141,3,0,0,0
IT,Canada,2016-06-10T00:00:00Z,medium,64000,0.41,0.48,2,130,3,0,0,1
support,US,2010-01-15T00:00:00Z,medium,63000,0.48,0.53,4,271,3,0,0,0
sales,US,2018-01-07T00:00:00Z,medium,74000,0.88,0.65,3,268,2,0,0,0
support,US,2015-02-16T00:00:00Z,low,31000,0.92,0.64,4,217,4,0,0,0
technical,US,2016-09-06T00:00:00Z,medium,74000,0.76,0.98,5,217,6,0,0,1
IT,US,2009-03-25T00:00:00Z,medium,69000,0.89,0.87,5,255,5,0,0,1
sales,US,2016-02-14T00:00:00Z,low,35000,0.44,0.49,2,127,3,1,0,1
technical,Europe,2015-12-24T00:00:00Z,medium,77000,0.1,0.96,6,310,5,0,0,1
support,Canada,2016-10-25T00:00:00Z,low,46000,0.91,1,4,125,4,0,0,0
marketing,Canada,2012-08-09T00:00:00Z,low,56000,0.97,0.64,3,237,3,0,0,0
support,Europe,2016-02-21T00:00:00Z,medium,82000,0.6,0.8,4,222,2,0,0,0
technical,US,2014-02-15T00:00:00Z,medium,87000,0.89,0.66,4,176,3,0,0,0
sales,US,2016-09-07T00:00:00Z,medium,79000,0.63,0.86,3,245,2,0,0,0
RandD,US,2008-12-12T00:00:00Z,low,30000,0.64,0.99,3,214,2,0,0,0
sales,US,2010-01-01T00:00:00Z,medium,81000,0.63,0.54,4,147,4,0,0,0
technical,US,2012-03-18T00:00:00Z,medium,87000,0.97,0.79,5,259,3,0,1,0
IT,US,2015-02-08T00:00:00Z,low,35000,0.45,0.5,2,126,3,0,0,1
sales,US,2009-01-27T00:00:00Z,low,41000,0.7,0.63,3,157,2,0,0,0
technical,US,2008-12-19T00:00:00Z,low,37000,0.91,0.89,2,219,4,0,0,0
sales,US,2010-08-25T00:00:00Z,medium,88000,0.48,0.57,4,270,4,0,0,1
RandD,US,2017-10-09T00:00:00Z,low,35000,0.55,0.74,3,211,3,1,0,0
sales,APAC,2017-03-04T00:00:00Z,low,46000,0.1,0.77,7,250,5,0,0,1
RandD,Europe,2015-10-01T00:00:00Z,medium,77000,0.37,0.51,2,155,3,0,0,1
technical,US,2017-01-19T00:00:00Z,low,51000,0.1,0.92,7,273,4,0,0,1
sales,US,2010-12-08T00:00:00Z,medium,80000,0.95,0.86,2,263,4,0,0,0
sales,US,2009-01-10T00:00:00Z,medium,61000,0.96,0.99,4,233,3,0,0,0
sales,US,2009-04-20T00:00:00Z,low,58000,0.63,0.49,4,151,3,0,0,0
IT,US,2016-01-09T00:00:00Z,low,54000,0.84,0.88,3,194,3,0,0,0
sales,Europe,2010-12-29T00:00:00Z,medium,87000,0.36,0.4,4,114,4,1,0,0
support,US,2017-07-10T00:00:00Z,high,115000,0.2,0.99,5,151,3,1,0,0
RandD,US,2017-11-18T00:00:00Z,medium,65000,0.86,0.66,4,191,2,0,0,0
sales,Europe,2016-12-06T00:00:00Z,medium,87000,0.84,0.56,3,266,3,0,0,0
IT,US,2008-05-26T00:00:00Z,low,59000,0.78,0.66,3,164,3,0,0,1
RandD,US,2009-09-28T00:00:00Z,low,39000,0.43,0.52,2,147,3,0,0,1
sales,US,2016-01-03T00:00:00Z,medium,70000,0.49,0.71,3,255,2,1,0,0
technical,Europe,2018-01-13T00:00:00Z,medium,71000,0.57,0.67,3,207,2,0,0,0
hr,Canada,2008-01-11T00:00:00Z,medium,64000,0.85,0.79,3,243,2,0,1,0
support,US,2008-07-26T00:00:00Z,low,46000,0.36,0.56,2,132,3,0,0,1
IT,US,2017-02-04T00:00:00Z,low,50000,0.96,0.6,3,160,10,0,0,0
technical,US,2016-04-18T00:00:00Z,medium,77000,0.72,0.72,4,175,4,0,0,0
IT,US,2017-06-03T00:00:00Z,medium,76000,0.36,0.47,2,136,3,0,0,1
product_mng,US,2017-10-25T00:00:00Z,low,59000,0.39,0.5,2,142,3,0,0,1
IT,US,2016-06-15T00:00:00Z,medium,86000,0.65,0.63,4,143,8,0,0,0
sales,US,2016-09-23T00:00:00Z,low,34000,0.84,0.84,6,261,5,0,0,0
marketing,US,2016-02-06T00:00:00Z,low,60000,0.68,0.54,3,270,4,1,0,0
support,Canada,2018-01-27T00:00:00Z,low,45000,0.76,0.56,3,154,2,0,0,0
technical,US,2010-07-07T00:00:00Z,low,50000,0.65,0.92,4,242,2,0,0,0
technical,US,2016-01-17T00:00:00Z,medium,86000,0.42,0.57,2,159,3,0,0,1
marketing,US,2016-10-14T00:00:00Z,low,35000,0.53,0.37,3,180,3,0,0,0
sales,US,2016-07-10T00:00:00Z,medium,80000,0.91,0.49,6,272,6,0,0,0
sales,US,2017-04-12T00:00:00Z,low,38000,0.1,0.94,7,281,4,0,0,1
support,Canada,2015-02-21T00:00:00Z,low,34000,0.86,0.71,5,273,3,0,0,0
technical,US,2015-07-21T00:00:00Z,medium,89000,0.92,0.65,4,135,3,0,0,0
support,US,2009-07-28T00:00:00Z,low,60000,0.96,0.94,3,182,3,0,0,0
IT,US,2010-09-19T00:00:00Z,low,48000,0.57,0.66,4,158,2,0,0,0
RandD,Europe,2016-06-09T00:00:00Z,medium,68000,0.61,0.84,5,104,4,0,0,0
hr,US,2009-10-14T00:00:00Z,medium,77000,0.52,0.38,2,103,3,0,0,0
sales,Europe,2017-06-24T00:00:00Z,low,52000,0.91,0.81,4,139,2,0,0,0
support,US,2017-12-30T00:00:00Z,medium,62000,0.45,0.66,3,111,4,0,0,0
sales,US,2017-12-11T00:00:00Z,medium,64000,0.44,0.45,2,132,3,0,0,1
support,US,2016-01-02T00:00:00Z,low,42000,0.67,0.64,3,198,2,1,0,0
marketing,US,2017-07-07T00:00:00Z,low,52000,0.62,0.94,4,252,4,0,0,0
technical,US,2009-07-04T00:00:00Z,low,33000,1,0.99,4,184,4,0,0,0
sales,US,2017-11-07T00:00:00Z,low,50000,0.37,0.52,2,143,3,0,0,1
hr,Canada,2012-10-16T00:00:00Z,medium,79000,0.86,0.91,4,234,3,1,0,0
marketing,US,2018-01-09T00:00:00Z,medium,85000,0.38,0.52,2,171,3,0,0,0
sales,US,2015-04-07T00:00:00Z,low,52000,0.73,0.95,3,156,2,0,0,0
support,US,2015-05-31T00:00:00Z,low,44000,0.86,0.62,4,186,3,0,0,0
support,US,2015-06-15T00:00:00Z,low,39000,0.61,0.5,4,217,4,1,0,0
accounting,US,2017-02-14T00:00:00Z,low,51000,0.78,0.89,5,274,6,0,0,1
sales,US,2017-01-05T00:00:00Z,medium,84000,0.1,0.79,6,291,4,0,0,1
management,US,2008-07-21T00:00:00Z,low,56000,0.41,0.48,2,139,3,0,0,1
technical,APAC,2017-06-02T00:00:00Z,medium,80000,0.77,0.85,5,276,5,0,0,1
IT,US,2016-10-14T00:00:00Z,low,58000,0.8,0.8,3,271,4,0,0,0
technical,US,2009-02-25T00:00:00Z,low,37000,0.39,0.53,2,131,3,0,0,1
sales,US,2010-05-28T00:00:00Z,medium,76000,0.92,0.51,4,167,3,1,0,0
RandD,US,2015-12-26T00:00:00Z,low,51000,0.6,0.52,5,140,3,0,0,0
support,Canada,2016-02-09T00:00:00Z,low,56000,0.09,0.8,6,301,5,0,0,1
product_mng,US,2015-09-07T00:00:00Z,medium,61000,0.8,0.58,4,189,2,0,0,0
sales,Canada,2008-08-20T00:00:00Z,medium,74000,0.47,0.6,4,263,5,0,0,0
support,Canada,2013-05-06T00:00:00Z,medium,64000,0.22,0.84,3,131,5,1,0,0
sales,US,2017-09-07T00:00:00Z,medium,88000,0.44,0.48,2,158,3,0,0,1
technical,US,2017-09-08T00:00:00Z,low,58000,0.9,0.98,2,243,3,0,0,0
RandD,US,2016-10-07T00:00:00Z,medium,89000,0.6,0.95,5,205,3,0,0,0
management,US,2016-10-22T00:00:00Z,high,139000,0.11,0.9,6,264,4,0,0,1
sales,US,2017-02-23T00:00:00Z,medium,81000,0.44,0.51,2,140,3,0,0,1
sales,US,2017-04-19T00:00:00Z,medium,64000,0.69,0.89,4,174,2,0,0,0
product_mng,US,2009-01-11T00:00:00Z,low,33000,0.54,0.51,4,137,4,0,1,0
RandD,Europe,2011-12-24T00:00:00Z,medium,67000,0.96,0.63,4,142,4,0,0,0
hr,US,2015-08-25T00:00:00Z,medium,67000,0.64,0.5,3,146,3,0,0,0
sales,Europe,2016-10-12T00:00:00Z,medium,85000,0.82,0.84,3,139,2,1,0,0
IT,US,2016-11-29T00:00:00Z,medium,66000,0.43,0.51,2,136,3,0,0,1
technical,US,2009-09-18T00:00:00Z,low,46000,0.62,0.7,4,141,4,0,0,0
accounting,US,2015-07-23T00:00:00Z,low,52000,0.39,0.55,2,159,3,0,0,1
sales,US,2016-04-29T00:00:00Z,medium,63000,0.92,0.97,4,199,3,0,0,0
support,Europe,2015-04-22T00:00:00Z,medium,80000,0.77,0.9,4,237,5,0,0,1
sales,Europe,2017-10-19T00:00:00Z,medium,84000,0.52,0.53,2,163,2,0,0,0
technical,US,2016-01-27T00:00:00Z,low,60000,0.63,0.86,4,169,2,0,0,0
sales,US,2016-12-22T00:00:00Z,medium,63000,0.47,0.55,4,122,5,1,0,0
sales,US,2012-11-30T00:00:00Z,low,35000,0.89,0.66,4,252,3,0,0,0
sales,US,2015-02-11T00:00:00Z,low,54000,0.97,0.68,3,185,2,0,0,0
IT,US,2015-09-17T00:00:00Z,low,51000,0.49,0.67,2,190,8,0,0,0
support,Europe,2017-09-03T00:00:00Z,low,44000,0.93,0.48,3,147,3,0,0,0
technical,Europe,2016-02-28T00:00:00Z,high,206000,0.54,0.64,3,190,7,0,0,0
hr,US,2008-01-12T00:00:00Z,low,57000,0.63,0.64,3,180,3,0,0,0
technical,US,2010-01-22T00:00:00Z,low,33000,0.89,0.77,3,144,3,0,0,0
RandD,Canada,2015-07-22T00:00:00Z,high,150000,0.66,0.96,3,175,2,0,0,0
sales,US,2009-12-18T00:00:00Z,low,55000,0.62,0.49,4,174,3,0,0,0
technical,US,2009-01-08T00:00:00Z,medium,80000,0.67,0.57,4,165,3,0,0,0
support,Europe,2008-07-22T00:00:00Z,medium,61000,0.75,0.82,3,227,2,0,0,0
product_mng,US,2016-04-03T00:00:00Z,medium,86000,0.55,0.63,4,218,2,0,0,0
support,US,2016-01-18T00:00:00Z,low,40000,0.24,0.58,5,279,4,0,0,0
hr,US,2016-08-07T00:00:00Z,medium,61000,0.73,0.59,3,219,2,0,0,0
sales,US,2010-12-01T00:00:00Z,low,60000,0.5,0.59,3,260,3,0,0,0
product_mng,US,2015-12-06T00:00:00Z,low,31000,0.91,0.97,4,183,3,0,0,0
technical,US,2015-10-28T00:00:00Z,low,47000,0.98,0.89,4,218,2,0,0,0
sales,US,2017-03-27T00:00:00Z,medium,88000,0.36,0.46,2,157,3,0,0,1
sales,US,2008-02-04T00:00:00Z,medium,82000,0.93,0.65,5,201,3,0,0,0
management,US,2009-04-04T00:00:00Z,medium,87000,0.71,0.89,3,222,3,0,0,0
sales,Europe,2008-09-20T00:00:00Z,medium,66000,0.9,0.59,6,269,4,1,0,0
RandD,US,2016-06-07T00:00:00Z,medium,90000,0.56,0.54,4,191,2,1,1,0
technical,US,2016-03-26T00:00:00Z,low,51000,0.63,0.67,5,169,2,0,0,0
sales,US,2015-12-13T00:00:00Z,low,57000,0.11,0.92,7,307,4,0,0,1
support,US,2015-04-10T00:00:00Z,medium,70000,0.74,0.93,5,140,3,0,0,0
support,US,2015-04-24T00:00:00Z,low,35000,0.71,0.84,3,139,2,0,0,0
sales,US,2016-07-11T00:00:00Z,low,53000,0.53,0.71,4,227,3,0,0,0
management,US,2016-12-26T00:00:00Z,low,57000,0.54,0.37,2,176,2,0,0,0
marketing,US,2017-11-12T00:00:00Z,low,35000,0.43,0.53,2,146,3,0,0,1
IT,Europe,2016-12-25T00:00:00Z,medium,81000,0.42,0.53,2,131,3,0,0,1
sales,US,2016-02-24T00:00:00Z,medium,74000,0.45,0.57,2,148,3,0,0,1
technical,US,2014-07-29T00:00:00Z,low,53000,0.49,0.54,4,247,3,1,0,0
sales,US,2015-05-16T00:00:00Z,medium,76000,0.44,0.68,2,120,2,0,0,0
marketing,US,2009-05-16T00:00:00Z,high,122000,0.48,0.39,4,272,3,0,0,0
management,Europe,2015-10-18T00:00:00Z,medium,78000,0.42,0.53,3,181,5,0,0,0
technical,US,2015-09-18T00:00:00Z,medium,98000,0.62,0.81,3,245,2,1,0,0
hr,US,2008-07-06T00:00:00Z,low,39000,0.37,0.63,4,167,3,0,0,0
support,US,2008-07-17T00:00:00Z,medium,65000,0.99,0.67,5,153,2,0,0,0
technical,US,2015-09-13T00:00:00Z,low,47000,0.61,0.7,4,161,3,1,0,0
technical,US,2015-12-10T00:00:00Z,low,50000,0.95,0.88,3,199,3,0,0,0
technical,US,2009-08-28T00:00:00Z,low,45000,0.57,0.91,4,224,10,0,0,0
technical,US,2011-10-16T00:00:00Z,low,43000,0.1,0.77,5,276,4,0,0,1
technical,US,2017-03-08T00:00:00Z,medium,90000,0.98,0.42,5,226,3,0,0,0
sales,US,2016-08-20T00:00:00Z,high,126000,0.15,0.53,4,205,5,1,0,0
sales,US,2016-12-25T00:00:00Z,medium,65000,0.9,0.49,3,259,6,0,0,0
technical,US,2016-02-08T00:00:00Z,medium,77000,0.48,0.53,3,211,4,0,0,0
marketing,US,2016-06-08T00:00:00Z,medium,74000,0.73,0.59,6,121,5,0,0,0
sales,US,2010-05-16T00:00:00Z,low,58000,0.11,0.91,7,287,4,0,0,1
product_mng,Europe,2015-08-31T00:00:00Z,low,51000,0.13,0.53,6,173,4,0,0,0
sales,US,2014-02-28T00:00:00Z,low,56000,0.8,0.87,4,220,2,0,0,0
IT,US,2016-01-29T00:00:00Z,low,52000,0.45,0.54,2,140,3,0,0,1
hr,US,2016-03-11T00:00:00Z,low,52000,0.98,0.91,4,240,3,0,0,0
sales,US,2017-08-26T00:00:00Z,low,42000,0.93,0.55,3,134,3,1,0,0
sales,Canada,2016-05-06T00:00:00Z,medium,62000,0.52,0.53,5,182,2,0,0,0
sales,Europe,2017-12-03T00:00:00Z,low,59000,0.76,0.84,4,236,4,0,0,0
IT,Europe,2013-05-24T00:00:00Z,medium,72000,0.91,0.72,3,213,3,0,0,0
technical,Europe,2011-05-31T00:00:00Z,low,40000,0.71,0.81,3,141,3,0,0,0
sales,US,2017-05-24T00:00:00Z,medium,83000,0.36,0.45,2,127,3,0,0,1
support,Europe,2015-03-15T00:00:00Z,low,33000,0.66,0.65,3,234,2,0,0,0
sales,US,2015-04-28T00:00:00Z,high,181000,0.93,0.59,3,233,3,0,0,0
sales,US,2017-07-08T00:00:00Z,low,35000,0.44,0.42,2,199,2,0,0,0
sales,US,2016-06-02T00:00:00Z,low,34000,0.37,0.54,2,145,3,0,0,1
support,Europe,2014-05-02T00:00:00Z,medium,77000,0.59,0.69,3,146,3,0,0,0
IT,Europe,2015-08-24T00:00:00Z,medium,87000,0.41,0.54,2,153,3,1,0,1
sales,US,2010-10-27T00:00:00Z,low,30000,0.78,0.66,3,164,3,0,0,1
technical,Europe,2017-11-27T00:00:00Z,high,133000,0.88,0.91,4,233,4,0,0,0
hr,Canada,2011-08-06T00:00:00Z,medium,63000,0.2,0.52,5,218,5,0,0,0
sales,US,2015-02-06T00:00:00Z,medium,78000,0.58,0.99,3,207,10,0,0,0
technical,US,2017-10-15T00:00:00Z,medium,85000,0.96,0.92,3,196,4,0,0,0
sales,US,2015-05-20T00:00:00Z,low,56000,0.88,0.8,3,133,3,0,0,0
product_mng,Canada,2012-09-27T00:00:00Z,medium,66000,0.61,0.51,3,156,3,1,0,0
management,Europe,2016-09-15T00:00:00Z,high,155000,0.93,0.86,4,192,4,0,0,0
RandD,US,2016-04-04T00:00:00Z,medium,67000,0.61,0.68,5,225,4,0,0,0
technical,US,2015-11-30T00:00:00Z,low,58000,0.68,0.61,6,236,3,0,0,0
sales,US,2015-07-04T00:00:00Z,high,168000,0.74,0.97,2,135,4,0,0,0
support,Canada,2016-02-21T00:00:00Z,low,33000,0.66,0.93,4,248,3,0,0,0
marketing,US,2015-02-08T00:00:00Z,medium,86000,0.73,0.57,3,146,2,0,0,0
accounting,US,2017-08-29T00:00:00Z,low,30000,0.74,0.59,4,155,3,0,0,0
IT,US,2016-11-02T00:00:00Z,medium,80000,0.48,0.78,2,198,2,0,0,1
sales,US,2008-06-01T00:00:00Z,medium,68000,0.65,0.48,3,131,3,1,0,0
technical,US,2016-10-23T00:00:00Z,medium,86000,0.33,0.88,6,219,5,0,0,1
sales,Europe,2015-08-26T00:00:00Z,low,58000,0.55,0.84,4,200,4,0,0,0
sales,US,2017-01-27T00:00:00Z,low,47000,0.37,0.57,2,133,3,0,0,1
support,US,2017-05-08T00:00:00Z,medium,72000,0.36,0.55,6,226,6,0,0,0
sales,US,2008-12-22T00:00:00Z,high,114000,0.88,0.84,4,170,2,0,0,0
technical,US,2017-10-14T00:00:00Z,low,30000,0.79,0.54,6,190,4,0,0,0
support,US,2009-07-05T00:00:00Z,medium,85000,0.36,0.55,3,191,3,0,0,0
management,US,2015-11-13T00:00:00Z,medium,100000,0.38,0.51,2,120,3,0,0,0
accounting,Europe,2017-10-03T00:00:00Z,low,52000,0.92,0.44,3,260,8,0,0,0
management,Europe,2015-04-05T00:00:00Z,medium,61000,0.73,0.49,4,243,2,0,0,0
accounting,US,2017-08-15T00:00:00Z,low,40000,0.7,0.58,4,207,2,1,0,0
sales,US,2017-11-09T00:00:00Z,low,53000,0.51,0.91,4,269,5,0,1,0
accounting,US,2016-12-28T00:00:00Z,low,55000,0.45,0.62,6,129,5,0,0,0
support,US,2016-03-23T00:00:00Z,low,49000,0.62,0.92,3,228,2,0,0,0
sales,Europe,2015-10-18T00:00:00Z,low,59000,0.54,0.76,3,183,3,0,0,0
technical,US,2017-09-03T00:00:00Z,medium,65000,0.88,0.68,5,157,4,1,0,0
IT,US,2016-11-06T00:00:00Z,low,46000,0.57,0.5,5,149,5,1,0,0
support,US,2008-09-16T00:00:00Z,medium,90000,0.65,0.55,5,215,2,0,0,0
technical,US,2017-02-10T00:00:00Z,low,46000,0.39,0.56,2,142,3,0,0,1
support,US,2017-12-15T00:00:00Z,medium,86000,0.44,0.55,2,141,3,0,0,1
sales,US,2015-06-13T00:00:00Z,low,50000,0.62,0.77,5,227,4,0,0,1
technical,US,2017-10-18T00:00:00Z,medium,72000,0.36,0.52,2,146,3,0,0,1
technical,US,2011-10-14T00:00:00Z,low,44000,0.56,0.83,5,157,3,0,0,0
product_mng,US,2012-10-28T00:00:00Z,medium,64000,0.92,0.64,4,190,10,1,0,0
product_mng,US,2016-07-31T00:00:00Z,low,42000,0.83,0.73,4,262,2,0,0,0
IT,US,2012-08-26T00:00:00Z,high,176000,0.79,0.91,3,226,2,0,0,0
sales,Canada,2016-11-30T00:00:00Z,high,148000,0.62,0.55,3,108,2,1,0,0
product_mng,US,2015-05-15T00:00:00Z,low,52000,0.97,0.95,3,257,2,0,0,0
RandD,US,2015-07-23T00:00:00Z,low,60000,0.64,0.56,3,239,3,0,0,0
technical,APAC,2016-05-28T00:00:00Z,low,40000,0.98,0.99,3,235,3,0,0,0
IT,Canada,2017-04-04T00:00:00Z,medium,76000,0.72,0.93,4,174,2,0,0,0
sales,Canada,2009-08-06T00:00:00Z,low,45000,0.09,0.77,6,290,4,0,0,1
support,US,2013-08-20T00:00:00Z,medium,63000,0.74,0.61,3,231,2,0,0,0
sales,Europe,2015-04-22T00:00:00Z,low,48000,0.89,0.95,4,275,5,0,0,1
support,US,2016-01-29T00:00:00Z,low,48000,0.49,0.77,4,218,2,0,0,0
RandD,Europe,2017-10-27T00:00:00Z,medium,76000,0.54,0.91,3,249,3,0,0,0
sales,US,2016-09-01T00:00:00Z,medium,87000,0.11,0.85,6,305,4,0,0,1
IT,US,2017-10-18T00:00:00Z,medium,80000,0.71,1,4,300,5,0,0,1
management,Europe,2014-09-16T00:00:00Z,high,159000,0.44,0.56,2,133,3,0,0,1
technical,US,2009-01-25T00:00:00Z,low,50000,0.87,0.91,3,229,3,1,0,0
marketing,US,2015-10-11T00:00:00Z,low,36000,0.44,0.45,2,132,3,0,0,1
hr,US,2015-08-09T00:00:00Z,low,50000,0.42,0.55,2,148,3,0,0,1
product_mng,Europe,2008-06-28T00:00:00Z,medium,76000,0.56,0.59,5,209,2,1,0,0
technical,US,2008-06-16T00:00:00Z,high,158000,0.95,0.56,5,194,2,0,0,0
technical,Europe,2017-06-02T00:00:00Z,low,37000,0.42,0.57,2,154,3,1,0,1
product_mng,US,2017-01-20T00:00:00Z,medium,63000,0.68,0.73,3,257,3,0,0,0
RandD,US,2015-05-16T00:00:00Z,medium,79000,0.38,0.56,2,161,3,0,0,1
support,US,2008-08-04T00:00:00Z,low,48000,0.55,0.91,3,243,4,0,0,0
technical,Canada,2017-04-12T00:00:00Z,medium,90000,0.91,0.56,4,158,3,0,0,0
RandD,US,2013-06-13T00:00:00Z,low,40000,0.11,0.94,6,276,4,0,0,1
product_mng,US,2015-09-02T00:00:00Z,medium,75000,0.84,0.89,3,234,2,0,0,0
sales,Europe,2008-03-21T00:00:00Z,low,60000,0.94,0.88,5,150,4,0,0,0
product_mng,US,2017-04-05T00:00:00Z,medium,90000,0.74,0.66,3,177,2,0,0,0
sales,US,2016-12-20T00:00:00Z,medium,64000,0.51,0.72,3,148,2,0,0,0
accounting,Europe,2016-10-29T00:00:00Z,medium,67000,0.22,0.96,3,213,3,0,0,0
sales,US,2016-03-12T00:00:00Z,low,37000,0.6,0.52,3,183,2,0,0,0
management,Canada,2015-05-22T00:00:00Z,medium,78000,0.81,0.86,5,159,2,0,0,0
marketing,US,2010-01-20T00:00:00Z,low,42000,0.89,1,5,246,5,0,0,1
sales,US,2008-07-11T00:00:00Z,medium,77000,0.58,0.69,3,252,3,0,0,0
IT,US,2015-03-31T00:00:00Z,low,30000,0.98,0.6,4,160,3,0,0,0
IT,US,2015-05-20T00:00:00Z,low,51000,0.23,0.94,5,242,4,0,0,0
management,US,2017-04-03T00:00:00Z,high,152000,0.66,0.8,4,183,2,1,0,0
RandD,APAC,2015-09-01T00:00:00Z,medium,66000,0.66,0.59,4,179,3,0,0,0
technical,US,2015-07-10T00:00:00Z,medium,61000,0.69,0.98,3,168,2,0,0,0
hr,US,2017-05-31T00:00:00Z,low,42000,0.86,0.72,3,217,3,0,0,0
sales,US,2016-05-18T00:00:00Z,low,51000,0.89,0.87,5,225,5,0,0,1
IT,US,2017-05-15T00:00:00Z,medium,68000,0.45,0.63,5,111,5,0,0,0
sales,US,2014-02-04T00:00:00Z,high,168000,0.5,0.74,3,220,3,0,0,0
technical,Europe,2017-07-02T00:00:00Z,medium,76000,0.61,0.42,3,145,4,0,1,0
accounting,US,2015-11-06T00:00:00Z,high,244000,0.47,0.51,6,190,5,0,1,0
technical,US,2014-11-14T00:00:00Z,high,200000,0.6,0.95,4,164,4,0,0,0
sales,Europe,2009-07-08T00:00:00Z,medium,69000,0.73,0.92,3,199,3,1,0,0
support,US,2014-07-27T00:00:00Z,medium,69000,0.45,0.41,3,193,2,1,0,0
sales,US,2017-02-12T00:00:00Z,low,47000,0.68,0.81,5,266,2,0,0,0
support,US,2017-10-07T00:00:00Z,medium,89000,0.99,0.99,3,158,2,0,0,0
management,US,2017-10-27T00:00:00Z,medium,83000,0.44,0.56,2,145,3,0,0,1
management,APAC,2016-12-25T00:00:00Z,medium,67000,0.49,0.37,5,246,3,0,0,0
IT,US,2015-11-13T00:00:00Z,medium,82000,0.43,0.48,2,149,3,0,0,1
sales,Europe,2016-06-14T00:00:00Z,medium,68000,0.09,0.8,6,301,5,0,0,1
technical,US,2011-09-13T00:00:00Z,low,51000,0.52,0.97,4,170,3,0,0,0
product_mng,US,2008-05-25T00:00:00Z,medium,68000,0.68,0.85,3,250,3,0,0,0
support,US,2016-11-16T00:00:00Z,medium,70000,0.52,0.92,3,150,2,1,0,0
sales,US,2011-12-26T00:00:00Z,medium,66000,0.8,0.72,3,271,2,0,0,0
marketing,Canada,2013-11-29T00:00:00Z,low,33000,0.7,0.89,3,183,5,0,0,1
support,US,2016-11-02T00:00:00Z,low,46000,0.9,0.74,5,249,3,0,0,0
sales,US,2015-10-30T00:00:00Z,medium,69000,0.56,0.86,4,181,3,0,0,0
sales,US,2008-04-18T00:00:00Z,medium,61000,0.15,0.98,2,96,2,0,0,0
support,US,2017-03-04T00:00:00Z,low,47000,0.42,0.47,2,130,3,0,0,1
technical,Europe,2017-01-25T00:00:00Z,medium,66000,0.89,0.62,5,196,3,0,0,0
sales,US,2015-09-07T00:00:00Z,low,43000,0.93,0.67,5,237,4,0,0,0
IT,US,2016-11-20T00:00:00Z,low,49000,0.59,0.59,4,270,2,0,0,0
technical,US,2016-10-09T00:00:00Z,medium,75000,0.39,0.58,3,152,3,1,0,0
technical,US,2009-03-27T00:00:00Z,medium,71000,0.92,0.85,3,207,2,0,0,0
RandD,US,2016-04-12T00:00:00Z,medium,83000,0.23,0.37,3,247,4,0,0,0
technical,US,2016-11-29T00:00:00Z,medium,90000,0.57,0.67,3,138,6,1,0,0
support,US,2008-04-25T00:00:00Z,low,48000,0.6,0.57,3,203,2,0,0,0
management,US,2008-08-06T00:00:00Z,medium,70000,0.11,0.9,6,253,4,0,0,1
marketing,US,2017-05-27T00:00:00Z,medium,69000,0.16,0.74,5,205,4,1,0,0
support,Canada,2015-05-02T00:00:00Z,low,58000,0.44,0.56,2,156,3,0,0,1
technical,US,2017-12-02T00:00:00Z,medium,70000,0.14,0.62,4,158,4,1,0,1
management,US,2017-03-16T00:00:00Z,medium,63000,0.85,0.51,3,261,4,0,1,0
sales,Canada,2016-07-17T00:00:00Z,low,47000,0.64,0.48,3,147,7,0,0,0
RandD,Canada,2017-05-02T00:00:00Z,low,34000,0.35,0.78,5,275,4,0,0,0
technical,APAC,2017-10-24T00:00:00Z,medium,70000,0.79,0.96,4,234,5,0,0,1
product_mng,Europe,2013-06-11T00:00:00Z,low,34000,0.84,0.5,4,178,2,0,0,0
IT,Europe,2017-02-01T00:00:00Z,medium,65000,0.25,0.62,6,271,5,0,0,0
sales,US,2009-09-05T00:00:00Z,low,33000,0.1,0.78,5,285,4,1,0,1
marketing,US,2011-05-04T00:00:00Z,low,48000,0.24,0.42,5,210,5,0,0,0
technical,US,2017-10-15T00:00:00Z,medium,82000,0.76,0.8,2,219,4,1,0,0
marketing,US,2012-05-20T00:00:00Z,low,37000,0.49,0.87,3,212,2,0,0,0
IT,Europe,2016-02-20T00:00:00Z,medium,80000,0.78,0.43,4,275,3,0,0,0
accounting,US,2017-01-31T00:00:00Z,low,44000,0.53,0.73,4,227,3,0,0,0
support,US,2016-11-10T00:00:00Z,low,44000,0.93,0.98,4,160,3,0,0,0
sales,Europe,2016-02-07T00:00:00Z,medium,76000,0.99,0.89,3,273,2,0,0,0
hr,US,2017-12-19T00:00:00Z,low,42000,0.79,0.87,5,261,5,0,0,1
support,US,2017-03-26T00:00:00Z,low,59000,0.51,0.76,2,239,3,0,0,0
technical,US,2015-04-27T00:00:00Z,low,37000,1,0.86,4,245,4,0,0,0
sales,US,2010-09-15T00:00:00Z,low,49000,0.37,0.56,2,156,3,0,0,1
sales,US,2008-10-22T00:00:00Z,low,51000,0.44,0.52,2,141,3,0,0,1
product_mng,US,2016-11-29T00:00:00Z,medium,80000,0.79,0.53,2,217,2,0,0,0
technical,US,2009-05-25T00:00:00Z,medium,63000,0.58,0.84,4,206,7,0,1,0
sales,APAC,2017-11-06T00:00:00Z,low,30000,0.63,0.88,3,177,3,0,0,0
sales,Canada,2015-03-06T00:00:00Z,medium,81000,0.37,0.49,2,153,3,0,0,1
support,US,2008-07-13T00:00:00Z,low,59000,0.73,0.54,3,283,6,0,0,0
technical,Europe,2015-08-31T00:00:00Z,medium,76000,0.88,0.58,3,145,8,0,0,0
product_mng,US,2017-09-15T00:00:00Z,low,42000,0.99,0.84,4,142,10,0,0,0
RandD,APAC,2016-11-04T00:00:00Z,low,31000,0.88,0.5,3,206,2,0,0,0
sales,US,2016-10-06T00:00:00Z,low,51000,0.82,0.54,4,191,3,0,0,0
support,US,2008-08-30T00:00:00Z,low,43000,0.1,0.95,6,244,5,0,0,1
technical,US,2017-04-18T00:00:00Z,medium,84000,0.99,0.56,3,193,3,1,0,0
technical,US,2017-10-24T00:00:00Z,high,164000,0.72,0.63,3,223,2,1,0,0
support,Canada,2016-02-08T00:00:00Z,medium,63000,0.9,0.95,3,133,4,0,0,0
RandD,US,2013-01-22T00:00:00Z,low,37000,0.78,0.95,3,249,4,0,0,0
sales,US,2009-07-07T00:00:00Z,low,49000,0.66,0.68,4,269,3,1,0,0
hr,US,2016-05-20T00:00:00Z,low,40000,0.87,0.58,4,212,3,0,0,0
sales,Europe,2016-11-17T00:00:00Z,low,31000,0.37,0.55,2,152,3,0,0,1
RandD,US,2015-04-26T00:00:00Z,medium,80000,0.15,0.8,5,121,5,0,0,0
technical,US,2016-05-17T00:00:00Z,medium,86000,0.73,0.86,4,245,6,0,0,1
hr,APAC,2008-01-26T00:00:00Z,low,47000,0.76,0.67,5,243,3,0,0,0
IT,Canada,2013-01-14T00:00:00Z,low,47000,0.83,0.51,5,143,4,0,0,0
support,US,2017-11-28T00:00:00Z,medium,81000,0.5,0.81,3,170,2,0,0,0
technical,US,2015-05-16T00:00:00Z,low,44000,0.5,0.85,4,272,2,0,0,0
sales,US,2017-01-05T00:00:00Z,medium,89000,0.62,0.87,4,221,3,1,0,0
sales,US,2008-06-04T00:00:00Z,low,42000,0.5,0.65,5,242,3,0,0,0
RandD,US,2009-07-24T00:00:00Z,low,60000,0.98,0.96,5,183,3,1,0,0
hr,APAC,2009-09-08T00:00:00Z,medium,88000,0.39,0.54,2,158,3,0,0,1
support,US,2008-03-02T00:00:00Z,low,60000,0.77,0.92,5,235,5,0,0,1
accounting,US,2015-08-21T00:00:00Z,medium,76000,0.68,0.51,2,196,3,0,0,0
sales,US,2016-12-02T00:00:00Z,medium,68000,0.78,0.8,3,135,7,0,0,0
sales,US,2016-07-04T00:00:00Z,low,54000,0.85,0.82,4,270,5,0,0,1
technical,US,2016-01-10T00:00:00Z,low,34000,0.84,0.98,4,134,5,1,0,0
support,Europe,2016-11-18T00:00:00Z,medium,80000,0.51,0.95,4,201,3,0,0,0
management,US,2018-01-12T00:00:00Z,medium,68000,0.12,0.59,3,229,6,0,0,0
sales,Europe,2009-08-18T00:00:00Z,medium,84000,0.97,0.91,3,246,2,0,0,0
technical,US,2017-02-09T00:00:00Z,low,46000,0.54,0.53,4,158,2,0,0,0
sales,Europe,2016-04-12T00:00:00Z,low,39000,0.57,0.7,4,237,6,0,0,0
technical,US,2017-03-06T00:00:00Z,medium,87000,0.5,0.88,4,172,4,0,0,0
support,US,2017-01-28T00:00:00Z,medium,71000,0.34,0.42,6,287,5,1,0,0
sales,US,2015-10-12T00:00:00Z,low,40000,0.21,0.85,6,235,6,0,0,0
marketing,US,2010-05-15T00:00:00Z,low,60000,0.75,0.84,4,195,3,0,0,0
product_mng,US,2017-07-10T00:00:00Z,medium,71000,0.4,0.85,4,198,2,0,0,0
accounting,US,2008-08-21T00:00:00Z,low,43000,0.86,0.56,5,141,2,0,0,0
support,Europe,2017-06-12T00:00:00Z,low,38000,0.89,0.54,3,214,2,0,0,0
technical,US,2016-02-21T00:00:00Z,medium,81000,0.54,0.71,5,173,2,0,0,0
marketing,US,2018-01-22T00:00:00Z,medium,106000,0.18,0.73,6,231,4,0,0,0
sales,Europe,2018-01-04T00:00:00Z,low,36000,0.9,0.79,3,222,6,1,0,0
product_mng,Europe,2008-02-14T00:00:00Z,medium,90000,0.93,0.73,3,252,4,0,0,0
technical,US,2016-05-31T00:00:00Z,medium,86000,0.4,0.46,2,130,3,0,0,1
sales,US,2015-06-13T00:00:00Z,low,52000,0.75,0.75,4,266,3,0,0,0
technical,US,2010-01-24T00:00:00Z,low,58000,0.38,1,5,137,4,0,0,1
accounting,US,2015-02-22T00:00:00Z,low,46000,0.68,0.83,5,267,3,0,0,0
sales,US,2017-04-21T00:00:00Z,low,52000,0.43,0.51,2,128,3,0,0,1
support,US,2013-12-07T00:00:00Z,medium,61000,0.91,0.91,4,262,6,0,0,1
sales,US,2015-05-21T00:00:00Z,low,36000,0.41,0.55,2,154,3,0,0,1
technical,Europe,2015-07-07T00:00:00Z,low,30000,0.73,0.62,3,218,3,0,0,0
IT,US,2017-04-04T00:00:00Z,low,39000,0.6,0.85,3,242,2,0,0,0
sales,US,2015-06-07T00:00:00Z,low,54000,0.62,0.68,5,265,3,0,0,0
IT,US,2014-03-23T00:00:00Z,medium,75000,0.71,0.68,3,231,2,1,0,0
IT,US,2009-12-02T00:00:00Z,medium,74000,0.19,0.63,5,206,6,0,0,0
sales,US,2008-12-23T00:00:00Z,medium,73000,0.89,0.95,4,141,3,0,0,0
sales,Europe,2009-12-13T00:00:00Z,medium,80000,0.1,0.87,7,289,4,0,0,1
sales,US,2008-09-06T00:00:00Z,medium,90000,0.52,0.68,3,162,4,1,0,0
sales,Europe,2013-08-25T00:00:00Z,low,51000,0.56,0.73,4,134,3,0,0,0
sales,Europe,2016-03-26T00:00:00Z,medium,84000,0.09,0.88,6,269,4,0,0,1
hr,US,2016-07-12T00:00:00Z,low,39000,0.41,0.57,2,136,3,0,0,1
support,Europe,2016-04-01T00:00:00Z,low,47000,0.66,0.96,4,103,2,0,0,0
marketing,Canada,2015-11-12T00:00:00Z,low,38000,0.96,0.89,3,163,2,0,0,0
technical,Europe,2012-02-17T00:00:00Z,medium,100000,0.91,0.77,3,195,7,0,0,0
marketing,US,2016-02-15T00:00:00Z,high,116000,0.73,0.67,4,205,3,0,0,0
management,Europe,2016-12-25T00:00:00Z,medium,83000,0.4,0.54,2,137,3,0,0,1
hr,Europe,2016-04-20T00:00:00Z,low,55000,0.59,0.74,5,165,2,0,0,0
sales,US,2015-04-03T00:00:00Z,medium,63000,0.83,0.83,3,186,3,1,1,0
sales,US,2015-10-22T00:00:00Z,low,35000,0.72,0.99,4,239,3,0,0,0
sales,Europe,2008-11-18T00:00:00Z,low,31000,0.57,0.61,3,112,5,0,0,0
RandD,US,2017-01-08T00:00:00Z,medium,90000,0.84,1,5,250,5,0,0,1
sales,Europe,2016-11-05T00:00:00Z,medium,63000,0.89,0.58,3,167,3,0,0,0
technical,APAC,2017-12-09T00:00:00Z,low,31000,0.11,0.97,6,310,4,0,0,1
technical,US,2009-01-05T00:00:00Z,medium,89000,0.21,0.63,5,226,3,0,0,0
support,US,2018-01-11T00:00:00Z,low,44000,0.53,0.56,5,188,3,0,0,0
sales,Europe,2016-12-30T00:00:00Z,medium,78000,0.85,0.63,3,167,3,0,0,0
marketing,Europe,2016-08-14T00:00:00Z,medium,66000,0.55,0.98,2,144,2,0,0,0
sales,US,2010-04-15T00:00:00Z,low,37000,0.4,0.48,2,137,3,0,0,1
management,US,2009-03-07T00:00:00Z,medium,72000,0.74,0.62,3,216,3,1,0,0
hr,US,2016-02-16T00:00:00Z,medium,77000,0.09,0.82,6,257,4,0,0,1
IT,Canada,2016-03-04T00:00:00Z,medium,90000,0.38,0.57,2,146,3,0,0,1
accounting,Canada,2015-12-18T00:00:00Z,medium,85000,0.62,0.86,4,135,3,0,0,0
support,US,2010-07-19T00:00:00Z,low,51000,0.55,0.63,5,184,4,0,0,0
technical,US,2017-05-07T00:00:00Z,low,50000,0.99,0.64,4,135,2,1,0,0
sales,US,2011-07-29T00:00:00Z,medium,77000,0.46,0.47,6,101,5,0,0,0
technical,US,2017-06-14T00:00:00Z,high,178000,0.19,0.64,5,181,4,1,0,0
sales,US,2016-03-10T00:00:00Z,high,155000,0.72,0.68,4,238,3,0,0,0
sales,US,2014-03-23T00:00:00Z,medium,61000,0.51,0.86,4,223,3,1,0,0
management,US,2016-05-03T00:00:00Z,low,43000,0.94,0.88,4,262,2,0,0,0
technical,US,2016-11-17T00:00:00Z,low,53000,0.96,0.97,4,260,3,0,0,0
technical,US,2016-04-24T00:00:00Z,medium,85000,0.68,0.59,3,141,3,0,0,0
technical,US,2016-05-17T00:00:00Z,medium,83000,0.12,0.61,6,257,3,0,0,0
IT,US,2017-05-14T00:00:00Z,medium,61000,0.46,0.48,2,129,3,0,0,1
sales,US,2016-04-30T00:00:00Z,low,37000,0.39,0.5,2,135,3,0,0,1
technical,US,2016-11-08T00:00:00Z,low,40000,0.09,0.92,7,301,4,0,0,1
RandD,Europe,2011-09-08T00:00:00Z,low,49000,0.1,0.94,6,285,4,0,0,1
marketing,US,2017-09-17T00:00:00Z,medium,61000,0.67,0.57,5,215,4,0,0,0
support,US,2015-03-27T00:00:00Z,low,37000,0.81,0.78,3,165,3,0,0,0
support,Europe,2016-10-22T00:00:00Z,low,31000,0.53,0.49,4,192,2,0,0,0
sales,US,2015-10-26T00:00:00Z,medium,75000,0.6,0.91,3,157,4,0,0,0
product_mng,US,2015-05-18T00:00:00Z,medium,65000,0.4,0.72,3,139,2,0,0,0
IT,US,2009-10-25T00:00:00Z,high,140000,0.92,0.66,4,113,3,0,0,0
product_mng,US,2008-10-31T00:00:00Z,low,42000,0.37,0.48,2,129,3,0,0,1
sales,Europe,2016-10-16T00:00:00Z,low,41000,0.2,0.98,3,180,6,0,0,0
technical,Europe,2016-06-14T00:00:00Z,medium,68000,0.49,0.63,6,265,3,0,0,1
RandD,US,2015-02-08T00:00:00Z,low,31000,0.82,0.49,5,210,3,0,0,0
technical,US,2015-10-01T00:00:00Z,low,36000,0.31,0.75,4,220,3,0,0,0
product_mng,US,2016-09-07T00:00:00Z,medium,61000,0.4,0.65,6,172,2,1,0,0
support,US,2015-03-11T00:00:00Z,low,43000,0.72,0.8,3,158,3,0,0,0
RandD,Europe,2017-08-30T00:00:00Z,high,171000,0.62,0.77,4,256,3,0,0,0
sales,US,2014-06-10T00:00:00Z,low,42000,0.52,0.84,4,212,3,0,0,0
support,US,2015-10-24T00:00:00Z,low,31000,0.55,0.81,4,267,5,0,0,0
marketing,Europe,2016-08-03T00:00:00Z,low,51000,0.6,0.72,3,181,2,0,0,0
accounting,US,2008-09-04T00:00:00Z,low,52000,0.91,0.5,3,276,4,0,0,0
RandD,US,2016-01-01T00:00:00Z,medium,64000,0.81,0.81,4,177,3,0,0,0
management,US,2010-05-01T00:00:00Z,medium,62000,0.42,0.53,2,131,3,0,0,1
sales,Europe,2015-07-27T00:00:00Z,low,56000,0.99,0.52,4,205,2,0,0,0
accounting,US,2016-09-17T00:00:00Z,medium,80000,0.7,0.51,3,256,3,0,0,0
sales,US,2016-05-16T00:00:00Z,medium,88000,0.74,0.98,5,200,3,0,0,0
technical,US,2016-06-25T00:00:00Z,low,54000,0.56,0.66,3,232,2,0,0,0
sales,US,2017-01-10T00:00:00Z,medium,76000,0.85,0.57,4,150,3,0,1,0
sales,US,2017-04-17T00:00:00Z,low,57000,0.24,0.55,5,208,5,0,0,0
marketing,US,2017-11-16T00:00:00Z,medium,87000,0.94,0.69,3,248,3,0,0,0
support,US,2015-10-19T00:00:00Z,low,46000,0.59,0.57,4,261,2,0,0,0
support,US,2015-11-19T00:00:00Z,low,39000,0.51,0.93,5,232,3,0,0,0
sales,Europe,2017-03-29T00:00:00Z,medium,83000,0.77,0.8,3,207,3,0,0,0
technical,APAC,2009-05-29T00:00:00Z,low,52000,0.92,0.64,4,259,2,0,0,0
accounting,US,2015-08-19T00:00:00Z,medium,85000,0.42,0.8,4,259,7,1,0,0
sales,Canada,2016-01-03T00:00:00Z,low,42000,0.74,0.79,5,237,4,0,0,0
management,Europe,2009-08-08T00:00:00Z,low,110000,0.91,0.71,2,159,3,1,0,0
hr,US,2015-12-07T00:00:00Z,low,37000,0.93,0.73,4,283,7,0,0,0
support,US,2015-04-12T00:00:00Z,low,31000,0.89,0.84,6,196,4,0,0,0
sales,US,2013-11-21T00:00:00Z,low,33000,0.76,0.63,3,198,3,0,0,0
accounting,Europe,2009-06-24T00:00:00Z,low,40000,0.71,0.62,3,258,2,0,0,0
sales,US,2015-02-27T00:00:00Z,low,32000,0.63,0.85,3,151,4,1,0,0
hr,Canada,2015-03-08T00:00:00Z,medium,86000,0.88,0.96,5,182,4,1,0,0
technical,US,2010-10-23T00:00:00Z,low,51000,0.51,0.56,4,198,2,1,0,0
sales,US,2013-01-18T00:00:00Z,low,32000,0.64,0.67,5,198,2,1,0,0
marketing,Canada,2012-08-04T00:00:00Z,low,54000,0.59,1,4,275,3,0,0,0
support,Europe,2015-02-02T00:00:00Z,medium,107000,0.19,0.76,2,158,3,0,0,0
support,US,2009-10-11T00:00:00Z,medium,89000,0.98,0.71,5,217,3,0,0,0
management,Canada,2016-02-15T00:00:00Z,medium,63000,0.68,0.58,3,217,2,0,0,0
management,US,2016-02-07T00:00:00Z,low,41000,0.52,0.96,4,171,2,0,0,0
RandD,Canada,2015-12-08T00:00:00Z,low,39000,0.74,0.51,4,185,2,1,0,0
technical,Europe,2017-11-02T00:00:00Z,medium,67000,0.12,0.95,3,236,3,0,0,0
sales,US,2017-10-13T00:00:00Z,medium,85000,0.63,0.66,4,237,2,1,0,0
marketing,US,2011-08-03T00:00:00Z,low,57000,0.87,0.49,4,149,2,0,0,0
technical,US,2017-07-23T00:00:00Z,medium,64000,0.97,0.58,4,159,3,0,0,0
product_mng,US,2015-08-22T00:00:00Z,medium,78000,0.63,0.78,4,160,2,0,0,0
technical,US,2009-10-10T00:00:00Z,medium,70000,0.61,0.5,4,216,2,0,0,0
product_mng,US,2017-04-14T00:00:00Z,medium,61000,0.83,0.94,5,273,5,0,0,1
technical,US,2008-04-09T00:00:00Z,medium,86000,0.14,0.58,4,275,10,0,0,0
support,US,2015-08-06T00:00:00Z,medium,82000,0.85,0.95,4,171,3,0,0,0
marketing,US,2017-03-15T00:00:00Z,low,60000,0.11,0.8,6,282,4,0,0,1
hr,US,2016-04-09T00:00:00Z,medium,89000,0.83,0.92,5,267,6,0,0,1
hr,US,2015-03-22T00:00:00Z,low,30000,0.51,0.83,5,249,4,0,0,1
RandD,Canada,2016-08-25T00:00:00Z,low,55000,0.43,0.53,2,160,3,0,0,1
hr,Canada,2008-08-15T00:00:00Z,low,31000,0.66,0.49,4,157,3,0,0,0
marketing,US,2011-04-07T00:00:00Z,medium,72000,0.71,0.68,5,226,3,0,0,0
product_mng,US,2016-11-30T00:00:00Z,medium,81000,0.53,0.86,3,150,3,0,0,0
technical,US,2017-09-17T00:00:00Z,low,31000,0.99,0.8,3,209,2,0,0,0
sales,US,2016-05-02T00:00:00Z,low,50000,0.84,0.68,3,231,3,0,0,0
marketing,US,2015-12-03T00:00:00Z,medium,78000,0.65,0.77,5,241,2,0,0,0
technical,US,2018-01-25T00:00:00Z,medium,87000,0.11,0.81,5,287,4,0,0,1
RandD,US,2015-06-21T00:00:00Z,medium,87000,0.75,0.93,4,195,3,0,0,0
hr,US,2016-04-13T00:00:00Z,medium,64000,0.69,0.75,3,179,2,1,0,0
sales,US,2017-04-20T00:00:00Z,medium,66000,0.48,0.93,3,150,10,0,0,0
IT,US,2016-12-22T00:00:00Z,low,33000,0.56,0.57,2,112,4,0,0,0
marketing,US,2012-06-10T00:00:00Z,medium,67000,0.41,0.77,4,231,6,0,0,0
support,Canada,2008-10-26T00:00:00Z,low,55000,0.38,0.47,2,144,3,0,0,1
IT,Europe,2017-09-03T00:00:00Z,medium,62000,0.16,0.94,4,261,6,0,0,0
sales,Canada,2014-10-07T00:00:00Z,medium,82000,0.94,0.83,2,185,3,1,0,0
sales,US,2017-01-22T00:00:00Z,medium,89000,0.61,0.95,5,233,3,0,0,0
support,Europe,2010-02-02T00:00:00Z,low,60000,0.73,0.91,3,135,2,0,0,0
support,US,2009-06-07T00:00:00Z,medium,89000,0.8,0.4,5,199,4,1,0,0
sales,US,2016-01-08T00:00:00Z,medium,81000,0.91,0.56,4,251,4,0,0,0
hr,Europe,2017-09-16T00:00:00Z,medium,75000,0.71,0.54,4,188,6,0,0,0
sales,US,2012-03-11T00:00:00Z,low,57000,0.7,0.9,3,225,2,0,0,0
technical,US,2010-01-29T00:00:00Z,medium,72000,0.69,0.89,3,216,4,0,0,0
IT,US,2014-11-21T00:00:00Z,medium,88000,0.1,0.84,6,253,4,0,0,1
IT,Canada,2016-12-06T00:00:00Z,low,30000,0.09,0.87,5,263,4,0,0,1
RandD,Europe,2016-06-06T00:00:00Z,low,43000,0.89,0.51,4,141,3,0,0,0
sales,US,2016-09-21T00:00:00Z,low,47000,0.11,0.87,6,254,4,0,0,1
sales,US,2008-06-01T00:00:00Z,low,37000,0.13,0.61,5,198,5,0,0,0
management,Canada,2010-08-14T00:00:00Z,high,136000,0.78,0.47,4,129,2,0,0,0
technical,US,2015-04-15T00:00:00Z,low,35000,0.37,0.46,2,155,3,0,0,1
sales,US,2017-01-15T00:00:00Z,low,53000,0.57,0.86,3,164,2,0,0,0
sales,US,2017-11-30T00:00:00Z,low,40000,0.09,0.9,6,295,4,0,0,1
technical,US,2017-09-11T00:00:00Z,medium,74000,0.79,0.87,4,223,5,0,0,0
IT,US,2009-10-13T00:00:00Z,medium,85000,0.84,0.54,3,245,3,0,0,0
technical,Canada,2016-02-09T00:00:00Z,low,59000,0.82,0.97,4,243,3,1,0,0
marketing,Canada,2008-09-10T00:00:00Z,low,56000,0.96,0.64,3,166,2,0,0,0
RandD,US,2016-05-13T00:00:00Z,medium,70000,0.71,0.77,3,193,3,1,0,0
support,US,2016-11-25T00:00:00Z,medium,80000,0.55,0.57,3,266,2,0,0,0
technical,US,2016-08-04T00:00:00Z,medium,72000,0.91,0.59,5,179,3,0,0,0
technical,Canada,2016-02-23T00:00:00Z,high,196000,0.69,0.69,5,160,3,0,0,0
accounting,Canada,2008-02-13T00:00:00Z,high,181000,0.45,0.54,2,142,3,0,0,1
technical,US,2009-12-26T00:00:00Z,low,59000,0.86,0.86,4,227,2,0,0,0
product_mng,US,2015-12-18T00:00:00Z,medium,72000,0.71,0.49,4,273,2,1,0,0
support,US,2008-08-25T00:00:00Z,medium,62000,0.09,0.82,6,249,4,0,0,1
technical,US,2017-03-14T00:00:00Z,medium,68000,0.71,0.79,4,133,3,0,1,0
sales,US,2008-01-17T00:00:00Z,low,46000,0.91,0.61,2,272,2,0,0,0
accounting,Canada,2017-07-09T00:00:00Z,low,35000,0.71,0.66,5,187,2,0,0,0
marketing,US,2010-12-19T00:00:00Z,medium,98000,0.39,0.64,3,152,2,0,0,0
technical,US,2016-08-30T00:00:00Z,low,41000,0.41,0.47,2,145,3,0,0,1
support,US,2017-02-21T00:00:00Z,medium,76000,0.84,0.84,3,150,4,0,0,0
sales,US,2016-11-12T00:00:00Z,low,39000,0.76,0.59,3,191,4,0,0,0
IT,US,2016-01-06T00:00:00Z,medium,65000,0.18,0.99,4,204,6,0,0,0
sales,Europe,2017-01-17T00:00:00Z,low,30000,0.48,0.86,5,198,4,0,0,0
product_mng,US,2013-08-17T00:00:00Z,medium,77000,0.51,0.86,4,260,3,1,0,0
sales,US,2016-09-11T00:00:00Z,medium,78000,0.59,0.66,3,186,3,0,0,0
support,US,2015-08-12T00:00:00Z,low,31000,0.52,0.39,6,246,4,0,0,0
technical,US,2015-03-30T00:00:00Z,medium,80000,0.77,0.75,3,272,3,0,0,0
accounting,US,2015-11-14T00:00:00Z,low,58000,0.67,0.69,3,231,3,0,1,0
management,US,2015-06-08T00:00:00Z,medium,77000,0.73,0.75,3,259,4,0,0,0
IT,US,2015-08-17T00:00:00Z,high,171000,0.71,0.55,4,273,3,1,0,0
accounting,Europe,2016-06-02T00:00:00Z,low,46000,0.7,0.38,4,270,2,0,0,0
hr,Canada,2016-03-21T00:00:00Z,low,38000,0.95,0.73,3,243,3,1,0,0
IT,US,2016-09-16T00:00:00Z,medium,65000,0.3,0.88,5,245,4,0,0,0
marketing,US,2008-11-17T00:00:00Z,low,36000,0.6,0.73,2,180,2,0,0,0
RandD,US,2016-02-03T00:00:00Z,medium,85000,0.45,0.53,2,129,3,0,0,1
product_mng,Canada,2008-08-04T00:00:00Z,medium,81000,0.36,0.56,2,132,3,0,0,1
marketing,US,2014-07-04T00:00:00Z,medium,90000,0.72,0.51,3,160,3,0,0,0
marketing,Europe,2015-09-14T00:00:00Z,medium,65000,0.69,0.63,4,217,3,0,0,0
sales,Europe,2015-08-31T00:00:00Z,low,48000,0.14,0.8,5,226,3,0,0,0
management,US,2016-09-02T00:00:00Z,medium,90000,0.99,0.54,4,239,3,0,0,0
technical,US,2016-10-29T00:00:00Z,medium,90000,0.96,0.55,3,225,4,1,0,0
sales,US,2016-10-13T00:00:00Z,medium,84000,0.9,0.58,3,264,3,0,0,0
marketing,US,2015-10-25T00:00:00Z,low,54000,0.45,0.46,2,159,3,0,0,1
sales,Canada,2015-11-12T00:00:00Z,low,38000,0.65,0.6,5,227,3,0,0,0
support,US,2016-06-29T00:00:00Z,medium,67000,0.99,0.72,3,163,3,0,0,0
accounting,US,2009-08-08T00:00:00Z,medium,67000,0.43,0.47,2,144,3,0,0,1
management,US,2015-05-29T00:00:00Z,low,54000,0.4,0.57,2,160,3,0,0,1
sales,US,2018-01-13T00:00:00Z,medium,86000,0.4,0.46,2,143,3,0,0,1
support,US,2012-04-28T00:00:00Z,low,60000,0.76,0.62,5,230,3,1,0,0
support,US,2015-05-21T00:00:00Z,medium,78000,0.77,0.91,5,236,5,0,0,1
IT,US,2010-12-15T00:00:00Z,medium,89000,0.71,0.96,4,161,3,0,0,0
technical,US,2015-02-03T00:00:00Z,low,48000,0.42,0.6,2,188,3,0,0,0
sales,Europe,2015-08-19T00:00:00Z,low,48000,0.65,0.89,4,204,8,1,0,0
support,Europe,2016-05-31T00:00:00Z,high,172000,0.4,0.47,2,144,3,0,0,1
technical,Europe,2016-05-12T00:00:00Z,medium,68000,0.52,0.85,5,183,3,0,0,0
sales,US,2016-12-15T00:00:00Z,medium,83000,0.9,0.79,4,236,3,1,0,0
management,US,2016-12-20T00:00:00Z,low,60000,0.42,0.86,2,108,5,0,0,0
sales,US,2009-11-25T00:00:00Z,high,189000,0.57,0.68,3,102,6,0,0,0
technical,Canada,2016-05-17T00:00:00Z,low,44000,0.8,0.56,2,204,3,0,0,0
sales,Canada,2016-03-25T00:00:00Z,low,53000,0.58,0.43,6,132,3,0,0,0
sales,Canada,2015-04-11T00:00:00Z,low,47000,0.68,0.78,3,264,3,0,0,0
RandD,Europe,2017-01-02T00:00:00Z,low,51000,0.48,0.58,3,194,3,0,0,0
marketing,US,2016-04-19T00:00:00Z,medium,62000,0.52,0.57,3,270,3,0,0,0
technical,US,2015-12-03T00:00:00Z,low,46000,0.36,0.52,2,157,3,0,0,1
technical,US,2015-05-29T00:00:00Z,low,32000,0.89,0.74,5,220,3,0,0,0
technical,US,2009-08-26T00:00:00Z,high,162000,0.61,0.9,3,224,3,0,0,0
RandD,US,2017-01-29T00:00:00Z,medium,75000,0.1,0.96,6,264,4,0,0,1
sales,US,2015-02-02T00:00:00Z,medium,63000,0.2,0.53,3,149,4,0,1,0
marketing,US,2016-01-21T00:00:00Z,medium,70000,0.49,0.98,3,224,3,0,0,0
sales,Canada,2009-08-18T00:00:00Z,medium,67000,0.1,0.93,6,298,4,0,0,1
accounting,US,2016-10-22T00:00:00Z,low,47000,0.98,0.51,4,223,2,0,0,0
sales,US,2008-01-12T00:00:00Z,low,34000,0.78,0.63,3,202,2,0,0,0
management,US,2009-11-28T00:00:00Z,medium,80000,0.84,0.74,2,168,3,0,0,0
IT,US,2015-04-18T00:00:00Z,medium,71000,0.92,0.91,3,250,4,0,0,0
sales,Europe,2016-11-05T00:00:00Z,medium,74000,0.09,0.94,6,257,4,0,0,1
sales,US,2017-10-09T00:00:00Z,low,59000,0.93,0.76,3,212,3,0,0,0
sales,US,2010-01-12T00:00:00Z,low,59000,0.77,0.93,4,231,5,0,0,1
product_mng,US,2012-07-13T00:00:00Z,medium,95000,0.58,0.62,3,213,2,0,0,0
product_mng,US,2014-09-26T00:00:00Z,low,50000,0.46,0.38,6,140,3,0,0,0
accounting,US,2016-09-19T00:00:00Z,medium,68000,0.55,0.77,3,237,2,0,0,0
support,US,2010-10-06T00:00:00Z,medium,61000,1,0.73,5,189,3,1,0,0
sales,US,2015-10-26T00:00:00Z,medium,76000,0.52,0.92,3,150,2,1,0,0
IT,US,2017-11-21T00:00:00Z,medium,73000,0.43,0.47,2,144,3,0,0,1
sales,US,2016-07-26T00:00:00Z,low,38000,0.96,0.77,3,193,3,0,0,0
sales,APAC,2008-12-10T00:00:00Z,medium,78000,0.72,0.68,3,150,3,1,0,0
sales,US,2018-01-30T00:00:00Z,low,35000,0.36,0.71,3,100,3,0,0,0
sales,Europe,2014-02-06T00:00:00Z,medium,74000,0.89,1,4,226,2,1,0,0
RandD,US,2017-08-12T00:00:00Z,low,39000,0.83,0.54,3,149,3,0,0,0
RandD,Europe,2017-11-30T00:00:00Z,medium,75000,0.8,0.41,3,188,4,0,0,0
technical,US,2013-08-21T00:00:00Z,medium,74000,0.97,0.63,5,199,2,1,0,0
marketing,US,2015-07-02T00:00:00Z,low,31000,0.8,0.77,4,205,2,0,0,0
sales,Europe,2015-10-24T00:00:00Z,low,60000,0.39,0.49,2,146,3,0,0,1
technical,US,2017-03-12T00:00:00Z,medium,85000,0.41,0.48,3,135,3,0,0,0
technical,Canada,2015-02-28T00:00:00Z,low,48000,0.18,0.55,5,217,4,0,0,0
support,Europe,2015-04-18T00:00:00Z,low,32000,0.87,0.71,6,224,6,0,0,0
IT,APAC,2016-06-05T00:00:00Z,low,51000,0.5,0.49,4,236,3,0,0,0
sales,US,2015-06-28T00:00:00Z,medium,65000,0.1,0.55,2,247,4,0,0,1
sales,APAC,2008-01-14T00:00:00Z,low,48000,0.11,0.85,6,299,4,0,0,1
IT,US,2017-12-06T00:00:00Z,medium,82000,0.49,0.61,5,196,3,0,0,0
marketing,US,2014-07-05T00:00:00Z,medium,76000,0.96,0.9,4,164,4,0,0,0
product_mng,US,2008-08-14T00:00:00Z,low,43000,0.5,0.54,2,269,2,1,0,0
support,US,2016-04-15T00:00:00Z,medium,79000,0.54,0.77,4,271,3,0,0,0
IT,Europe,2012-10-01T00:00:00Z,low,60000,0.11,0.89,6,272,4,0,0,1
sales,US,2015-06-05T00:00:00Z,low,33000,0.43,0.47,2,131,3,0,0,1
sales,US,2017-10-10T00:00:00Z,medium,83000,0.44,0.4,3,120,6,0,0,0
sales,Europe,2009-08-18T00:00:00Z,low,37000,0.44,0.36,2,136,3,0,0,0
sales,US,2009-12-03T00:00:00Z,low,46000,0.59,0.64,5,269,3,0,0,0
hr,US,2016-04-16T00:00:00Z,low,30000,0.51,0.41,2,164,4,0,0,0
technical,US,2016-12-02T00:00:00Z,low,36000,0.57,0.81,4,200,3,1,0,0
IT,Europe,2013-06-25T00:00:00Z,low,58000,0.74,0.64,3,229,3,0,0,0
sales,APAC,2016-03-12T00:00:00Z,low,44000,0.37,0.45,2,142,3,0,0,1
support,US,2013-04-06T00:00:00Z,low,49000,0.74,0.97,2,135,4,0,0,0
technical,US,2017-11-29T00:00:00Z,low,47000,0.8,0.94,4,200,4,0,0,0
sales,US,2008-04-05T00:00:00Z,medium,76000,0.58,0.6,3,110,3,1,0,0
sales,US,2016-11-26T00:00:00Z,medium,88000,0.54,0.5,4,160,3,0,0,0
product_mng,US,2008-04-14T00:00:00Z,low,38000,0.46,0.66,6,229,3,0,0,0
IT,US,2016-08-29T00:00:00Z,medium,77000,0.87,0.52,4,140,3,0,0,0
product_mng,US,2015-04-13T00:00:00Z,low,43000,0.93,0.58,5,238,2,0,0,0
hr,US,2016-02-05T00:00:00Z,medium,89000,0.51,0.82,3,206,4,0,0,0
marketing,US,2008-08-20T00:00:00Z,medium,83000,0.77,0.75,4,223,3,0,0,0
marketing,US,2017-09-13T00:00:00Z,medium,72000,0.4,0.46,2,127,3,0,0,1
management,US,2010-04-28T00:00:00Z,medium,89000,0.5,0.7,3,159,3,0,0,0
hr,Canada,2016-07-30T00:00:00Z,medium,90000,0.97,0.38,5,211,7,1,0,0
product_mng,US,2016-02-20T00:00:00Z,medium,85000,0.87,0.53,4,144,3,0,0,0
IT,US,2017-09-13T00:00:00Z,low,41000,0.59,0.51,3,203,2,1,0,0
support,US,2017-11-05T00:00:00Z,medium,67000,0.63,0.72,6,163,4,0,0,0
technical,US,2016-12-10T00:00:00Z,low,57000,0.76,0.79,3,197,5,0,0,0
technical,APAC,2015-06-12T00:00:00Z,low,42000,0.87,0.98,3,174,3,0,0,0
management,US,2016-10-02T00:00:00Z,high,128000,0.65,0.53,5,205,3,1,0,0
marketing,US,2009-06-02T00:00:00Z,medium,68000,0.74,0.63,4,170,2,0,0,0
IT,US,2015-03-21T00:00:00Z,medium,80000,0.45,0.54,2,129,3,0,0,1
product_mng,Canada,2016-12-23T00:00:00Z,medium,101000,0.42,0.52,2,160,3,0,0,1
sales,US,2015-11-20T00:00:00Z,low,32000,0.91,0.7,4,134,2,0,0,0
IT,Canada,2008-04-18T00:00:00Z,medium,77000,1,0.72,5,194,7,1,0,0
sales,US,2016-09-25T00:00:00Z,medium,72000,0.87,0.51,4,233,3,0,0,0
accounting,US,2018-01-06T00:00:00Z,low,46000,0.56,0.91,4,188,2,1,0,0
sales,US,2017-10-12T00:00:00Z,medium,77000,0.73,0.69,4,161,3,0,0,0
support,Europe,2016-08-02T00:00:00Z,medium,81000,0.81,0.52,3,162,3,0,0,0
support,Europe,2017-04-18T00:00:00Z,low,46000,0.93,0.89,3,262,2,0,0,0
accounting,US,2017-12-01T00:00:00Z,medium,84000,0.93,0.51,4,110,3,0,0,0
technical,Europe,2015-05-10T00:00:00Z,medium,71000,0.7,0.54,4,150,4,0,0,0
IT,US,2016-07-15T00:00:00Z,high,186000,0.78,0.84,3,233,3,1,0,0
marketing,US,2017-01-21T00:00:00Z,high,148000,0.8,0.66,4,223,3,0,0,0
RandD,Canada,2011-07-19T00:00:00Z,low,39000,0.44,0.52,2,137,3,0,0,1
RandD,US,2016-09-10T00:00:00Z,medium,64000,0.9,1,5,221,5,0,0,1
sales,US,2015-12-04T00:00:00Z,low,46000,0.68,0.76,3,260,4,0,0,0
accounting,Canada,2017-05-08T00:00:00Z,low,31000,0.81,0.7,6,161,4,0,0,1
IT,US,2016-07-11T00:00:00Z,medium,61000,0.54,0.58,4,206,3,0,0,0
sales,Europe,2017-07-18T00:00:00Z,medium,81000,0.2,0.77,6,213,4,0,0,0
technical,US,2015-06-01T00:00:00Z,medium,76000,0.72,0.65,3,109,5,1,0,0
accounting,US,2010-01-28T00:00:00Z,medium,65000,0.97,0.62,6,118,2,0,0,0
sales,US,2015-09-13T00:00:00Z,medium,74000,0.76,0.55,4,250,3,0,0,0
technical,US,2012-12-08T00:00:00Z,medium,80000,0.73,0.82,4,205,4,0,0,0
support,US,2009-08-18T00:00:00Z,medium,88000,0.85,0.6,4,255,4,0,0,0
sales,Canada,2013-11-09T00:00:00Z,low,33000,0.82,0.92,5,225,5,0,0,1
support,Europe,2014-03-21T00:00:00Z,medium,63000,0.98,0.66,3,199,3,0,0,0
sales,Europe,2010-05-25T00:00:00Z,low,35000,0.82,0.59,3,249,3,0,0,0
product_mng,Canada,2009-10-01T00:00:00Z,low,60000,0.26,0.71,6,189,2,0,0,0
sales,US,2015-07-04T00:00:00Z,low,38000,0.49,0.59,4,137,4,0,0,0
support,Europe,2015-05-15T00:00:00Z,medium,74000,0.83,0.48,3,242,4,0,0,0
marketing,APAC,2016-07-28T00:00:00Z,medium,81000,0.63,0.82,5,268,3,0,0,0
hr,US,2009-01-06T00:00:00Z,medium,80000,0.87,0.9,5,254,6,0,0,1
product_mng,US,2017-09-11T00:00:00Z,low,40000,0.51,0.66,4,182,2,0,0,0
support,Europe,2016-11-20T00:00:00Z,medium,76000,0.19,0.61,3,272,4,0,0,0
sales,US,2012-06-19T00:00:00Z,medium,107000,0.59,0.5,3,199,2,0,0,0
sales,Europe,2017-08-09T00:00:00Z,medium,76000,0.65,0.91,3,207,3,0,0,0
technical,US,2009-08-07T00:00:00Z,medium,82000,0.54,0.64,3,203,4,0,0,0
technical,US,2009-07-20T00:00:00Z,low,60000,0.64,0.57,4,271,2,0,0,0
management,US,2017-07-14T00:00:00Z,high,185000,0.37,0.53,2,143,3,0,0,1
sales,Europe,2009-04-08T00:00:00Z,low,42000,0.37,0.47,2,149,3,0,0,1
product_mng,Europe,2016-11-09T00:00:00Z,medium,79000,1,0.93,5,182,3,1,0,0
support,US,2017-03-23T00:00:00Z,low,40000,0.49,0.8,3,238,4,0,0,0
support,US,2016-09-18T00:00:00Z,low,50000,0.73,0.75,2,243,5,1,0,0
support,US,2017-03-26T00:00:00Z,medium,70000,0.49,0.92,4,229,2,0,0,0
technical,Europe,2017-07-08T00:00:00Z,medium,77000,0.1,0.94,6,285,4,0,0,1
IT,US,2017-11-03T00:00:00Z,low,43000,0.86,0.95,5,275,2,0,0,0
RandD,US,2017-06-29T00:00:00Z,low,59000,0.77,0.68,3,214,8,1,0,0
support,US,2017-02-14T00:00:00Z,low,43000,0.67,0.83,3,260,3,0,0,0
IT,US,2016-03-16T00:00:00Z,medium,72000,0.61,0.75,3,140,3,0,0,0
technical,Europe,2016-04-22T00:00:00Z,medium,87000,0.53,0.91,5,181,3,0,0,0
sales,US,2015-04-01T00:00:00Z,low,54000,0.5,0.62,4,166,3,1,0,0
accounting,Europe,2016-10-30T00:00:00Z,medium,79000,0.44,0.51,2,140,3,0,0,1
sales,US,2012-10-13T00:00:00Z,medium,63000,0.64,0.89,3,175,3,1,0,0
sales,US,2016-10-09T00:00:00Z,medium,79000,0.29,0.39,6,105,6,0,0,0
technical,US,2009-02-05T00:00:00Z,medium,68000,0.9,0.69,4,174,2,0,0,0
technical,Europe,2016-02-27T00:00:00Z,low,42000,0.83,0.7,5,168,3,0,0,0
IT,US,2016-01-09T00:00:00Z,medium,68000,0.76,0.81,3,225,3,0,0,0
hr,US,2016-06-16T00:00:00Z,low,43000,0.66,0.66,4,255,5,0,0,0
marketing,US,2015-10-31T00:00:00Z,low,38000,0.56,0.61,3,250,2,0,0,0
technical,APAC,2016-03-29T00:00:00Z,medium,72000,0.39,0.85,5,179,5,0,0,0
sales,Canada,2015-04-12T00:00:00Z,medium,87000,0.59,0.59,3,194,2,1,0,0
hr,US,2017-07-06T00:00:00Z,low,51000,0.63,0.98,4,160,2,0,0,0
support,US,2015-02-08T00:00:00Z,low,49000,0.98,0.8,2,201,2,0,0,0
sales,US,2011-01-12T00:00:00Z,medium,87000,0.98,0.62,5,260,2,1,0,0
marketing,US,2016-06-25T00:00:00Z,high,256000,0.23,0.74,5,219,4,0,0,0
hr,US,2016-07-06T00:00:00Z,medium,83000,0.39,0.45,2,134,3,0,0,1
management,Europe,2017-10-16T00:00:00Z,medium,72000,0.56,0.85,3,265,10,1,0,0
marketing,US,2015-05-28T00:00:00Z,medium,62000,0.92,0.99,5,255,6,0,0,1
marketing,US,2012-12-22T00:00:00Z,medium,71000,0.52,0.72,3,253,3,0,0,0
sales,US,2009-10-17T00:00:00Z,low,33000,0.57,0.42,4,154,5,0,0,0
support,US,2012-05-05T00:00:00Z,medium,66000,0.37,0.52,2,157,3,0,0,1
sales,US,2008-09-26T00:00:00Z,medium,87000,0.98,0.92,4,175,2,0,0,0
technical,US,2012-02-01T00:00:00Z,medium,83000,0.66,0.49,3,206,2,0,0,0
sales,Canada,2009-11-21T00:00:00Z,high,133000,0.58,0.9,3,151,3,0,0,0
sales,US,2015-02-11T00:00:00Z,medium,74000,0.93,0.54,4,239,2,0,0,0
technical,US,2013-11-02T00:00:00Z,medium,61000,0.71,0.61,2,198,2,1,0,0
technical,US,2015-05-22T00:00:00Z,low,43000,0.5,0.64,2,170,8,0,0,0
support,Europe,2015-07-09T00:00:00Z,medium,96000,0.42,0.46,2,132,3,0,0,1
technical,US,2017-02-02T00:00:00Z,medium,74000,0.37,0.57,2,129,3,0,0,1
RandD,US,2017-01-29T00:00:00Z,medium,86000,0.66,0.7,4,161,3,0,0,0
IT,US,2017-04-26T00:00:00Z,medium,90000,0.99,0.75,3,243,3,0,0,0
IT,Europe,2015-06-11T00:00:00Z,medium,74000,0.49,0.74,4,104,4,0,0,0
IT,US,2017-03-14T00:00:00Z,low,50000,0.91,0.82,2,241,3,0,0,0
support,Europe,2015-07-10T00:00:00Z,medium,62000,0.28,0.92,3,151,3,0,0,0
sales,Europe,2008-01-17T00:00:00Z,low,34000,0.62,0.78,4,261,2,0,0,0
marketing,US,2013-01-02T00:00:00Z,medium,94000,0.28,0.46,4,260,2,0,0,0
support,US,2008-01-29T00:00:00Z,medium,66000,0.45,0.52,2,145,3,0,0,1
management,US,2010-06-08T00:00:00Z,low,47000,0.67,0.97,4,186,3,0,0,0
technical,US,2016-02-03T00:00:00Z,medium,64000,0.79,0.83,5,268,3,0,0,0
product_mng,US,2009-12-06T00:00:00Z,low,60000,0.09,0.95,6,304,4,0,0,1
support,Europe,2017-12-19T00:00:00Z,high,144000,0.58,0.54,3,287,6,0,0,0
accounting,Europe,2013-06-02T00:00:00Z,medium,83000,0.81,0.87,4,254,5,0,0,1
RandD,US,2016-06-16T00:00:00Z,medium,90000,0.63,0.5,4,167,3,1,0,0
technical,US,2015-08-21T00:00:00Z,medium,70000,0.68,0.67,4,135,2,0,0,0
technical,US,2014-07-24T00:00:00Z,medium,74000,0.68,0.81,3,180,2,1,0,0
management,US,2016-03-05T00:00:00Z,low,40000,0.49,0.52,4,251,2,0,0,0
sales,Europe,2013-09-10T00:00:00Z,low,56000,0.66,0.89,3,257,3,0,0,0
sales,US,2016-02-22T00:00:00Z,low,46000,0.19,0.55,5,148,4,0,0,0
technical,Europe,2015-11-23T00:00:00Z,medium,98000,0.4,0.64,3,188,3,0,0,0
sales,US,2011-04-24T00:00:00Z,low,49000,0.63,0.89,4,192,2,0,0,0
support,Europe,2017-09-10T00:00:00Z,medium,80000,0.37,0.41,2,113,3,0,1,0
sales,US,2015-10-10T00:00:00Z,low,47000,0.54,0.58,3,234,3,0,0,0
accounting,US,2015-11-13T00:00:00Z,low,60000,0.64,0.57,4,217,3,0,0,0
RandD,US,2016-07-14T00:00:00Z,medium,84000,0.39,0.46,2,159,3,0,0,1
management,US,2013-12-22T00:00:00Z,low,45000,0.59,0.83,3,156,2,0,0,0
management,US,2009-09-16T00:00:00Z,medium,76000,0.9,0.64,5,226,2,0,0,0
technical,US,2009-07-26T00:00:00Z,medium,64000,0.78,0.59,4,124,3,1,0,0
sales,US,2016-11-06T00:00:00Z,medium,81000,0.73,0.84,4,238,2,0,0,0
sales,US,2015-04-10T00:00:00Z,medium,61000,0.96,0.51,3,237,4,0,0,0
hr,US,2017-05-26T00:00:00Z,medium,68000,0.75,0.61,3,263,3,0,0,0
sales,Canada,2015-04-26T00:00:00Z,low,34000,0.53,0.56,4,249,2,0,0,0
management,US,2017-05-30T00:00:00Z,low,31000,0.95,0.65,5,142,2,1,0,0
technical,US,2015-07-07T00:00:00Z,high,116000,0.18,0.62,3,165,4,0,0,0
support,Canada,2008-10-24T00:00:00Z,low,58000,1,0.56,3,182,3,0,0,0
RandD,Europe,2016-03-25T00:00:00Z,medium,85000,0.57,0.55,2,173,2,0,0,0
sales,Europe,2011-12-05T00:00:00Z,low,44000,0.44,0.49,2,130,3,0,0,1
sales,US,2016-04-23T00:00:00Z,medium,77000,0.21,0.99,6,165,4,1,0,0
management,US,2017-07-19T00:00:00Z,medium,78000,0.76,0.64,4,234,2,0,0,0
sales,Canada,2009-11-20T00:00:00Z,medium,80000,0.43,0.62,2,180,3,0,0,0
support,US,2016-12-15T00:00:00Z,low,48000,0.11,0.83,6,306,4,0,0,1
hr,US,2016-05-21T00:00:00Z,medium,89000,0.99,0.92,3,220,3,0,0,0
IT,US,2016-01-15T00:00:00Z,low,60000,0.99,0.54,4,196,4,1,0,0
accounting,APAC,2016-08-10T00:00:00Z,medium,82000,0.37,0.52,2,159,3,0,0,1
hr,Canada,2017-04-09T00:00:00Z,medium,69000,0.76,0.52,2,148,3,0,0,0
IT,Europe,2015-06-18T00:00:00Z,medium,75000,0.65,0.78,4,238,5,1,0,0
RandD,Europe,2010-09-23T00:00:00Z,high,169000,0.54,0.55,4,252,3,0,0,0
sales,US,2017-09-28T00:00:00Z,medium,70000,0.74,0.7,4,167,3,1,0,0
marketing,US,2016-10-28T00:00:00Z,medium,82000,0.71,0.76,4,148,8,0,0,0
support,US,2011-04-11T00:00:00Z,low,35000,0.62,0.91,3,142,6,1,0,0
RandD,Europe,2016-02-23T00:00:00Z,medium,67000,0.85,0.89,4,150,3,0,0,0
technical,US,2016-04-11T00:00:00Z,low,60000,0.89,0.66,5,224,2,0,0,0
hr,US,2017-01-21T00:00:00Z,medium,81000,0.89,0.64,4,274,2,1,0,0
sales,Europe,2013-11-14T00:00:00Z,medium,69000,0.8,0.54,3,222,4,0,0,0
IT,US,2015-09-13T00:00:00Z,medium,88000,0.37,0.52,2,144,3,0,0,1
sales,Europe,2009-09-17T00:00:00Z,low,60000,0.72,0.73,5,167,3,0,0,0
IT,US,2015-06-13T00:00:00Z,medium,85000,0.93,0.94,4,156,3,1,0,0
support,US,2017-01-15T00:00:00Z,low,49000,0.96,0.51,5,205,2,1,0,0
technical,Canada,2016-06-28T00:00:00Z,medium,69000,0.79,0.59,4,139,3,0,1,1
hr,US,2016-11-30T00:00:00Z,medium,68000,0.65,0.96,2,246,2,1,0,0
marketing,US,2016-09-16T00:00:00Z,low,48000,0.51,0.61,4,251,2,1,0,0
sales,US,2009-10-21T00:00:00Z,low,55000,0.44,0.55,2,136,3,0,0,1
technical,US,2016-07-02T00:00:00Z,medium,88000,0.54,0.6,3,209,2,0,0,0
support,Europe,2009-07-22T00:00:00Z,low,56000,0.77,1,4,232,5,0,0,1
technical,Europe,2015-06-12T00:00:00Z,low,47000,0.6,0.54,4,182,6,0,0,0
technical,US,2016-02-22T00:00:00Z,medium,77000,0.73,0.92,6,189,3,1,0,0
support,Canada,2009-10-15T00:00:00Z,low,39000,0.74,0.87,5,264,3,0,0,0
RandD,US,2017-01-18T00:00:00Z,low,52000,0.54,0.69,3,141,4,0,0,0
IT,Europe,2017-12-03T00:00:00Z,low,56000,0.92,0.67,3,149,3,0,0,0
sales,APAC,2010-10-28T00:00:00Z,low,35000,0.24,0.82,5,179,6,0,0,0
support,Europe,2015-02-25T00:00:00Z,medium,86000,0.86,0.57,3,162,7,0,0,0
sales,US,2017-01-24T00:00:00Z,medium,73000,0.77,0.95,3,192,4,1,0,0
sales,Europe,2009-08-24T00:00:00Z,medium,79000,0.49,0.96,2,206,2,0,0,0
support,US,2016-10-01T00:00:00Z,medium,82000,0.54,0.93,3,124,5,0,0,0
hr,US,2016-03-12T00:00:00Z,low,57000,0.35,0.59,3,281,2,0,0,0
marketing,US,2015-04-19T00:00:00Z,medium,70000,0.77,0.86,5,238,3,0,0,0
sales,US,2011-02-09T00:00:00Z,low,50000,0.11,0.86,6,254,4,0,0,1
sales,US,2015-12-16T00:00:00Z,low,32000,0.82,0.9,4,232,3,0,0,0
marketing,US,2016-04-13T00:00:00Z,low,55000,0.83,0.93,3,247,2,0,0,0
support,US,2017-08-11T00:00:00Z,medium,64000,0.81,0.97,5,243,5,0,0,1
support,Europe,2015-08-26T00:00:00Z,low,59000,0.94,0.73,4,204,2,0,0,0
technical,US,2015-12-22T00:00:00Z,low,46000,0.77,0.89,5,243,5,0,0,1
management,Europe,2014-06-25T00:00:00Z,medium,65000,0.83,0.77,3,171,3,0,0,0
sales,Europe,2008-10-27T00:00:00Z,medium,64000,0.58,0.91,3,154,10,0,0,0
hr,US,2017-07-09T00:00:00Z,medium,80000,0.53,0.56,4,281,6,0,0,1
accounting,US,2011-04-06T00:00:00Z,medium,80000,0.84,0.97,5,256,5,0,0,1
support,US,2008-04-12T00:00:00Z,medium,61000,0.42,0.5,2,141,3,0,0,1
support,US,2017-09-26T00:00:00Z,low,32000,0.87,0.81,5,236,3,0,0,0
technical,Europe,2015-06-18T00:00:00Z,low,55000,0.99,0.99,4,195,2,0,0,0
product_mng,Europe,2014-12-12T00:00:00Z,medium,80000,0.47,0.53,3,111,4,0,0,0
support,Canada,2008-05-03T00:00:00Z,low,59000,0.3,0.76,5,224,2,0,0,0
hr,US,2016-10-26T00:00:00Z,medium,73000,0.86,0.82,2,207,4,1,0,0
marketing,US,2015-04-12T00:00:00Z,medium,74000,0.98,0.79,4,138,3,0,0,0
technical,US,2008-01-27T00:00:00Z,high,122000,0.1,0.94,6,285,4,0,0,1
marketing,Europe,2008-06-01T00:00:00Z,low,46000,0.32,0.48,4,117,10,0,1,0
hr,Europe,2017-07-23T00:00:00Z,medium,77000,0.72,1,5,234,5,0,0,1
technical,US,2012-11-02T00:00:00Z,low,59000,0.66,0.48,4,229,4,0,0,0
hr,US,2015-04-30T00:00:00Z,low,48000,0.39,0.57,2,142,3,0,0,1
sales,US,2017-06-25T00:00:00Z,low,37000,0.49,0.83,3,168,4,1,0,0
RandD,US,2016-12-21T00:00:00Z,medium,70000,0.09,0.81,6,257,4,0,0,1
marketing,US,2017-01-20T00:00:00Z,low,40000,0.64,0.94,3,221,2,0,0,0
support,US,2017-08-29T00:00:00Z,low,40000,0.77,1,4,255,5,0,0,1
support,Canada,2016-08-16T00:00:00Z,low,59000,0.49,0.94,4,175,3,0,0,0
technical,US,2009-02-28T00:00:00Z,low,48000,0.79,0.93,5,268,5,0,0,1
support,US,2017-11-18T00:00:00Z,low,60000,0.45,0.54,2,129,3,0,0,1
support,US,2015-12-04T00:00:00Z,high,165000,0.58,0.89,3,256,2,0,0,0
sales,Canada,2015-12-04T00:00:00Z,low,43000,0.79,0.93,5,268,5,0,0,1
technical,US,2015-08-20T00:00:00Z,medium,81000,0.85,1,3,255,3,0,0,0
sales,Canada,2010-10-04T00:00:00Z,medium,72000,0.91,0.56,4,270,2,0,0,0
sales,US,2013-07-06T00:00:00Z,high,139000,0.73,0.84,4,238,2,0,0,0
marketing,Canada,2017-06-25T00:00:00Z,medium,77000,0.94,0.65,4,213,2,1,0,0
technical,US,2012-04-16T00:00:00Z,medium,65000,0.15,0.74,6,144,7,0,1,0
sales,US,2016-07-18T00:00:00Z,high,169000,0.6,0.59,5,266,2,0,0,0
accounting,US,2009-02-25T00:00:00Z,medium,69000,0.1,0.92,6,285,4,0,0,1
sales,US,2017-11-04T00:00:00Z,low,39000,0.16,0.7,3,178,3,1,0,0
accounting,US,2015-08-06T00:00:00Z,low,60000,0.45,0.54,2,142,3,0,0,1
technical,US,2017-03-10T00:00:00Z,low,38000,0.74,0.99,2,277,3,0,0,1
IT,US,2016-11-12T00:00:00Z,low,56000,0.73,1,4,252,5,0,0,1
sales,US,2015-03-14T00:00:00Z,medium,66000,0.94,0.85,4,236,2,0,0,0
sales,US,2016-03-13T00:00:00Z,medium,90000,0.64,0.78,4,159,4,0,0,0
support,US,2016-10-30T00:00:00Z,low,45000,0.98,0.67,3,190,10,0,0,0
technical,US,2016-04-06T00:00:00Z,medium,66000,0.38,0.55,2,147,3,0,0,1
IT,US,2015-07-21T00:00:00Z,high,167000,0.46,0.79,2,108,3,0,0,0
product_mng,US,2010-09-25T00:00:00Z,low,56000,0.56,0.79,4,197,2,0,0,0
hr,US,2015-07-11T00:00:00Z,medium,86000,0.84,0.51,6,141,2,1,0,0
hr,Europe,2013-12-15T00:00:00Z,medium,67000,0.59,1,4,169,2,0,0,0
support,US,2017-02-15T00:00:00Z,low,59000,0.65,0.7,4,211,2,0,0,0
product_mng,Canada,2008-03-01T00:00:00Z,medium,80000,0.99,0.64,3,183,3,0,0,0
management,Europe,2012-04-14T00:00:00Z,medium,72000,0.49,0.54,3,145,3,0,0,0
sales,Europe,2016-02-24T00:00:00Z,medium,71000,0.43,0.5,2,137,3,0,0,1
technical,APAC,2015-08-09T00:00:00Z,low,47000,0.29,0.37,6,187,10,1,0,0
sales,US,2017-02-09T00:00:00Z,medium,80000,0.64,0.55,3,147,2,0,0,0
sales,Europe,2015-05-16T00:00:00Z,high,118000,0.86,0.9,3,158,2,0,0,0
hr,US,2011-01-07T00:00:00Z,low,60000,0.71,0.8,5,192,3,0,0,0
IT,Europe,2017-04-10T00:00:00Z,low,56000,0.43,0.5,2,148,3,0,0,1
sales,Europe,2017-02-20T00:00:00Z,low,52000,0.67,0.94,2,192,3,0,0,0
product_mng,US,2016-12-24T00:00:00Z,medium,63000,0.92,0.48,4,208,3,0,0,0
sales,US,2016-12-04T00:00:00Z,medium,77000,0.28,0.89,4,97,6,0,0,0
accounting,US,2015-06-24T00:00:00Z,high,125000,0.61,0.89,2,287,4,0,0,0
support,US,2016-01-26T00:00:00Z,low,36000,0.58,0.9,5,224,3,0,0,0
support,Europe,2015-06-12T00:00:00Z,low,58000,0.73,0.94,3,251,6,0,0,0
support,US,2016-12-05T00:00:00Z,low,43000,0.34,0.41,2,141,3,0,0,0
product_mng,US,2016-08-17T00:00:00Z,medium,81000,0.71,0.63,3,204,3,0,0,0
sales,US,2018-01-09T00:00:00Z,medium,71000,0.88,0.99,5,262,6,0,0,1
support,US,2017-07-09T00:00:00Z,medium,71000,0.87,0.95,3,242,5,0,0,0
product_mng,US,2017-02-01T00:00:00Z,low,33000,1,0.76,6,246,3,1,1,0
IT,US,2015-03-23T00:00:00Z,low,35000,0.96,0.48,4,222,3,0,0,0
support,US,2016-01-14T00:00:00Z,medium,65000,0.55,0.6,4,176,3,0,0,0
RandD,US,2017-04-29T00:00:00Z,medium,85000,0.62,0.72,3,188,3,0,0,0
technical,US,2015-07-18T00:00:00Z,medium,71000,0.11,0.83,6,244,4,0,0,1
technical,Europe,2017-04-23T00:00:00Z,low,38000,0.93,0.98,4,189,3,0,0,0
technical,US,2016-01-11T00:00:00Z,low,52000,0.83,0.88,5,239,5,0,0,1
technical,US,2009-10-19T00:00:00Z,high,130000,0.39,0.54,2,127,3,0,0,1
support,Europe,2015-06-09T00:00:00Z,medium,70000,0.77,0.83,5,216,4,0,0,0
management,US,2016-09-28T00:00:00Z,low,44000,0.62,0.7,2,134,3,0,0,0
support,US,2017-03-29T00:00:00Z,low,43000,0.89,0.65,4,184,3,0,0,0
product_mng,US,2015-08-24T00:00:00Z,medium,84000,0.77,0.86,5,282,4,0,0,0
sales,US,2016-03-17T00:00:00Z,medium,61000,0.1,0.85,7,261,4,0,0,1
accounting,Europe,2016-01-18T00:00:00Z,medium,71000,0.81,0.92,5,255,4,1,0,0
support,US,2015-06-05T00:00:00Z,medium,65000,0.69,0.78,5,267,2,1,0,0
sales,US,2015-06-21T00:00:00Z,medium,70000,0.37,0.52,2,158,3,0,0,1
accounting,US,2016-08-25T00:00:00Z,low,49000,0.45,0.53,2,138,3,0,0,1
marketing,US,2008-01-09T00:00:00Z,low,34000,0.75,0.68,3,237,5,0,0,0
accounting,US,2015-03-13T00:00:00Z,low,55000,0.65,0.37,5,128,3,1,0,0
support,US,2017-04-07T00:00:00Z,high,209000,0.09,0.93,6,271,4,0,0,1
support,US,2015-08-30T00:00:00Z,medium,61000,0.45,0.75,3,122,3,0,0,0
IT,US,2014-07-10T00:00:00Z,medium,75000,0.72,1,4,245,5,0,0,1
technical,US,2008-03-20T00:00:00Z,medium,100000,0.38,0.55,2,147,3,0,0,1
sales,Canada,2017-12-02T00:00:00Z,medium,87000,0.52,0.92,3,214,3,0,0,0
support,Canada,2017-04-07T00:00:00Z,medium,71000,0.65,0.99,5,240,5,0,0,0
product_mng,US,2016-12-31T00:00:00Z,low,60000,0.76,0.75,4,193,4,0,0,0
sales,US,2008-03-05T00:00:00Z,medium,62000,0.6,0.86,6,272,4,0,0,0
sales,US,2016-10-05T00:00:00Z,low,37000,0.43,0.46,2,156,3,0,0,1
management,US,2013-02-20T00:00:00Z,medium,76000,0.92,0.6,5,236,3,1,1,0
sales,US,2015-09-28T00:00:00Z,medium,74000,0.8,0.52,3,182,2,0,0,0
RandD,APAC,2017-09-26T00:00:00Z,low,30000,0.99,0.81,5,180,3,1,0,0
support,US,2017-09-03T00:00:00Z,medium,82000,0.88,0.63,3,184,4,0,0,0
support,Canada,2016-08-24T00:00:00Z,medium,81000,0.98,0.62,3,203,2,0,0,0
RandD,US,2009-07-23T00:00:00Z,low,39000,0.59,0.64,5,123,2,0,0,0
IT,Europe,2017-11-12T00:00:00Z,low,52000,0.24,0.65,6,194,3,0,0,0
support,US,2016-02-06T00:00:00Z,medium,61000,0.76,0.57,3,148,3,1,0,0
technical,Europe,2017-08-18T00:00:00Z,medium,64000,0.98,0.49,4,214,3,0,0,0
management,US,2017-01-28T00:00:00Z,medium,106000,0.62,0.72,5,180,3,0,0,0
sales,Europe,2011-07-16T00:00:00Z,low,53000,0.87,0.54,3,268,3,0,0,0
sales,US,2015-12-03T00:00:00Z,medium,71000,0.69,0.48,5,232,4,0,0,0
technical,Canada,2017-02-12T00:00:00Z,high,181000,0.8,0.74,5,181,4,1,0,0
RandD,US,2016-04-17T00:00:00Z,low,46000,0.98,0.65,4,263,2,1,0,0
sales,US,2017-02-02T00:00:00Z,low,36000,0.82,1,4,229,6,0,0,1
technical,US,2009-10-11T00:00:00Z,high,129000,0.93,0.99,4,136,4,0,0,0
marketing,Canada,2017-09-06T00:00:00Z,medium,88000,0.85,0.65,3,187,2,0,0,0
product_mng,US,2017-04-17T00:00:00Z,medium,79000,0.98,0.74,4,202,3,0,0,0
IT,US,2012-06-17T00:00:00Z,low,35000,0.5,0.5,3,237,2,0,0,0
sales,Europe,2016-06-27T00:00:00Z,low,33000,0.78,0.91,5,150,4,0,0,0
support,Europe,2016-11-25T00:00:00Z,medium,74000,0.43,0.46,2,145,3,0,0,1
accounting,US,2015-08-07T00:00:00Z,low,55000,0.52,0.83,4,180,2,0,0,0
support,US,2016-03-04T00:00:00Z,medium,75000,0.44,0.46,2,143,3,0,0,1
support,US,2016-10-18T00:00:00Z,medium,61000,0.24,0.62,5,169,4,0,0,0
technical,Europe,2016-02-01T00:00:00Z,medium,85000,0.11,0.95,6,285,4,0,0,1
sales,US,2015-02-02T00:00:00Z,medium,83000,0.44,0.53,2,127,3,0,0,1
marketing,Canada,2012-06-18T00:00:00Z,low,35000,0.93,0.94,4,217,2,0,0,0
support,Canada,2008-09-22T00:00:00Z,high,139000,0.84,0.65,3,269,2,0,0,0
hr,US,2015-09-04T00:00:00Z,low,42000,0.38,0.86,6,139,6,0,0,1
support,US,2013-09-14T00:00:00Z,low,45000,0.73,0.98,3,227,2,1,0,0
technical,US,2015-11-03T00:00:00Z,low,43000,0.82,0.95,6,191,6,0,0,0
management,US,2008-03-05T00:00:00Z,high,131000,0.98,0.91,4,273,2,0,0,0
management,US,2015-10-13T00:00:00Z,high,115000,0.11,0.83,6,244,4,0,0,1
hr,US,2016-11-11T00:00:00Z,medium,85000,0.38,0.51,2,159,3,0,0,1
RandD,US,2015-09-12T00:00:00Z,low,44000,0.68,0.63,5,185,4,0,0,0
sales,US,2015-05-23T00:00:00Z,medium,74000,0.26,0.98,5,161,5,0,0,0
product_mng,US,2009-07-20T00:00:00Z,low,30000,0.45,0.54,2,152,3,0,0,1
support,US,2009-04-17T00:00:00Z,medium,73000,0.14,0.52,4,108,6,0,0,0
product_mng,US,2016-10-14T00:00:00Z,low,56000,0.53,0.64,2,177,4,0,0,0
RandD,US,2015-05-19T00:00:00Z,medium,65000,0.61,0.87,3,185,2,1,0,0
support,US,2016-01-15T00:00:00Z,medium,75000,0.37,0.53,2,147,3,0,0,1
IT,US,2015-08-16T00:00:00Z,low,49000,0.11,0.85,7,272,4,0,0,1
RandD,US,2016-07-22T00:00:00Z,low,46000,0.48,0.46,2,174,3,0,0,0
IT,US,2015-04-30T00:00:00Z,medium,76000,0.45,0.54,2,142,3,0,0,1
sales,US,2017-12-13T00:00:00Z,low,43000,0.59,0.93,5,172,2,0,0,0
hr,Europe,2015-11-19T00:00:00Z,medium,88000,0.58,0.72,3,113,3,1,0,0
sales,US,2009-05-21T00:00:00Z,medium,69000,0.57,0.52,3,143,2,0,0,0
technical,US,2015-11-23T00:00:00Z,low,30000,0.7,0.83,5,261,4,0,0,0
IT,US,2015-02-14T00:00:00Z,low,50000,0.71,0.57,3,207,3,0,0,0
technical,US,2015-01-20T00:00:00Z,medium,87000,0.19,0.59,7,192,3,0,0,1