-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.csv
We can't make this file beautiful and searchable because it's too large.
9583 lines (9583 loc) · 744 KB
/
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
Entreprise,Metier,Technologies,Diplome,Experience,Ville
Sanofi,Data scientist,Matlab/Python/Pyspark/Scikit-learn/Tensorflow,Master,1,Paris
Massachusetts General Hospital(MGH),Data architecte,Python/Java/Scala/MongoDB,Master,3,Marseille
Delve,Lead data scientist,SPSS/SQL/Teradata/R/Python/Tensorflow/scikit-learn,Master,3,Nantes
Ann & Robert H. Lurie Children’s Hospital of Chicago,Data scientist,C/C++/Java/Python,Master,"1,5",Marseille
Arm,Data scientist,Matlab/Python/C++/numpy/Tensorflow/scikit-learn,Phd,,Bordeaux
S&P Global Ratings,Lead data scientist,VBA/Python/Excel/R,Master,6,Lille
NVIDIA,Data scientist,Excel/VBA/R/Python/PySpark,Bachelor,0,Lille
Cedars-Sinai Medical Center,Data scientist,Java/C/C++/R/Python,Bachelor,4,Toulouse
Fibroblast,Data architecte,Java/Linux/Docker,Bachelor,8,Paris
General Motors,Data engineer,Python/Java/Linux/GNU,Master,5,Toulouse
KPMG,Data engineer,Hadoop/Hive/SQL/MariaDB,Master,"0,5",Bordeaux
R&D Partners,Lead data scientist,Python/R/machine learning/Excel/VBA/C++,Master,3,Rouen
ERPi,Data architecte,Python/Spark/Hive/Hadoop,Phd,3,Bordeaux
Ball Aerospace,Data architecte,Python/AWS/Docker,Master,0,Lyon
Massachusetts General Hospital(MGH),Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Phd,2,Paris
Benchling,Data engineer,Python/Pyspark/Spark,Master,3,Lyon
The Boston Consulting Group,Data architecte,C/C++/Java/Python,Master,"0,5",Lille
Feeding America,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Phd,3,Toulouse
Natera,Data engineer,Python/Pyspark/Spark,Master,3,Lille
Ball Aerospace,Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,No diploma,8,Lyon
TrueMotion,Lead data scientist,R/machine learning/Excel/VBA,Master,"3,5",Nantes
McKinsey & Company,Data engineer,Elasticsearch/Kibana/MongoDB,Master,1,Lille
fractalanalytics,Data architecte,Python/Spark/Hive/Hadoop,Phd,5,Lyon
Symantec,Lead data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Phd,4,Marseille
Novi Labs,Data engineer,Java/Hadoop/HDFS/Yarn,Master,2,Marseille
Ginkgo Bioworks,Data scientist,Python/Pyspark/machine learning/Microsoft Azure,Phd,9,Lyon
Ball Aerospace,Data engineer,Python/Pyspark/Spark,No diploma,8,Lille
Intercontinental Exchange,Data architecte,Elasticsearch/Kibana/Redshift,Phd,4,Marseille
Voya Financial,Lead data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,,Marseille
Neuberger Berman,Data scientist,Excel/Python/Matlab/R/machine learning/anglais,Master,7,Lyon
Central Intelligence Agency,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,"1,5",Lyon
BMO Financial Group,Data architecte,MongoDB/SQL/Docker,Phd,"3,5",Marseille
Emory University,Data engineer,Python/Pyspark/Spark,Bachelor,1,Toulouse
Tempus,Data engineer,Linux/Python/Hadoop/Perl/Ruby,Master,0,Paris
Ball Aerospace,Data scientist,R/Python/Spark/Pycharm/SAS/SQL,Phd,"0,5",Lyon
edX,Data scientist,Python/R/machine learning/Excel/VBA/C++,Master,"0,5",Strasbourg
IHS Markit,Data architecte,Java/AWS/Elasticsearch/Kibana,Bachelor,"1,5",Toulouse
Ameriprise Financial,Data architecte,Hadoop/Hive/Vertica/Tableau,Master,3,Lyon
MIT,Data scientist,SPSS/SQL/Teradata/R/Python/Tensorflow/scikit-learn,Phd,"1,5",Grenoble
Harnham,Data scientist,SQL/R/Python//Big data,Master,5,Paris
Displayr,Data engineer,Spark/Python/Scala,Master,"1,5",Paris
Intercontinental Exchange,Data scientist,Matlab/C/C++/Python/Scikit-learn,Master,"1,5",Paris
"Moderna Therapeutics, Inc",Data scientist,SPSS/SQL/Teradata/R/Python/Tensorflow/scikit-learn,Phd,6,Rouen
Apple,Data scientist,Python/Tensorflow/R/Big data,Master,"0,5",Lyon
Amazon.com,Data scientist,R/machine learning/Excel/VBA,Phd,"0,5",Lyon
R&D Partners,Data scientist,Matlab/Python/C++/numpy/Tensorflow/scikit-learn,Master,0,Bordeaux
Civis Analytics,Data engineer,Elasticsearch/Kibana/MongoDB,Master,2,Toulouse
HiTS,Data engineer,AWS/Python/C/C++/Docker,Master,"3,5",Marseille
Signify,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,No diploma,"0,5",Lyon
Allstate,Data engineer,Python/Java/Linux/GNU,No diploma,6,Bordeaux
Arm,Data architecte,Java/Python/Linux,Master,"2,5",Paris
"Moderna Therapeutics, Inc",Data scientist,Python/Microsoft Azure/R/SQL,Master,1,Lyon
Piedmont Healthcare,Lead data scientist,R/Python/Hadoop/Hive/SQL,Master,7,Bordeaux
Cambridge Consultants,Data scientist,VBA/Python/Excel/R,Master,1,Lyon
Jacobs,Data architecte,Java/Python/Linux,Master,5,Nantes
Natera,Data scientist,Python/R/Spark/Hadoop/SQL,Master,3,Paris
PillPack,Data architecte,Python/Hadoop/Kafka/AWS,Bachelor,8,Paris
Ball Aerospace,Data architecte,Java/AWS/Elasticsearch/Kibana,Master,1,Strasbourg
United Way,Data architecte,C/C++/Java/Python,Master,"2,5",Bordeaux
CDK Global,Data scientist,Matlab/C/C++/Python/Scikit-learn,Phd,"2,5",Nantes
HDR,Data architecte,Python/Java/Scala/MongoDB,Master,"0,5",Bordeaux
Weaver Consultants Group,Data architecte,Python/AWS/Docker,Master,6,Lyon
Hospital for Special Surgery,Data scientist,SQL/R/Python//Big data,Master,3,Paris
Tempus,Data engineer,ORACLE/Java/MySQL/Linux,Master,"1,5",Toulouse
Klein Hersh International,Lead data scientist,SQL/R/Python//Big data,Master,2,Marseille
Brammer Bio,Data scientist,Matlab/C/C++/Python/Scikit-learn,Master,2,Marseille
JUUL Labs,Lead data scientist,Python/Microsoft Azure/R/SQL,No diploma,"2,5",Paris
Joymode,Data engineer,ORACLE/Java/MySQL/Linux,Bachelor,"0,5",Nantes
Total Systems Technologies Corporation,Data architecte,Cassandra/MongoDB/NoSQL/AWS,Master,"1,5",Paris
General Electric,Lead data scientist,SQL/R/Python//Big data,Master,4,Toulouse
Vertex Pharmaceuticals,Data architecte,Cassandra/MongoDB/NoSQL/AWS,Master,"2,5",Lyon
Advanced Sciences and Technologies (AS&T),Data engineer,AWS/Python/C/C++/Docker,Master,"3,5",Nantes
Massachusetts Eye and Ear Infirmary,Data architecte,Hadoop/Hive/Vertica/Tableau,Master,"2,5",Paris
SENS Research Foundation,Data scientist,Excel/VBA/R/Python/PySpark,Master,8,Bordeaux
Ball Aerospace,Data architecte,Hadoop/Hive/Vertica/Tableau,No diploma,"1,5",Marseille
Oneida ESC Group,Data engineer,Python/Pyspark/Spark,Master,"1,5",Marseille
Rescue Agency,Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,Bachelor,"3,5",Marseille
Ball Aerospace,Lead data scientist,Matlab/Python/C++/numpy/Tensorflow/scikit-learn,Phd,"3,5",Toulouse
Lexington Solutions Group,Data scientist,Excel/Python/Matlab/R/machine learning/anglais,Phd,"1,5",Marseille
JD.com,Data scientist,Python/R/Spark/Hadoop/SQL,Phd,2,Lille
"Alexion Pharmaceuticals,Inc.",Data scientist,R/Python/Spark/Pycharm/SAS/SQL,Phd,0,Strasbourg
Civis Analytics,Data scientist,Python/R/Spark/Hadoop/SQL,Master,2,Nice
CUNA Mutual Group,Data architecte,Java/AWS/Elasticsearch/Kibana,No diploma,"3,5",Lyon
Ball Aerospace,Data engineer,Python/Pyspark/Spark,Phd,13,Paris
Gallup,Data architecte,Java/Linux/Docker,No diploma,2,Paris
Ball Aerospace,Lead data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,"2,5",Nantes
Harnham,Data scientist,R/machine learning/Excel/VBA,Master,2,Toulon
The Catholic University of America,Data engineer,Elasticsearch/Kibana/MongoDB,Bachelor,5,Lyon
University of Illinois at Chicago,Data engineer,Java/Hadoop/HDFS/Yarn,Master,1,Lille
Gartner,Data scientist,Python/Tensorflow/R/Big data,Phd,4,Lille
Harvard University,Lead data scientist,SQL/R/Python//Big data,Bachelor,"1,5",Marseille
Centers for Disease Control and Prevention,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Phd,6,Strasbourg
MFS Investment Management,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,"0,5",Marseille
JP Morgan Chase,Data scientist,Python/R/machine learning/Excel/VBA/C++,Master,"1,5",Paris
Ball Aerospace,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,"3,5",Bordeaux
Cognitive Scale,Data scientist,C++/R/Python/Matlab/Matplotlib,Master,"0,5",Lille
R/GA,Data scientist,Python/R/machine learning/Excel/VBA/C++,Master,4,Lyon
Covance,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,Phd,"1,5",Bordeaux
Nift Networks,Data engineer,AWS/Python/C/C++/Docker,Master,2,Bordeaux
DELL,Data scientist,Excel/Python/Matlab/R/machine learning/anglais,Master,"2,5",Paris
Mindshare,Data engineer,MongoDB/MariaDB/Python/Docker,Master,2,Lyon
Scientific Research Corporation,Data architecte,Java/Python/Linux,Master,0,Paris
BMW North America,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,No diploma,"2,5",Paris
Vertex,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,0,Lyon
Capgemini,Data scientist,Matlab/Python/C++/numpy/Tensorflow/scikit-learn,Bachelor,,Bordeaux
U.S. Federal Government,Data scientist,C++/R/Python/Matlab/Matplotlib,Master,"1,5",Lille
"Advanced Micro Devices, Inc.",Data engineer,AWS/Python/C/C++/Docker,Master,0,Montpellier
University of Texas at Austin,Lead data scientist,Excel/VBA/R/Python/PySpark,Master,1,Bordeaux
Natera,Lead data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,2,Lyon
Clear Story Data,Data engineer,Java/Hadoop/HDFS/Yarn,No diploma,"3,5",Marseille
Rubius Therapeutics,Data scientist,Matlab/Python/Pyspark/Scikit-learn/Tensorflow,Bachelor,"1,5",Marseille
Slalom Consulting,Data scientist,R/Python/Spark/Pycharm/SAS/SQL,Bachelor,"2,5",Bordeaux
NOKIA,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,Master,"3,5",Lille
Workbridge Associates,Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,Master,"0,5",Paris
Broad Institute,Data scientist,R/Python/Hadoop/Hive/SQL,Phd,3,Lille
Dyson,Data engineer,Java/Hadoop/HDFS/Yarn,Master,"0,5",Marseille
McKinsey & Company,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,Master,1,Strasbourg
Brigham & Women's Hospital(BWH),Data architecte,Python/Hadoop/Kafka/AWS,No diploma,2,Rouen
Partners HealthCare(PHS),Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Master,3,Bordeaux
Sovrn Holdings,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,Phd,0,Marseille
Bank of America Merchant Services,Data architecte,Docker/GNU/Windows/Linux/Python,Phd,5,Strasbourg
Tempus,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Phd,2,Paris
McKinsey & Company,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,3,Rennes
University of Texas at Austin,Data engineer,Java/Hadoop/HDFS/Yarn,Master,4,Lyon
MassMutual,Lead data scientist,Excel/VBA/R,Master,"1,5",Paris
Exponent,Data scientist,Excel/Python/Matlab/R/machine learning/anglais,Master,"0,5",Lyon
dbHMS,Data architecte,Java/Python/Linux,No diploma,4,Paris
DiMeo Schneider & Associates,Data architecte,Python/Hadoop/Kafka/AWS,Bachelor,"1,5",Marseille
Label Insight,Data architecte,MongoDB/SQL/Docker,Bachelor,"1,5",Toulouse
The Boston Consulting Group,Data engineer,Java/Hadoop/HDFS/Yarn,Master,4,Paris
King.com,Data scientist,Matlab/Python/Pyspark/Scikit-learn/Tensorflow,Phd,2,Bordeaux
A-Line Staffing,Data architecte,Python/Hadoop/Kafka/AWS,Master,"2,5",Strasbourg
DigitasLBi,Lead data scientist,SQL/R/Python//Big data,Master,6,Paris
TUFTS University,Data architecte,MongoDB/SQL/Docker,Bachelor,"3,5",Strasbourg
General Electric,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Phd,"1,5",Lyon
Ball Aerospace,Lead data scientist,SQL/R/Python//Big data,Master,1,Paris
Ball Aerospace,Lead data scientist,Python/Microsoft Azure/R/SQL,Master,6,Marseille
Google,Data scientist,VBA/Python/Excel/R,Phd,3,Paris
University of Texas at Austin,Data engineer,Spark/Python/Scala,Master,"2,5",Rouen
Turner,Data scientist,SPSS/SQL/Teradata/R/Python/Tensorflow/scikit-learn,Master,"1,5",Rennes
Fidelity Investments,Lead data scientist,SQL/R/Python//Big data,Bachelor,8,Lyon
Heart Rhythm Society (HRS),Data engineer,Spark/Python/Scala,Master,"0,5",Bordeaux
Ball Aerospace,Data architecte,Hadoop/Hive/Vertica/Tableau,Master,3,Lille
FiscalNote,Data architecte,Python/Spark/Hive/Hadoop,Master,0,Marseille
Celgene Corporation,Data scientist,C++/R/Python/Matlab/Matplotlib,Phd,4,Toulouse
State Street,Data architecte,Java/Python/Linux,Bachelor,"0,5",Strasbourg
HUB International,Data scientist,Matlab/Python/C++/numpy/Tensorflow/scikit-learn,Master,"3,5",Toulouse
Northeastern University,Lead data scientist,R/Python/Hadoop/Hive/SQL,Master,"3,5",Lyon
Abcam,Data scientist,Python/R/machine learning/Excel/VBA/C++,Master,"1,5",Paris
Leidos,Data engineer,AWS/Python/C/C++/Docker,Master,6,Bordeaux
AllianceBernstein,Data scientist,R/Python/Spark/Pycharm/SAS/SQL,Master,2,Lyon
Boston Medical Center (BMC),Data scientist,Matlab/Python/C++/numpy/Tensorflow/scikit-learn,Phd,"1,5",Toulouse
The Coca-Cola Company,Lead data scientist,SQL/R/Python//Big data,Master,17,Lille
Cervello Inc,Lead data scientist,Python/R/Spark/Hadoop/SQL,Master,7,Paris
The University of Chicago,Data architecte,Python/Hadoop/Kafka/AWS,Bachelor,"3,5",Paris
Alnylam,Data scientist,C++/R/Python/Matlab/Matplotlib,Bachelor,2,Lyon
General Motors,Data architecte,Java/Python/Linux,Master,3,Toulouse
Emory University,Data engineer,AWS/Python/C/C++/Docker,Bachelor,"0,5",Lyon
Rally Health,Data engineer,Elasticsearch/Kibana/MongoDB,Master,12,Paris
Commonwealth of Massachusetts,Data architecte,Hadoop/Perl/GNU/Linux,Master,"1,5",Marseille
Northwestern University,Data scientist,Python/Microsoft Azure/R/SQL,Master,"0,5",Marseille
JLL,Data engineer,C/C++/Java/Python/Linux,Master,,Toulouse
Hatch,Data architecte,Python/Hadoop/Kafka/AWS,Master,10,Rouen
JUUL Labs,Data engineer,MariaDB/MongoDB/NoSQ/SQL/Hadoop/Hive,Master,2,Paris
"Advanced Micro Devices, Inc.",Data engineer,C/C++/Java/Python/Linux,Phd,"1,5",Lyon
Harvard University,Data scientist,SQL/R/Python//Big data,Master,1,Paris
US Foods,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Phd,2,Paris
DataRobot,Data architecte,Cassandra/MongoDB/NoSQL/AWS,Phd,"3,5",Lille
General Assembly,Data architecte,Python/Hadoop/Kafka/AWS,Master,"3,5",Lyon
Etiometry,Data engineer,Python/Spark/GNU/Linux,Phd,2,Lyon
Clockwork Solutions,Data architecte,MongoDB/SQL/Docker,Phd,2,Paris
Broad Institute,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,0,Lyon
Bank of America,Data scientist,VBA/Python/Excel/R,Master,"0,5",Rennes
Ball Aerospace,Data engineer,Java/Hadoop/HDFS/Yarn,Master,0,Strasbourg
KPMG,Data engineer,Hadoop/Hive/SQL/MariaDB,No diploma,3,Lyon
Institute for Defense Analyses,Data engineer,Hadoop/Hive/SQL/MariaDB,Phd,4,Marseille
Ball Aerospace,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,2,Lyon
Legendary Applied Analytics,Data scientist,Matlab/Python/Pyspark/Scikit-learn/Tensorflow,Phd,0,Marseille
"Attorney General, Office of the",Data scientist,C/C++/Java/Python,Master,3,Marseille
Google,Data architecte,Cassandra/MongoDB/NoSQL/AWS,Bachelor,"2,5",Bordeaux
VMware,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Phd,"0,5",Bordeaux
AXIS Insurance,Data engineer,Python/Spark/GNU/Linux,Bachelor,1,Nice
Arm,Lead data scientist,VBA/Python/Excel/R,Phd,7,Nice
UniBit Inc.,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Phd,"0,5",Paris
TechnoGen Inc,Data architecte,Hadoop/Hive/Vertica/Tableau,Bachelor,"3,5",Lyon
"Summit Technologies, Inc.",Data engineer,Java/Linux/GNU/Docker,No diploma,"3,5",Nantes
Apple,Data engineer,Java/Hadoop/HDFS/Yarn,No diploma,5,Marseille
Amazon.com,Data scientist,Python/R/machine learning/Excel/VBA/C++,Master,2,Paris
Ball Aerospace,Lead data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,"2,5",Lyon
Google,Data scientist,C++/R/Python/Matlab/Matplotlib,Phd,"2,5",Marseille
UCB,Data architecte,MongoDB/SQL/Docker,No diploma,4,Strasbourg
Ball Aerospace,Data engineer,Spark/Python/Scala,No diploma,1,Lille
Evidera,Data architecte,Python/Java/Scala/MongoDB,No diploma,8,Rennes
IDEO,Data architecte,Python/Java/Scala/MongoDB,Bachelor,5,Marseille
Omega Therapeutics,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Phd,1,Rennes
Walker Sands Communications,Data scientist,C/C++/Java/Python,Phd,0,Rennes
Radiant Solutions,Data engineer,Elasticsearch/Kibana/MongoDB,Master,"3,5",Marseille
Nanigans,Data architecte,Hadoop/Hive/Vertica/Tableau,Master,5,Marseille
Chewy,Data scientist,R/Python/Hadoop/Hive/SQL,Master,2,Lille
Ball Aerospace,Lead data scientist,Matlab/C/C++/Python/Scikit-learn,Phd,"2,5",Paris
"Lynx, Inc.",Data scientist,C++/R/Python/Matlab/Matplotlib,Bachelor,"0,5",Bordeaux
Wells Fargo,Lead data scientist,R/Python/Hadoop/Hive/SQL,Phd,3,Bordeaux
Harnham,Lead data scientist,SQL/R/Python//Big data,Master,3,Paris
Georgia Tech Research Institute,Data architecte,Python/Hadoop/Kafka/AWS,No diploma,5,Lyon
Lovepop,Lead data scientist,C++/R/Python/Matlab/Matplotlib,Master,"2,5",Toulouse
MONSANTO,Data scientist,Python/R/machine learning/Excel/VBA/C++,Master,"1,5",Marseille
Ball Aerospace,Lead data scientist,R/Python/SQL/Teradata/Big data,Phd,6,Nantes
Affect Mental Health,Data architecte,Hadoop(HDFS)/Elasticsearch,No diploma,6,Marseille
Accenture,Data engineer,Elasticsearch/Kibana/MongoDB,Bachelor,"1,5",Marseille
ADP,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Phd,"2,5",Lyon
Vertex,Data architecte,Python/Hadoop/Kafka/AWS,Bachelor,3,Toulouse
OM Partners,Data architecte,Hadoop(HDFS)/Elasticsearch,Master,"3,5",Paris
Fanning Personnel,Data architecte,Hadoop/Perl/GNU/Linux,Master,5,Toulouse
DELL,Data architecte,Spark/Python,Phd,"3,5",Paris
Amazon.com,Lead data scientist,R/Python/Spark/Pycharm/SAS/SQL,Phd,"3,5",Paris
DataRobot,Data engineer,Java/Linux/GNU/Docker,Bachelor,5,Paris
Ball Aerospace,Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,Phd,1,Lyon
Boston University,Data architecte,Hadoop/Hive/Vertica/Tableau,Master,"0,5",Lyon
Civis Analytics,Data architecte,Cassandra/MongoDB/NoSQL/AWS,No diploma,6,Montpellier
Tendril,Lead data scientist,Matlab/C/C++/Python/Scikit-learn,Bachelor,3,Bordeaux
McKinsey & Company,Data architecte,Hadoop/Hive/Vertica/Tableau,Master,1,Marseille
Vertex Pharmaceuticals,Data scientist,SQL/R/Python//Big data,Master,"1,5",Paris
Google,Data scientist,R/machine learning/Excel/VBA,Phd,6,Toulouse
Dana-Farber Cancer Institute,Lead data scientist,Python/Microsoft Azure/R/SQL,Phd,3,Rouen
Novartis,Data scientist,Matlab/C/C++/Python/Scikit-learn,Phd,1,Paris
"New Iron Group, Inc.",Data scientist,SQL/R/Python//Big data,Phd,"0,5",Paris
Affect Mental Health,Data engineer,Java/Linux/GNU/Docker,No diploma,"0,5",Nantes
Ball Aerospace,Lead data scientist,R/Python/Hadoop/Hive/SQL,Master,4,Lyon
CDK Global,Lead data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,5,Strasbourg
ZestFinance,Data scientist,R/Python/Spark/Pycharm/SAS/SQL,Phd,"0,5",Marseille
Thermo Fisher Scientific,Data scientist,C++/R/Python/Matlab/Matplotlib,Phd,2,Marseille
Google,Data scientist,Excel/VBA/R,Bachelor,1,Marseille
GNS Healthcare,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Bachelor,7,Paris
DELL,Data engineer,Elasticsearch/Kibana/MongoDB,Master,1,Marseille
Ball Aerospace,Data scientist,R/Python/SQL/Teradata/Big data,Master,4,Marseille
Volunteers of America Los Angeles,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Phd,"1,5",Paris
The Home Depot,Lead data scientist,SQL/R/Python//Big data,Phd,"2,5",Toulouse
Defined Clarity,Data scientist,Python/Tensorflow/R/Big data,Master,"3,5",Rennes
National Ecological Observatory Network Inc,Lead data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Phd,7,Marseille
McKinsey & Company,Data architecte,MongoDB/SQL/Docker,Bachelor,5,Strasbourg
Pearson,Data engineer,Linux/Python/Hadoop/Perl/Ruby,Bachelor,"3,5",Rennes
"Skadden, Arps, Slate, Meagher & Flom LLP & Affiliates",Data engineer,Java/Hadoop/HDFS/Yarn,Master,0,Lille
DataRobot,Data architecte,Elasticsearch/Kibana/Redshift,Master,"0,5",Marseille
Pacific Investment Management Company LLC,Lead data scientist,SQL/R/Python//Big data,Master,6,Lyon
"Alexion Pharmaceuticals,Inc.",Data scientist,Matlab/C/C++/Python/Scikit-learn,Master,"0,5",Marseille
Northeastern University,Data scientist,Matlab/Python/C++/numpy/Tensorflow/scikit-learn,Master,3,Lyon
ZestFinance,Data scientist,C/C++/Java/Python,Phd,"3,5",Marseille
Collective Health,Data scientist,R/Python/Spark/Pycharm/SAS/SQL,Bachelor,3,Rennes
Ra Pharmaceuticals,Data scientist,Excel/VBA/R,Phd,2,Paris
Boston Children's Hospital,Data engineer,Hadoop/Hive/SQL/MariaDB,No diploma,2,Toulouse
AHA American Hospital Association,Data architecte,Docker/GNU/Windows/Linux/Python,Bachelor,1,Strasbourg
M.Gemi,Data architecte,Hadoop/Hive/Vertica/Tableau,No diploma,"3,5",Lyon
Goldman Sachs,Data scientist,Python/R/Spark/Hadoop/SQL,Phd,"1,5",Paris
Association of American Medical Colleges,Data architecte,MongoDB/SQL/Docker,Master,2,Montpellier
AbbVie,Data scientist,Matlab/C/C++/Python/Scikit-learn,Phd,2,Marseille
State Street,Data engineer,Spark/Python/Scala,Master,9,Marseille
Ball Aerospace,Data scientist,Python/Tensorflow/R/Big data,Phd,2,Paris
Lightmatter,Data scientist,Excel/VBA/R/Python/PySpark,Phd,1,Nice
Civis Analytics,Data engineer,C/C++/Java/Python/Linux,Bachelor,0,Toulouse
Rue La La,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,Master,"3,5",Paris
Splunk,Data scientist,VBA/Python/Excel/R,Master,6,Lyon
G2S Corporation,Data engineer,Linux/Python/Hadoop/Perl/Ruby,Phd,"3,5",Nantes
Chadwick Martin Bailey,Data architecte,Hadoop/Hive/Vertica/Tableau,Bachelor,1,Paris
Honda Research Institute USA,Data scientist,SQL/R/Python//Big data,Phd,"0,5",Toulon
Vertex Pharmaceuticals,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Master,7,Paris
Teracore,Data architecte,Python/Spark/Hive/Hadoop,Phd,4,Paris
Pearson,Lead data scientist,SQL/R/Python//Big data,Master,"3,5",Lille
NVIDIA,Data engineer,Elasticsearch/Kibana/MongoDB,No diploma,"0,5",Toulouse
MassMutual,Data architecte,Java/Python/Linux,No diploma,8,Marseille
Ball Aerospace,Data engineer,Python/Java/Linux/GNU,Master,6,Bordeaux
Dyson,Data scientist,R/machine learning/Excel/VBA,Phd,2,Paris
Ball Aerospace,Data engineer,Java/Linux/GNU/Docker,Master,4,Lille
Pfizer Inc.,Data scientist,C++/R/Python/Matlab/Matplotlib,Phd,7,Bordeaux
American Council of Life Insurers,Data engineer,Python/Spark/GNU/Linux,Phd,5,Lyon
Ball Aerospace,Data architecte,Python/Hadoop/Kafka/AWS,Bachelor,"1,5",Paris
Allstate,Data engineer,Java/Hadoop/HDFS/Yarn,Phd,6,Lille
Massachusetts General Hospital(MGH),Data engineer,Python/Spark/GNU/Linux,No diploma,6,Lyon
Vertex,Data architecte,Java/Python/Linux,Bachelor,4,Rennes
WinterWyman,Data scientist,C++/R/Python/Matlab/Matplotlib,Bachelor,2,Marseille
Accenture,Lead data scientist,Excel/VBA/R,Master,8,Rouen
Heed Foods,Data scientist,Python/Tensorflow/R/Big data,Master,2,Paris
Hyatt,Data scientist,Excel/Python/Matlab/R/machine learning/anglais,Phd,0,Marseille
The Home Depot,Lead data scientist,SQL/R/Python//Big data,Bachelor,7,Lyon
Northwestern University,Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,Master,4,Marseille
E*TRADE FINANCIAL,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Phd,1,Paris
AIR Worldwide,Lead data scientist,R/Python/Hadoop/Hive/SQL,No diploma,3,Rennes
Unum Therapeutics,Data scientist,R/machine learning/Excel/VBA,Phd,7,Lyon
Applied Memetics LLC,Data engineer,Java/Hadoop/HDFS/Yarn,Master,2,Paris
NOKIA,Data scientist,SQL/R/Python//Big data,Master,2,Paris
Midaxo,Data scientist,SQL/R/Python//Big data,Bachelor,0,Paris
Boston Children's Hospital,Lead data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,2,Lille
Commerce Signals,Data scientist,Matlab/C/C++/Python/Scikit-learn,Bachelor,17,Toulouse
Amazon.com,Data engineer,Elasticsearch/Kibana/MongoDB,No diploma,"3,5",Toulouse
TRANZACT,Data scientist,Matlab/Python/Pyspark/Scikit-learn/Tensorflow,Phd,4,Marseille
Constellation Pharmaceuticals,Data scientist,C++/R/Python/Matlab/Matplotlib,Phd,"1,5",Rennes
Guttmacher Institute,Data scientist,R/machine learning/Excel/VBA,Phd,"1,5",Marseille
Burns & McDonnell,Data scientist,R/machine learning/Excel/VBA,Phd,0,Paris
Emory University,Data architecte,MongoDB/SQL/Docker,Bachelor,5,Paris
IHS Markit,Lead data scientist,R/Python/Spark/Pycharm/SAS/SQL,Master,"3,5",Lyon
Ball Aerospace,Data engineer,Python/Java/Linux/GNU,Master,"2,5",Nantes
Ball Aerospace,Data architecte,Hadoop/Hive/Vertica/Tableau,No diploma,7,Marseille
Pfizer Inc.,Data scientist,Matlab/C/C++/Python/Scikit-learn,Phd,"2,5",Rennes
Atlassian,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,No diploma,"2,5",Toulouse
Tempus,Data architecte,Java/Linux/Docker,Bachelor,4,Rennes
JP Morgan Chase,Data architecte,C/C++/Java/Python,Master,0,Marseille
Harvard University,Data engineer,Spark/Python/Scala,No diploma,"3,5",Paris
Applecart,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,"1,5",Marseille
Recorded Future,Data engineer,MariaDB/MongoDB/NoSQ/SQL/Hadoop/Hive,No diploma,4,Lyon
Vertex,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Phd,"3,5",Rouen
Eagle Medical Services,Data engineer,Python/Java/Linux/GNU,No diploma,1,Strasbourg
Operation HOPE,Data scientist,R/machine learning/Excel/VBA,Master,"1,5",Rouen
Sanofi,Data scientist,Python/Microsoft Azure/R/SQL,Master,"3,5",Marseille
Burson-Marsteller,Data architecte,Python/AWS/Docker,Phd,7,Lyon
IBM,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,Phd,"2,5",Toulouse
NYU Langone Health,Data scientist,C++/R/Python/Matlab/Matplotlib,Master,3,Nice
Sartorius North America,Data engineer,C/C++/Java/Python/Linux,No diploma,6,Lyon
University of Texas at Austin,Lead data scientist,SQL/R/Python//Big data,Master,3,Paris
bluebird bio,Data scientist,SPSS/SQL/Teradata/R/Python/Tensorflow/scikit-learn,Master,1,Lyon
Rauxa,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,1,Marseille
NYU Langone Health,Data scientist,Excel/VBA/R/Python/PySpark,Master,"1,5",Marseille
Ball Aerospace,Lead data scientist,Python/Pyspark/machine learning/Microsoft Azure,Bachelor,8,Lyon
Catapult Sports,Data scientist,VBA/Python/Excel/R,Bachelor,"1,5",Marseille
Wayfair,Data scientist,C/C++/Java/Python,Master,1,Lyon
General Dynamics Information Technology,Data engineer,Python/Java/Linux/GNU,Bachelor,"3,5",Paris
Google,Data engineer,Spark/Python/Scala,No diploma,1,Paris
University of Texas at Austin,Data engineer,Python/Java/Linux/GNU,Bachelor,5,Bordeaux
Averity,Data scientist,Excel/VBA/R,No diploma,4,Marseille
Ball Aerospace,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,No diploma,0,Rennes
ZestFinance,Data engineer,C/C++/Java/Python/Linux,Master,2,Paris
Ball Aerospace,Data scientist,Java/C/C++/R/Python,Phd,"3,5",Grenoble
Smarkets,Data engineer,AWS/Python/C/C++/Docker,Master,"2,5",Nice
Leidos,Data architecte,Hadoop/Perl/GNU/Linux,Phd,"2,5",Toulouse
exp,Data scientist,C++/R/Python/Matlab/Matplotlib,Master,3,Marseille
General Electric,Lead data scientist,R/Python/SQL/NoSQL/MongoDB,Phd,0,Lyon
National Instruments,Data scientist,Python/Tensorflow/R/Big data,Master,6,Lille
Eli Lilly,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,8,Rouen
J.E. Ranta Associates,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Master,1,Paris
NVIDIA,Lead data scientist,Python/R/machine learning/Excel/VBA/C++,Bachelor,3,Paris
Google,Data engineer,Hadoop/Hive/SQL/MariaDB,Master,"1,5",Rouen
Valassis Digital,Data engineer,Python/Java/Linux/GNU,Master,2,Paris
Cabot Corporation,Lead data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Bachelor,"2,5",Marseille
Visa,Data architecte,C/C++/Java/Python,Master,0,Nantes
Newton Colmore Consulting Ltd,Data engineer,Java/Linux/GNU/Docker,Phd,4,Paris
Columbia University,Data scientist,R/Python/SQL/NoSQL/MongoDB,Master,2,Paris
Kantar Millward Brown,Data scientist,C++/R/Python/Matlab/Matplotlib,Master,1,Paris
CGI,Data scientist,Python/Microsoft Azure/R/SQL,Master,3,Paris
Jacobs,,Python/Spark/GNU/Linux,No diploma,"2,5",Paris
Google,Data engineer,Java/Hadoop/HDFS/Yarn,No diploma,0,Paris
UnitedHealth Group,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,No diploma,4,Paris
Zynga,Data engineer,Linux/Python/Hadoop/Perl/Ruby,No diploma,"2,5",Lyon
Lab Pros,Data engineer,Elasticsearch/Kibana/MongoDB,Phd,0,Paris
Danaher,Data scientist,Python/R/Spark/Hadoop/SQL,Master,"3,5",Toulouse
DELL,Data architecte,MongoDB/SQL/Docker,Bachelor,4,Paris
Trading Technologies,Data scientist,C/C++/Java/Python,Phd,"1,5",Marseille
Klein Hersh International,Data engineer,MariaDB/MongoDB/NoSQ/SQL/Hadoop/Hive,No diploma,3,Nantes
Workbridge Associates,Data architecte,Java/Python/Linux,Master,"2,5",Paris
The Intersect Group,Data architecte,Java/Linux/Docker,No diploma,6,Strasbourg
Senseye,Data architecte,Hadoop/Hive/Vertica/Tableau,Phd,"1,5",Lille
Massachusetts General Hospital(MGH),Data engineer,Hadoop/Hive/SQL/MariaDB,Master,"1,5",Paris
Delta Air Lines,Lead data scientist,R/Python/Hadoop/Hive/SQL,Bachelor,"2,5",Lyon
National Debt Relief,Data scientist,Excel/VBA/R,Phd,"1,5",Marseille
"Cornerstone Search Group, LLC",Data architecte,Hadoop/Perl/GNU/Linux,Master,4,Marseille
Dana-Farber Cancer Institute,Data scientist,R/Python/SQL/NoSQL/MongoDB,Phd,1,Toulouse
Celgene Corporation,Data scientist,Excel/VBA/R,Phd,1,Marseille
MFS Investment Management,Data architecte,Python/Spark/Hive/Hadoop,Master,6,Paris
Abbott Laboratories,Lead data scientist,R/Python/Spark/Pycharm/SAS/SQL,Phd,3,Strasbourg
LinQuest Corporation,Data architecte,Java/AWS/Elasticsearch/Kibana,Master,1,Lille
SAP,Data scientist,C++/R/Python/Matlab/Matplotlib,Master,"0,5",Lyon
GreenSky,Data architecte,MongoDB/SQL/Docker,Master,4,Rennes
Ball Aerospace,Data engineer,Python/Spark/GNU/Linux,No diploma,3,Rouen
RCG Holdings LLC,Data scientist,C++/R/Python/Matlab/Matplotlib,Master,"0,5",Lyon
IHS Markit,Data architecte,MongoDB/SQL/Docker,No diploma,"1,5",Lille
Spotify,Lead data scientist,Python/Tensorflow/R/Big data,Master,8,Strasbourg
"eHire, LLC",Lead data scientist,SQL/R/Python//Big data,Master,6,Lyon
Foghorn Systems,Data scientist,Java/C/C++/R/Python,Phd,"0,5",Paris
Cooperative Institute for Research in the Atmosphere,Data scientist,SQL/R/Python//Big data,Bachelor,"2,5",Toulon
American Geophysical Union,Data engineer,AWS/Python/C/C++/Docker,Master,10,Marseille
AIR Worldwide,Lead data scientist,SQL/R/Python//Big data,Master,8,Marseille
CA Technologies,Data architecte,Elasticsearch/Kibana/Redshift,Master,"3,5",Lyon
Eastern Bank,Data scientist,Matlab/Python/C++/numpy/Tensorflow/scikit-learn,Bachelor,"0,5",Paris
Harnham,Data architecte,MongoDB/SQL/Docker,Phd,0,Lille
Robert Walters,Data architecte,Cassandra/MongoDB/NoSQL/AWS,No diploma,"2,5",Lyon
Leidos,Data architecte,Spark/Python,No diploma,"2,5",Lyon
Invicro,Lead data scientist,Matlab/Python/Pyspark/Scikit-learn/Tensorflow,Master,"2,5",Paris
Harnham,Lead data scientist,SQL/R/Python//Big data,Master,8,Montpellier
"Agilent Technologies, Inc.",Lead data scientist,Python/Tensorflow/R/Big data,Master,3,Lyon
Ball Aerospace,Data architecte,Java/Linux/Docker,Bachelor,5,Marseille
Comcast,Data architecte,Python/Java/Scala/MongoDB,Phd,0,Paris
Celgene Corporation,Data scientist,Python/Tensorflow/R/Big data,Bachelor,"1,5",Lille
Takeda Pharmaceutical,Data scientist,Matlab/C/C++/Python/Scikit-learn,Phd,"0,5",Lyon
Grenzebach Glier and Associates,Data engineer,Java/Hadoop/HDFS/Yarn,Master,13,Nantes
KPMG,Data engineer,AWS/Python/C/C++/Docker,Master,1,Paris
CACI,Lead data scientist,SQL/R/Python//Big data,Phd,3,Paris
OM1,Data architecte,Hadoop(HDFS)/Elasticsearch,Master,"0,5",Paris
Cars.com,Data architecte,Python/Hadoop/Kafka/AWS,Phd,7,Marseille
Harnham,Data engineer,Python/Spark/GNU/Linux,Master,4,Lyon
"Advanced Micro Devices, Inc.",Data engineer,MongoDB/MariaDB/Python/Docker,Master,"1,5",Marseille
Apple,Data engineer,MongoDB/MariaDB/Python/Docker,No diploma,2,Lille
Anaconda,Lead data scientist,Python/Microsoft Azure/R/SQL,Master,"0,5",Paris
"The Cadmus Group, Inc.",Data architecte,Spark/Python,Master,1,Bordeaux
Black & Veatch,Data architecte,Hadoop(HDFS)/Elasticsearch,Phd,"1,5",Paris
Workbridge Associates,Data scientist,C++/R/Python/Matlab/Matplotlib,Master,3,Lyon
Wayfair,Data scientist,R/machine learning/Excel/VBA,Master,3,Grenoble
Boston University,Data scientist,SQL/R/Python//Big data,Master,"1,5",Paris
Mintel Group,Data architecte,MongoDB/SQL/Docker,Master,"2,5",Lyon
ZestFinance,Data engineer,Java/Hadoop/HDFS/Yarn,Master,5,Paris
ICF,Lead data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Bachelor,"2,5",Toulouse
The Hexagon Lavish,Data engineer,AWS/Python/C/C++/Docker,No diploma,3,Lyon
DataRobot,Data scientist,R/Python/Spark/Pycharm/SAS/SQL,Phd,"2,5",Rennes
Accenture,Data architecte,Docker/GNU/Windows/Linux/Python,Master,1,Lille
Tigroup,Data engineer,Python/Pyspark/Spark,Bachelor,1,Lyon
Georgia Tech Research Institute,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Master,"1,5",Grenoble
U.S. Federal Government,Data scientist,Matlab/C/C++/Python/Scikit-learn,Master,0,Rennes
Nielsen,Data scientist,R/Python/Spark/Pycharm/SAS/SQL,Phd,1,Marseille
Boston University,Data scientist,SPSS/SQL/Teradata/R/Python/Tensorflow/scikit-learn,Phd,1,Toulouse
KPMG,Data scientist,Python/Microsoft Azure/R/SQL,Master,7,Marseille
Kleinfelder,Data engineer,Python/Java/Linux/GNU,Phd,3,Marseille
Riot Games,Data scientist,SPSS/SQL/Teradata/R/Python/Tensorflow/scikit-learn,Phd,8,Marseille
General Electric,Data engineer,Java/Linux/GNU/Docker,No diploma,"1,5",Toulouse
"Advanced Micro Devices, Inc.",Data architecte,Cassandra/MongoDB/NoSQL/AWS,Master,3,Rouen
KPMG,Data architecte,Hadoop/Hive/Vertica/Tableau,No diploma,"0,5",Marseille
Nielsen,Data scientist,Matlab/C/C++/Python/Scikit-learn,Master,0,Lyon
Global Computing - Mexico,Data engineer,Python/Spark/GNU/Linux,No diploma,8,Lyon
ASRC Federal Holding Company,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Phd,6,Toulouse
Jacobs,Data engineer,Java/Hadoop/HDFS/Yarn,No diploma,11,Toulouse
Olympia Medical Center,Data scientist,SQL/R/Python//Big data,Phd,0,Lille
DataRobot,Data scientist,Excel/Python/Matlab/R/machine learning/anglais,Bachelor,2,Rouen
Harvard University,Data scientist,Python/R/Spark/Hadoop/SQL,Master,"0,5",Paris
The Home Depot,Data architecte,Java/Python/Linux,Master,1,Paris
Boston Children's Hospital,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Phd,2,Bordeaux
Catapult Sports,Data architecte,Java/Linux/Docker,Master,"0,5",Toulouse
Market Track,Data architecte,Python/Hadoop/Kafka/AWS,Master,3,Paris
Ball Aerospace,Data scientist,R/Python/Spark/Pycharm/SAS/SQL,Master,1,Lyon
FiscalNote,Data engineer,Elasticsearch/Kibana/MongoDB,Phd,3,Nantes
"GeoVax, Inc.",Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,Bachelor,5,Marseille
Shirley Ryan Ability Lab,Data engineer,MariaDB/MongoDB/NoSQ/SQL/Hadoop/Hive,No diploma,"1,5",Toulouse
DataRobot,Data engineer,Hadoop/Hive/SQL/MariaDB,No diploma,4,Nice
Commonwealth Sciences,Data architecte,Python/Java/Scala/MongoDB,No diploma,"3,5",Marseille
AmeriCorps,Data scientist,Python/Pyspark/machine learning/Microsoft Azure,Master,"0,5",Rouen
Ball Aerospace,Data architecte,Python/Hadoop/Kafka/AWS,Master,"2,5",Marseille
University of Colorado,Data scientist,VBA/Python/Excel/R,Bachelor,"1,5",Lyon
Amazon.com,Data scientist,R/Python/Spark/Pycharm/SAS/SQL,Master,1,Lyon
Ball Aerospace,Data architecte,Java/Python/Linux,Bachelor,0,Lyon
Biogen,Data scientist,Matlab/Python/Pyspark/Scikit-learn/Tensorflow,Phd,5,Lyon
Civis Analytics,Data engineer,Spark/Python/Scala,Master,1,Paris
Boston Medical Center (BMC),Data scientist,Matlab/C/C++/Python/Scikit-learn,No diploma,1,Montpellier
Xpert Staffing,Lead data scientist,C/C++/Java/Python,Phd,1,Paris
Ipsos North America,Data scientist,C++/R/Python/Matlab/Matplotlib,Master,7,Strasbourg
Georgia Tech Research Institute,Data engineer,Hadoop/Hive/SQL/MariaDB,Master,1,Bordeaux
BitSight,Data scientist,Python/Tensorflow/R/Big data,Master,"1,5",Lyon
Burns & McDonnell,Lead data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,"2,5",Rouen
Emory University,Data architecte,Python/Hadoop/Kafka/AWS,No diploma,,Lyon
Qulab Inc.,Data scientist,Excel/VBA/R,Master,1,Marseille
Labtech Specialty Staffing,Data scientist,Java/C/C++/R/Python,Phd,1,Toulouse
NOKIA,Data architecte,Hadoop/Hive/Vertica/Tableau,Master,"2,5",Nantes
Manulife,Data architecte,Java/Python/Linux,Master,3,Paris
Alnylam,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,11,Rennes
Scientific Research Corporation,Lead data scientist,SQL/R/Python//Big data,Bachelor,5,Lyon
M.Gemi,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,Master,6,Nantes
"Anthem, Inc.",Data architecte,Python/Hadoop/Kafka/AWS,Master,"0,5",Toulon
Taboola,Data engineer,MongoDB/MariaDB/Python/Docker,Master,"2,5",Bordeaux
The Climate Corporation,Data scientist,C++/R/Python/Matlab/Matplotlib,Master,6,Lyon
Ball Aerospace,Data scientist,Matlab/C/C++/Python/Scikit-learn,Bachelor,"1,5",Marseille
Jobspring Partners,Data engineer,Java/Hadoop/HDFS/Yarn,No diploma,0,Paris
,Data architecte,Spark/Python,Master,7,Marseille
Takeda Pharmaceutical,Lead data scientist,SQL/R/Python//Big data,Master,7,Toulon
Boston Medical Center (BMC),Data architecte,Elasticsearch/Kibana/Redshift,Master,3,Toulouse
CRISPR THERAPEUTICS,Data scientist,Excel/VBA/R/Python/PySpark,Phd,"2,5",Lille
Massachusetts General Hospital(MGH),Lead data scientist,Python/Tensorflow/R/Big data,Master,5,Rennes
Ball Aerospace,Data engineer,Spark/Python/Scala,Master,"1,5",Paris
Daley and Associates,Data scientist,Python/R/machine learning/Excel/VBA/C++,Master,"2,5",Nantes
Kraft Heinz Company,Data architecte,Java/Python/Linux,Master,1,Marseille
PillPack,Lead data scientist,R/Python/Hadoop/Hive/SQL,Master,3,Lyon
GQR,Data architecte,Java/AWS/Elasticsearch/Kibana,Master,15,Nantes
Vertex Pharmaceuticals,Data architecte,Java/AWS/Elasticsearch/Kibana,Master,4,Lyon
Facebook,Data scientist,C/C++/Java/Python,Master,"0,5",Lyon
Resource Technology Partners,Data scientist,R/Python/Spark/Pycharm/SAS/SQL,Master,"2,5",Marseille
TUFTS University,Data scientist,Matlab/Python/C++/numpy/Tensorflow/scikit-learn,Master,"1,5",Lyon
Ball Aerospace,Lead data scientist,Matlab/Python/Pyspark/Scikit-learn/Tensorflow,Master,3,Marseille
Georgia Tech Research Institute,Data engineer,Python/Spark/GNU/Linux,Master,1,Nantes
"Anthem, Inc.",Data scientist,R/Python/Hadoop/Hive/SQL,Phd,1,Marseille
Manulife Financial,Lead data scientist,R/Python/Hadoop/Hive/SQL,Master,"3,5",Marseille
Pfizer Inc.,Data engineer,Python/Java/Linux/GNU,Phd,"0,5",Rouen
"Xpect SVC, LLC",Data scientist,SQL/R/Python//Big data,Master,0,Rouen
Thermo Fisher Scientific,Lead data scientist,C++/R/Python/Matlab/Matplotlib,Bachelor,2,Bordeaux
Newell Brands,Data architecte,Elasticsearch/Kibana/Redshift,Master,0,Rouen
Harnham,Data scientist,Java/C/C++/R/Python,Master,1,Bordeaux
University of Colorado Boulder,Data engineer,Spark/Python/Scala,Phd,"1,5",Marseille
BlueLabs Analytics,Data engineer,Python/Pyspark/Spark,Bachelor,1,Marseille
Ball Aerospace,Data architecte,Python/Hadoop/Kafka/AWS,No diploma,"0,5",Paris
PerkinElmer,Data scientist,Python/Pyspark/machine learning/Microsoft Azure,Bachelor,0,Marseille
Burns & McDonnell,Data scientist,Python/Tensorflow/R/Big data,Bachelor,"1,5",Paris
Trunk Club,Data engineer,Java/Linux/GNU/Docker,Master,"1,5",Grenoble
Averity,Data scientist,Python/Microsoft Azure/R/SQL,Master,0,Marseille
Wayfair,Data engineer,MongoDB/MariaDB/Python/Docker,Phd,4,Lyon
Brigham & Women's Hospital(BWH),Data scientist,C++/R/Python/Matlab/Matplotlib,Phd,6,Paris
CDM Smith,Data engineer,C/C++/Java/Python/Linux,Master,"1,5",Lyon
Mersana Therapeutics,Data scientist,Excel/VBA/R,Master,0,Paris
Ball Aerospace,Data architecte,Python/Hadoop/Kafka/AWS,No diploma,6,Paris
Norfolk Southern Corp,Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,Master,4,Paris
Atlantic Media,Data architecte,Elasticsearch/Kibana/Redshift,No diploma,2,Paris
BlueLabs Analytics,Data architecte,C/C++/Java/Python,Master,2,Lille
Evidera,Data engineer,Hadoop/Hive/SQL/MariaDB,Master,"1,5",Marseille
Harnham,Data engineer,ORACLE/Java/MySQL/Linux,Master,1,Marseille
Ball Aerospace,Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,No diploma,"1,5",Rouen
Merrimack Pharmaceuticals,Data scientist,Python/R/Spark/Hadoop/SQL,Bachelor,"3,5",Toulouse
Valassis Digital,Lead data scientist,Python/Pyspark/machine learning/Microsoft Azure,Bachelor,"3,5",Nantes
JD.com,Data scientist,Excel/VBA/R/Python/PySpark,Bachelor,1,Lille
Jacobs,Data architecte,Hadoop/Hive/Vertica/Tableau,Bachelor,2,Nantes
TrueMotion,Data architecte,Python/Hadoop/Kafka/AWS,Master,4,Lyon
"DeepCurrent Technologies, Inc.",Data engineer,Python/Pyspark/Spark,No diploma,0,Strasbourg
JP Morgan Chase,Data scientist,SQL/R/Python//Big data,Master,6,Toulouse
University of Texas at Austin,Data engineer,Elasticsearch/Kibana/MongoDB,Master,9,Paris
DELL,Data scientist,C++/R/Python/Matlab/Matplotlib,Master,"3,5",Toulon
Leidos,Data engineer,MariaDB/MongoDB/NoSQ/SQL/Hadoop/Hive,No diploma,"3,5",Marseille
QuantumBlack,Data architecte,C/C++/Java/Python,Phd,3,Nice
Harvard University,Data scientist,R/machine learning/Excel/VBA,Master,2,Marseille
Assembly,Data scientist,Python/Tensorflow/R/Big data,Phd,1,Toulouse
Broad Institute,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Master,"2,5",Toulouse
Ball Aerospace,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Bachelor,"0,5",Paris
Twitter,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,Master,6,Paris
Ball Aerospace,Data scientist,C/C++/Java/Python,Phd,2,Bordeaux
M.Gemi,Lead data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Phd,"2,5",Marseille
U.S. Federal Government,Data scientist,C++/R/Python/Matlab/Matplotlib,Phd,"3,5",Toulon
Spotify,Lead data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Bachelor,3,Bordeaux
Google,Data scientist,Java/C/C++/R/Python,Phd,0,Bordeaux
Takeda Pharmaceutical,Data scientist,SQL/R/Python//Big data,Bachelor,2,Paris
AeroFarms,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,0,Rennes
Ball Aerospace,Data engineer,Python/Java/Linux/GNU,Phd,0,Lyon
Ascent Services Group,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,4,Lyon
Harnham,Data engineer,Hadoop/Hive/SQL/MariaDB,Master,1,Nice
Ball Aerospace,Data architecte,Python/Hadoop/Kafka/AWS,Bachelor,7,Marseille
Analytic Recruiting,Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,Master,6,Lyon
MFS Investment Management,Data architecte,Java/AWS/Elasticsearch/Kibana,Master,"1,5",Paris
Massachusetts General Hospital(MGH),Data architecte,Python/Hadoop/Kafka/AWS,No diploma,"3,5",Rennes
Uptake,Data scientist,C++/R/Python/Matlab/Matplotlib,Phd,1,Nice
Total Systems Technologies Corporation,Data scientist,VBA/Python/Excel/R,Bachelor,"2,5",Nice
Accenture,Data architecte,Spark/Python,Master,5,Nantes
HubSpot,Data scientist,SQL/R/Python//Big data,Phd,"1,5",Lille
Ball Aerospace,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Bachelor,"3,5",Strasbourg
"Somalogic, Inc.",Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,3,Lyon
"Hitachi Chemical Advanced Therapeutics Solutions, LLC (formerly PCT Cell Therapy Services, LLC)",Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,2,Lyon
Celect,Lead data scientist,R/Python/Hadoop/Hive/SQL,Master,7,Nantes
Harnham,Data scientist,C++/R/Python/Matlab/Matplotlib,Master,"0,5",Strasbourg
TrueMotion,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,Master,0,Paris
"Anthem, Inc.",Data scientist,R/Python/SQL/NoSQL/MongoDB,Phd,2,Lille
Rescue Agency,Data scientist,C++/R/Python/Matlab/Matplotlib,Phd,"1,5",Toulon
Mathematica Policy Research,Data engineer,Python/Java/Linux/GNU,Bachelor,"0,5",Lyon
Howard Hughes Medical Institute,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Master,8,Paris
Walker Medical Solutions,Data engineer,Java/Hadoop/HDFS/Yarn,Master,13,Lyon
Howard Hughes Medical Institute,Data architecte,Java/Python/Linux,Phd,"1,5",Lille
Eaton Vance,Data scientist,Java/C/C++/R/Python,Bachelor,17,Marseille
Asuragen,Data scientist,SQL/R/Python//Big data,Master,1,Paris
Physical Sciences Inc.,Data architecte,MongoDB/SQL/Docker,Phd,1,Paris
Ball Aerospace,Data architecte,Spark/Python,Bachelor,"3,5",Marseille
Resource Technology Partners,Data scientist,Python/Pyspark/machine learning/Microsoft Azure,Master,"2,5",Strasbourg
Ball Aerospace,Data scientist,Java/C/C++/R/Python,Bachelor,2,Lyon
Nanigans,Data engineer,Spark/Python/Scala,No diploma,11,Marseille
TEXAS DEPARTMENT OF PUBLIC SAFETY,Data engineer,Python/Spark/GNU/Linux,Master,1,Paris
Links Global,Data scientist,Excel/VBA/R/Python/PySpark,Phd,2,Lyon
JP Morgan Chase,Data engineer,Python/Pyspark/Spark,Phd,"1,5",Strasbourg
Takeda Pharmaceutical,Lead data scientist,R/machine learning/Excel/VBA,Master,8,Toulouse
Crowe,Data architecte,Hadoop/Hive/Vertica/Tableau,Master,"1,5",Nice
Natera,Lead data scientist,VBA/Python/Excel/R,Master,3,Lyon
MUFG,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,Master,"1,5",Toulon
QuantumBlack,Data engineer,Python/Spark/GNU/Linux,Master,"2,5",Bordeaux
Klein Hersh International,Data architecte,MongoDB/SQL/Docker,Master,"0,5",Paris
The University of Chicago,Data architecte,Java/Python/Linux,Phd,4,Marseille
Ball Aerospace,Data architecte,Spark/Python,No diploma,1,Grenoble
University of Texas at Austin,Data scientist,Python/R/Spark/Hadoop/SQL,Master,"3,5",Paris
CACI,Data engineer,ORACLE/Java/MySQL/Linux,Master,1,Lyon
McKinsey & Company,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Phd,2,Rennes
Charles Schwab,Data architecte,Python/Spark/Hive/Hadoop,No diploma,"3,5",Marseille
Social Fulcrum,Lead data scientist,Excel/VBA/R,Master,"3,5",Marseille
Wunderman,Data architecte,C/C++/Java/Python,Master,0,Nice
Cognitive Scale,Data scientist,R/Python/SQL/NoSQL/MongoDB,Master,"2,5",Marseille
McKinsey & Company,Data scientist,Excel/VBA/R,Master,"1,5",Rennes
"Advanced Micro Devices, Inc.",Data engineer,Python/Java/Linux/GNU,Master,"2,5",Paris
84.51°,Data architecte,Python/Spark/Hive/Hadoop,No diploma,5,Lille
Merck,Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,Master,6,Bordeaux
Ball Aerospace,Data engineer,Spark/Python/Scala,Phd,1,Paris
Amazon.com,Data architecte,Cassandra/MongoDB/NoSQL/AWS,Bachelor,3,Marseille
Ball Aerospace,Data scientist,C++/R/Python/Matlab/Matplotlib,Bachelor,2,Nice
Ball Aerospace,Lead data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Phd,3,Nantes
UCLA,Data engineer,Java/Hadoop/HDFS/Yarn,Bachelor,2,Lyon
Emory University,Data engineer,Python/Pyspark/Spark,No diploma,"3,5",Lyon
Brigham & Women's Hospital(BWH),Data scientist,R/Python/Spark/Pycharm/SAS/SQL,No diploma,3,Lille
KNIME,Data scientist,Excel/Python/Matlab/R/machine learning/anglais,Phd,"3,5",Rouen
Wunderman,Data scientist,VBA/Python/Excel/R,Phd,"1,5",Rouen
Bank of America,Data architecte,Java/Python/Linux,Master,4,Bordeaux
"SearchTech Consulting, Inc",Data scientist,Excel/Python/Matlab/R/machine learning/anglais,Phd,2,Paris
Dana-Farber Cancer Institute,Data architecte,Hadoop(HDFS)/Elasticsearch,Master,"1,5",Lyon
KPMG,Data scientist,R/Python/Hadoop/Hive/SQL,Phd,7,Lyon
DigitasLBi,Data engineer,Elasticsearch/Kibana/MongoDB,Master,0,Lyon
TrueMotion,Lead data scientist,R/machine learning/Excel/VBA,Phd,5,Rennes
Analytic Recruiting,Data scientist,C++/R/Python/Matlab/Matplotlib,Master,"1,5",Paris
Johnson & Johnson Family of Companies,Data architecte,Hadoop/Hive/Vertica/Tableau,Master,1,Lyon
Commonwealth of Massachusetts,Data scientist,R/Python/Spark/Pycharm/SAS/SQL,Bachelor,0,Lyon
William Blair & Company,Data architecte,Elasticsearch/Kibana/Redshift,Master,3,Toulon
Matrix Resources,Data scientist,Python/Tensorflow/R/Big data,Master,,Marseille
GreenSky,Lead data scientist,Java/C/C++/R/Python,Master,"2,5",Strasbourg
Golin,Data scientist,Python/Microsoft Azure/R/SQL,Master,0,Lille
Capgemini,Lead data scientist,R/Python/SQL/NoSQL/MongoDB,Phd,3,Nice
Charles River Analytics,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,3,Lyon
National Ecological Observatory Network Inc,Data architecte,Java/AWS/Elasticsearch/Kibana,Master,"3,5",Paris
Gelber Group,Data scientist,Matlab/Python/Pyspark/Scikit-learn/Tensorflow,Master,4,Lyon
Ball Aerospace,Data scientist,Matlab/Python/C++/numpy/Tensorflow/scikit-learn,Master,"0,5",Strasbourg
WestRock,Data architecte,Python/Hadoop/Kafka/AWS,Master,1,Bordeaux
Catalina Marketing,Data architecte,Java/Linux/Docker,Bachelor,4,Marseille
MIT,Data scientist,C/C++/Java/Python,Phd,"2,5",Toulouse
"Lionshare Lending, LLC",Data architecte,Hadoop/Hive/Vertica/Tableau,No diploma,4,Bordeaux
Brigham & Women's Hospital(BWH),Data engineer,Python/Java/Linux/GNU,Master,1,Paris
Wayfair,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Master,"1,5",Paris
Sage Therapeutics,Data scientist,SPSS/SQL/Teradata/R/Python/Tensorflow/scikit-learn,Master,"1,5",Rouen
Correlation One,Data scientist,Java/C/C++/R/Python,Master,2,Nice
The University of Chicago,Data engineer,Hadoop/Hive/SQL/MariaDB,Bachelor,7,Grenoble
BenevolentAI,Data scientist,Matlab/Python/C++/numpy/Tensorflow/scikit-learn,Master,2,Toulouse
Dana-Farber Cancer Institute,Data engineer,Java/Hadoop/HDFS/Yarn,No diploma,13,Marseille
DELL,Data scientist,Python/Pyspark/machine learning/Microsoft Azure,Phd,"0,5",Lyon
Hatch,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,"0,5",Bordeaux
Ashton Lane Group,Data architecte,MongoDB/SQL/Docker,Master,4,Paris
Nielsen,Data architecte,Python/Spark/Hive/Hadoop,No diploma,"3,5",Paris
Boston Medical Center (BMC),Lead data scientist,R/Python/Hadoop/Hive/SQL,Bachelor,8,Toulon
Atkins,Data architecte,Python/Hadoop/Kafka/AWS,No diploma,1,Rouen
Wipro Limited,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,4,Paris
"The Cadmus Group, Inc.",Data engineer,Python/Java/Linux/GNU,Bachelor,0,Lille
BNY Mellon,Data architecte,Python/Hadoop/Kafka/AWS,Master,"3,5",Strasbourg
DataRobot,Data engineer,Elasticsearch/Kibana/MongoDB,Master,4,Bordeaux
Pfizer,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,2,Lyon
Lightelligence,Data scientist,Python/R/machine learning/Excel/VBA/C++,Phd,9,Paris
KPMG,Data architecte,Hadoop/Hive/Vertica/Tableau,Master,"2,5",Paris
Allstate,Data engineer,MariaDB/MongoDB/NoSQ/SQL/Hadoop/Hive,Master,"1,5",Rouen
"ArcherDX, INC.",Lead data scientist,Python/Microsoft Azure/R/SQL,Master,4,Strasbourg
Amyx Inc,Data scientist,VBA/Python/Excel/R,Phd,"1,5",Paris
National Geographic,Data scientist,Python/R/machine learning/Excel/VBA/C++,Phd,0,Marseille
VHB,Data architecte,Spark/Python,Phd,5,Toulouse
Microsoft,Data scientist,Matlab/Python/C++/numpy/Tensorflow/scikit-learn,Master,"3,5",Toulouse
Grata Data,Data architecte,Java/Python/Linux,No diploma,2,Paris
Amazon.com,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,0,Nice
Nielsen,Data engineer,Hadoop/Hive/SQL/MariaDB,No diploma,4,Toulouse
"Advanced Micro Devices, Inc.",Data scientist,SQL/R/Python//Big data,Phd,"1,5",Montpellier
Alnylam,Data scientist,Python/R/Spark/Hadoop/SQL,No diploma,6,Rennes
Davey Tree,Data engineer,Elasticsearch/Kibana/MongoDB,Master,13,Paris
University of Texas at Austin,Data scientist,Matlab/C/C++/Python/Scikit-learn,Phd,0,Marseille
Partners HealthCare(PHS),Lead data scientist,R/machine learning/Excel/VBA,Master,2,Bordeaux
University of Colorado,Data engineer,Linux/Python/Hadoop/Perl/Ruby,Bachelor,"3,5",Lyon
Bristol-Myers Squibb,Data scientist,R/Python/SQL/NoSQL/MongoDB,Master,0,Grenoble
National Oilwell Varco,Lead data scientist,R/machine learning/Excel/VBA,Master,5,Paris
"Topcon Medical Systems, Inc.",Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Phd,"0,5",Lille
KPMG,Data architecte,Python/Spark/Hive/Hadoop,Master,0,Toulouse
Capital One,Data scientist,VBA/Python/Excel/R,Master,1,Strasbourg
University of Colorado,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,Master,0,Marseille
Lab126,Data scientist,Python/Tensorflow/R/Big data,Master,"1,5",Marseille
Aurora Flight Sciences,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,0,Lyon
Ann & Robert H. Lurie Children’s Hospital of Chicago,Data architecte,Python/Hadoop/Kafka/AWS,Master,0,Strasbourg
QuantumBlack,Data engineer,Python/Pyspark/Spark,Master,"2,5",Paris
Jobspring Partners,Data scientist,SQL/R/Python//Big data,Master,1,Nice
Ginkgo Bioworks,Data engineer,Java/Linux/GNU/Docker,Master,2,Paris
Bay Shore Staffing,Data architecte,Java/Python/Linux,Bachelor,4,Toulouse
Jacobs,Data scientist,VBA/Python/Excel/R,Master,"0,5",Paris
"BigBear, Inc.",Data engineer,MariaDB/MongoDB/NoSQ/SQL/Hadoop/Hive,Master,"0,5",Marseille
Cars.com,Data scientist,Python/R/machine learning/Excel/VBA/C++,Phd,"0,5",Lille
Custoria,Data scientist,Matlab/Python/C++/numpy/Tensorflow/scikit-learn,Phd,0,Lille
KPMG,Data engineer,Hadoop/Hive/SQL/MariaDB,No diploma,6,Toulouse
DigitasLBi,Data architecte,Hadoop(HDFS)/Elasticsearch,Master,3,Marseille
US Foods,Data architecte,Spark/Python,Bachelor,"3,5",Paris
Vertex Pharmaceuticals,Data architecte,Python/Spark/Hive/Hadoop,No diploma,"2,5",Lyon
Ball Aerospace,Data engineer,ORACLE/Java/MySQL/Linux,No diploma,5,Marseille
ITStaff Technical Resources,Data scientist,Matlab/Python/C++/numpy/Tensorflow/scikit-learn,Phd,4,Marseille
Partners HealthCare(PHS),Data engineer,Elasticsearch/Kibana/MongoDB,Master,1,Lyon
SAP,Data engineer,Python/Spark/GNU/Linux,Master,3,Rouen
BNY Mellon,Data engineer,Spark/Python/Scala,Master,"0,5",Marseille
NDT.com,Data scientist,Java/C/C++/R/Python,Master,0,Lyon
ClimaCell,Data architecte,Hadoop/Hive/Vertica/Tableau,Master,"0,5",Paris
Centers for Disease Control and Prevention,Data scientist,Python/Microsoft Azure/R/SQL,Bachelor,"1,5",Lyon
SiriusXM,Data scientist,Python/Tensorflow/R/Big data,Phd,0,Toulouse
Ball Aerospace,Lead data scientist,R/Python/Hadoop/Hive/SQL,Bachelor,"2,5",Lille
US Cellular,Data architecte,Hadoop(HDFS)/Elasticsearch,Bachelor,"1,5",Rennes
KNIME,Data architecte,Java/Python/Linux,Master,1,Nantes
Google,Data scientist,Excel/VBA/R/Python/PySpark,Master,6,Marseille
Norfolk Southern Corp,Data engineer,Python/Spark/GNU/Linux,Phd,"3,5",Lyon
Ginkgo Bioworks,Data scientist,SQL/R/Python//Big data,Master,"0,5",Toulouse
Operation HOPE,Data architecte,Hadoop/Hive/Vertica/Tableau,Bachelor,"3,5",Marseille
Thasos Group,Data scientist,Matlab/C/C++/Python/Scikit-learn,Bachelor,5,Nantes
Maven Wave Partners,Data architecte,MongoDB/SQL/Docker,Bachelor,"3,5",Toulouse
Asuragen,Data architecte,Python/Java/Scala/MongoDB,Bachelor,7,Toulon
Centers for Disease Control and Prevention,Data architecte,Python/Hadoop/Kafka/AWS,No diploma,5,Paris
Gallup,Data architecte,Java/Python/Linux,Bachelor,1,Lyon
Klein Hersh International,Data architecte,MongoDB/SQL/Docker,Master,"3,5",Paris
xentity corporation,Data engineer,Python/Spark/GNU/Linux,Master,5,Marseille
University of Texas at Austin,Data architecte,Elasticsearch/Kibana/Redshift,Master,"3,5",Paris
Invicro,Lead data scientist,Python/R/machine learning/Excel/VBA/C++,Master,1,Marseille
Ball Aerospace,Data engineer,Elasticsearch/Kibana/MongoDB,Master,2,Lyon
Jacobs,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Phd,"0,5",Paris
McKinsey & Company,Data architecte,Python/Spark/Hive/Hadoop,Phd,5,Paris
Ball Aerospace,Data architecte,Spark/Python,Master,12,Lyon
UnitedHealth Group,Data architecte,Elasticsearch/Kibana/Redshift,Bachelor,3,Paris
Lab126,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,1,Paris
Pfizer,Data scientist,VBA/Python/Excel/R,Master,"0,5",Lyon
Harvard University,Lead data scientist,Excel/VBA/R,Phd,6,Paris
Ball Aerospace,Data engineer,Python/Spark/GNU/Linux,Master,"1,5",Paris
"Epiq Systems, Inc.",Lead data scientist,SQL/R/Python//Big data,Bachelor,8,Marseille
ServiceNow,Data engineer,C/C++/Java/Python/Linux,Master,"1,5",Marseille
ZestFinance,Data engineer,Python/Java/Linux/GNU,Bachelor,5,Strasbourg
Payments & Cards Network,Data architecte,Cassandra/MongoDB/NoSQL/AWS,Phd,"3,5",Marseille
ASRC Federal Holding Company,Data architecte,Hadoop/Hive/Vertica/Tableau,Master,"0,5",Lyon
"Phoenix Tree Publishing, Inc.",Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,Master,1,Marseille
Cedars-Sinai,Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,Phd,"1,5",Toulouse
"Akima, LLC",Data architecte,MongoDB/SQL/Docker,Master,"3,5",Rennes
Georgia Tech Research Institute,Data scientist,Python/Pyspark/machine learning/Microsoft Azure,Master,2,Bordeaux
Amazon.com,Lead data scientist,SQL/R/Python//Big data,Bachelor,"2,5",Paris
NOKIA,Data engineer,Python/Java/Linux/GNU,No diploma,"2,5",Nantes
Keypoint Intelligence,Data engineer,Java/Hadoop/HDFS/Yarn,Master,1,Paris
Quantlab,Data engineer,Spark/Python/Scala,No diploma,"0,5",Grenoble
Beclyn Group Recruiting,Data scientist,SQL/R/Python//Big data,Bachelor,"2,5",Lyon
Ball Aerospace,Lead data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,1,Paris
Wolverine Trading,Data architecte,Python/Spark/Hive/Hadoop,Master,"3,5",Nantes
Twitter,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,Master,7,Lyon
Conviva,Data engineer,Hadoop/Hive/SQL/MariaDB,Master,0,Paris
Tempus,Data architecte,Hadoop(HDFS)/Elasticsearch,Master,8,Grenoble
"Pandora Media, Inc.",Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Phd,"1,5",Lyon
DigitasLBi,Lead data scientist,Python/Tensorflow/R/Big data,Phd,"3,5",Bordeaux
Ball Aerospace,Data architecte,Elasticsearch/Kibana/Redshift,Master,"1,5",Toulouse
Broad Institute,Data scientist,Python/Microsoft Azure/R/SQL,Master,"2,5",Marseille
"iHeartMedia, Inc.",Data scientist,R/machine learning/Excel/VBA,Phd,2,Nantes
The Coca-Cola Company,Data engineer,Java/Linux/GNU/Docker,Master,2,Lyon
Vertex Pharmaceuticals,Lead data scientist,R/Python/Hadoop/Hive/SQL,Master,"2,5",Paris
Pfizer Inc.,Data scientist,Java/C/C++/R/Python,Master,3,Paris
"Two Sigma Investments, LLC.",Data scientist,Python/R/machine learning/Excel/VBA/C++,Phd,0,Marseille
AbbVie,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,"0,5",Paris
Harnham,Lead data scientist,Java/C/C++/R/Python,Phd,8,Paris
ViralGains Inc.,Data engineer,C/C++/Java/Python/Linux,Master,1,Marseille
Bank of America,Data engineer,AWS/Python/C/C++/Docker,Phd,6,Lille
Fractal Analytics,Data scientist,Python/R/machine learning/Excel/VBA/C++,Master,"2,5",Paris
Morningstar,Data architecte,MongoDB/SQL/Docker,Master,3,Lyon
Nielsen,Data scientist,Matlab/C/C++/Python/Scikit-learn,Master,5,Bordeaux
Aramco Services Company,Lead data scientist,SPSS/SQL/Teradata/R/Python/Tensorflow/scikit-learn,Bachelor,"2,5",Marseille
Tremor,Data architecte,Hadoop/Perl/GNU/Linux,Bachelor,"3,5",Paris
Wayfair,Data architecte,Java/Linux/Docker,Master,1,Lyon
Benchling,Data scientist,R/Python/Spark/Pycharm/SAS/SQL,Phd,2,Toulouse
Agios Pharmaceuticals,Data scientist,Excel/VBA/R/Python/PySpark,Master,"0,5",Marseille
Ball Aerospace,Lead data scientist,R/Python/Hadoop/Hive/SQL,Master,3,Paris
The Hexagon Lavish,Data architecte,Java/Python/Linux,No diploma,2,Nantes
Google,Data scientist,Matlab/Python/Pyspark/Scikit-learn/Tensorflow,Phd,3,Marseille
Vertex,Data architecte,Java/AWS/Elasticsearch/Kibana,Master,6,Lille
HERE Technologies,Data architecte,Java/AWS/Elasticsearch/Kibana,No diploma,5,Lyon
NVIDIA,Data scientist,C/C++/Java/Python,Phd,3,Paris
Rent the Runway,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Phd,"0,5",Grenoble
Celgene Corporation,Data scientist,SQL/R/Python//Big data,Master,"2,5",Rouen
Harnham,Data scientist,Excel/Python/Matlab/R/machine learning/anglais,Master,2,Paris
"Frank N. Magid Associates, Inc.",Data scientist,SQL/R/Python//Big data,Phd,4,Lyon
MassMutual,Data architecte,Java/Python/Linux,Master,1,Nice
Grant Thornton,Data engineer,Java/Linux/GNU/Docker,Bachelor,3,Paris
T. Rowe Price,Data scientist,SPSS/SQL/Teradata/R/Python/Tensorflow/scikit-learn,Phd,2,Rennes
Goldman Sachs,Data scientist,Matlab/Python/C++/numpy/Tensorflow/scikit-learn,Phd,2,Bordeaux
Jacobs,Data scientist,Excel/VBA/R,Master,0,Paris
Novartis,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,"1,5",Marseille
Catapult Sports,Data engineer,C/C++/Java/Python/Linux,No diploma,1,Lyon
Cognitive Scale,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Phd,9,Lyon
Rubius Therapeutics,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Phd,"2,5",Toulouse
Pragmatics,Data architecte,MongoDB/SQL/Docker,Master,"1,5",Lyon
Rush University Medical Center,Data engineer,Java/Hadoop/HDFS/Yarn,Master,3,Toulon
Burns & McDonnell,Data scientist,C++/R/Python/Matlab/Matplotlib,Master,"1,5",Marseille
Harnham,Data scientist,C/C++/Java/Python,Master,1,Bordeaux
KPMG,Data architecte,Java/AWS/Elasticsearch/Kibana,Master,"2,5",Lille
"Seton Family of Hospitals, TX",Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,Master,4,Paris
7Park Data,Data scientist,Python/Tensorflow/R/Big data,Master,"0,5",Nantes
AkzoNobel,Data architecte,Elasticsearch/Kibana/Redshift,Bachelor,"0,5",Rouen
"Woodlyn Partners, Inc.",Data scientist,SPSS/SQL/Teradata/R/Python/Tensorflow/scikit-learn,Master,2,Marseille
Dicerna,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,7,Rennes
Google,Data engineer,Python/Pyspark/Spark,Phd,1,Paris
"Foundation Medicine, Inc.",Data scientist,Matlab/Python/Pyspark/Scikit-learn/Tensorflow,Phd,0,Lille
Ball Aerospace,Lead data scientist,SQL/R/Python//Big data,Master,"1,5",Paris
Wayfair,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Phd,"3,5",Lyon
The University of Chicago,Data scientist,SQL/R/Python//Big data,Phd,1,Paris
"Foundation Medicine, Inc.",Data scientist,R/Python/Hadoop/Hive/SQL,Master,"0,5",Marseille
AMP Agency,Data architecte,Cassandra/MongoDB/NoSQL/AWS,Phd,7,Bordeaux
bluebird bio,Data scientist,C++/R/Python/Matlab/Matplotlib,Master,2,Paris
"Advanced Micro Devices, Inc.",Data architecte,Spark/Python,No diploma,"1,5",Marseille
Wunderman,Lead data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,"0,5",Paris
Northrop Grumman,Data scientist,R/machine learning/Excel/VBA,Phd,"3,5",Marseille
Vertex Pharmaceuticals,Lead data scientist,R/Python/Hadoop/Hive/SQL,Master,"2,5",Paris
DELL,Data engineer,MariaDB/MongoDB/NoSQ/SQL/Hadoop/Hive,Master,7,Marseille
Manulife Financial,Data engineer,Python/Java/Linux/GNU,Master,"0,5",Strasbourg
"Kleinfelder, Inc.",Data architecte,MongoDB/SQL/Docker,No diploma,2,Lyon
Ball Aerospace,Lead data scientist,C++/R/Python/Matlab/Matplotlib,Master,1,Paris
"Neilson Financial Services, USA",Data scientist,R/Python/SQL/NoSQL/MongoDB,Phd,0,Strasbourg
Invicro,Data engineer,Java/Linux/GNU/Docker,Master,4,Paris
General Electric,Data scientist,SPSS/SQL/Teradata/R/Python/Tensorflow/scikit-learn,Master,"0,5",Paris
Tendril,Data scientist,R/Python/SQL/NoSQL/MongoDB,Master,"0,5",Lille
KPMG,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Phd,"2,5",Paris
Allstate,Data architecte,Java/AWS/Elasticsearch/Kibana,Bachelor,"2,5",Lille
E*TRADE FINANCIAL,Data architecte,Hadoop/Hive/Vertica/Tableau,Bachelor,1,Strasbourg
"Xpect SVC, LLC",Lead data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Phd,4,Paris
KPMG,Data architecte,C/C++/Java/Python,Master,4,Paris
LifeMine,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,2,Nantes
Turner,Data architecte,Hadoop/Hive/Vertica/Tableau,Master,1,Lyon
ICF,Data architecte,MongoDB/SQL/Docker,No diploma,5,Paris
Georgia Tech Research Institute,Lead data scientist,SQL/R/Python//Big data,Phd,7,Paris
The Home Depot,Data scientist,Python/Tensorflow/R/Big data,Phd,"3,5",Toulouse
RecruiterDNA,Data engineer,Hadoop/Hive/SQL/MariaDB,Master,,Toulouse
Amazon Go,Data scientist,Matlab/C/C++/Python/Scikit-learn,Master,0,Marseille
CMTC,Data architecte,Java/AWS/Elasticsearch/Kibana,No diploma,4,Rennes
Accenture,Data architecte,MongoDB/SQL/Docker,Master,1,Marseille
Vertex,Data architecte,Cassandra/MongoDB/NoSQL/AWS,Master,6,Marseille
Thermo Fisher Scientific,Data scientist,Matlab/Python/Pyspark/Scikit-learn/Tensorflow,No diploma,"1,5",Marseille
Newmark Knight Frank,Data engineer,Java/Hadoop/HDFS/Yarn,Phd,1,Toulouse
Bose,Lead data scientist,Excel/Python/Matlab/R/machine learning/anglais,Phd,4,Marseille
Ball Aerospace,Lead data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,7,Bordeaux
TetraScience,Data architecte,Hadoop/Hive/Vertica/Tableau,Master,4,Marseille
Avanade,Data architecte,C/C++/Java/Python,Bachelor,12,Lille
American Institutes for Research,Data engineer,Spark/Python/Scala,Master,4,Paris
Neon Therapeutics,Data scientist,Matlab/Python/Pyspark/Scikit-learn/Tensorflow,Phd,0,Marseille
Symantec,Data scientist,Python/R/Spark/Hadoop/SQL,Phd,4,Lille
Indigo,Data architecte,Java/AWS/Elasticsearch/Kibana,No diploma,"3,5",Marseille
Amazon.com,Data scientist,C++/R/Python/Matlab/Matplotlib,Master,"2,5",Grenoble
Tempus,Data architecte,MongoDB/SQL/Docker,Master,3,Lille
Ball Aerospace,Lead data scientist,R/Python/Hadoop/Hive/SQL,Phd,3,Paris
Washington Metropolitan Area Transit Authority,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,3,Lyon
UCB S.A.,Data scientist,Python/Pyspark/machine learning/Microsoft Azure,Master,0,Bordeaux
Ball Aerospace,Data architecte,Elasticsearch/Kibana/Redshift,Master,2,Marseille
Aptiv,Data engineer,Hadoop/Hive/SQL/MariaDB,No diploma,"2,5",Marseille
Analytic Recruiting,Data engineer,Spark/Python/Scala,Master,1,Lyon
DRW Trading Group,Data scientist,C/C++/Java/Python,Master,6,Paris
Capgemini,Data scientist,R/Python/SQL/NoSQL/MongoDB,Phd,6,Paris
Emory University,Data architecte,Python/Java/Scala/MongoDB,Bachelor,"1,5",Toulouse
BlueLabs Analytics,Data scientist,Excel/VBA/R,Phd,"0,5",Rouen
MGH & BWH Center for Clinical Data Science,Data scientist,Matlab/C/C++/Python/Scikit-learn,Phd,6,Rouen
Vertex,Data scientist,C++/R/Python/Matlab/Matplotlib,Phd,17,Toulouse
Microsoft,Data scientist,R/Python/Hadoop/Hive/SQL,Phd,"0,5",Rennes
GEI Consultants Inc,Data scientist,Matlab/Python/Pyspark/Scikit-learn/Tensorflow,Phd,0,Lyon
Compass Lexecon,Data scientist,SQL/R/Python//Big data,Master,3,Lille
The University of Chicago,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Phd,"1,5",Toulouse
Ball Aerospace,Data engineer,AWS/Python/C/C++/Docker,No diploma,1,Lyon
Mathematica Policy Research,Data scientist,Matlab/Python/C++/numpy/Tensorflow/scikit-learn,Master,"0,5",Lyon
APTIM,Data scientist,Matlab/Python/Pyspark/Scikit-learn/Tensorflow,Phd,2,Paris
Burst Inc.,Data engineer,Hadoop/Hive/SQL/MariaDB,Master,1,Toulouse
Dyson,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,"2,5",Lyon
xentity corporation,Data scientist,C++/R/Python/Matlab/Matplotlib,Bachelor,"0,5",Marseille
GQR Global Markets,Data scientist,R/Python/Spark/Pycharm/SAS/SQL,Phd,2,Lille
Ball Aerospace,Lead data scientist,SQL/R/Python//Big data,Master,2,Bordeaux
General Electric,Data architecte,Java/AWS/Elasticsearch/Kibana,Bachelor,5,Lyon
Accenture,Data architecte,Python/Java/Scala/MongoDB,Bachelor,0,Paris
IBM,Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,Master,1,Lille
Albert Einstein College of Medicine,Data scientist,Python/Tensorflow/R/Big data,Master,"0,5",Nantes
GreenSky,Data engineer,Elasticsearch/Kibana/MongoDB,No diploma,3,Marseille
Piedmont Healthcare,Data scientist,C++/R/Python/Matlab/Matplotlib,Phd,"3,5",Lyon
Connect VIP,Data engineer,Spark/Python/Scala,Bachelor,1,Strasbourg
Optomi,Data engineer,Python/Java/Linux/GNU,Master,1,Lille
Hawkins Diagnostics,Data scientist,C++/R/Python/Matlab/Matplotlib,Master,"1,5",Nantes
Sartorius North America,Data architecte,Python/Hadoop/Kafka/AWS,Master,0,Lyon
Jacobs,Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,No diploma,"2,5",Strasbourg
Venmo,Data scientist,Matlab/C/C++/Python/Scikit-learn,Phd,17,Bordeaux
"Carters, Inc",Lead data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,8,Paris
Liberty Mutual,Data engineer,Java/Linux/GNU/Docker,Master,"0,5",Rouen
Vanda Pharmaceuticals Inc.,Data engineer,Python/Pyspark/Spark,Master,6,Rennes
HiTS,Data architecte,Hadoop(HDFS)/Elasticsearch,Master,0,Paris
Georgia Tech Research Institute,Data scientist,VBA/Python/Excel/R,Phd,"0,5",Marseille
Intellia,Data scientist,C++/R/Python/Matlab/Matplotlib,Phd,1,Rennes
City of Austin,Data scientist,Excel/VBA/R,Master,"0,5",Paris
Brammer Bio,Data scientist,R/Python/Spark/Pycharm/SAS/SQL,Bachelor,1,Lyon
KPMG,Data engineer,Python/Pyspark/Spark,Master,"3,5",Toulouse
Brigham & Women's Hospital(BWH),Data engineer,Java/Hadoop/HDFS/Yarn,Master,1,Rouen
Cedars-Sinai,Data scientist,R/Python/SQL/NoSQL/MongoDB,Phd,17,Paris
"Cornerstone Search Group, LLC",Data engineer,ORACLE/Java/MySQL/Linux,Phd,0,Marseille
Boston University,Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,Master,"3,5",Rennes
"Pandora Media, Inc.",Data architecte,MongoDB/SQL/Docker,Master,0,Toulouse
Eaton Vance,Data architecte,Hadoop/Perl/GNU/Linux,Bachelor,13,Marseille
Marcus & Associates,Data engineer,MariaDB/MongoDB/NoSQ/SQL/Hadoop/Hive,No diploma,4,Rouen
"Sensory, Inc",Data engineer,Python/Pyspark/Spark,Master,1,Toulouse
Ball Aerospace,Lead data scientist,C/C++/Java/Python,Bachelor,8,Paris
Akuna Capital,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,Master,"0,5",Toulouse
Affect Mental Health,Data scientist,SQL/R/Python//Big data,Master,0,Marseille
Social Fulcrum,Data architecte,MongoDB/SQL/Docker,Bachelor,9,Marseille
Keypoint Intelligence,Data scientist,Matlab/Python/C++/numpy/Tensorflow/scikit-learn,Master,"0,5",Marseille
Ball Aerospace,Lead data scientist,SQL/R/Python//Big data,Master,5,Toulouse
KPMG,Data architecte,Python/Java/Scala/MongoDB,No diploma,"3,5",Paris
Conversant Media,Data architecte,Python/Spark/Hive/Hadoop,Bachelor,2,Lyon
AMERICAN CANCER SOCIETY,Data architecte,C/C++/Java/Python,Bachelor,"1,5",Strasbourg
"Advanced Decision Vectors, LLC",Data scientist,Matlab/C/C++/Python/Scikit-learn,Master,1,Lyon
Ball Aerospace,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Phd,"3,5",Nantes
"Alexion Pharmaceuticals,Inc.",Data engineer,Python/Java/Linux/GNU,Master,"3,5",Paris
KPMG,Lead data scientist,Python/Microsoft Azure/R/SQL,Bachelor,1,Strasbourg
Weill Cornell Medicine,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,"2,5",Paris
PSM Partners,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,Master,4,Paris
"Quadratic Systems, Inc.",Data architecte,Hadoop/Hive/Vertica/Tableau,Master,"1,5",Paris
KNIME,Lead data scientist,R/Python/Spark/Pycharm/SAS/SQL,No diploma,4,Marseille
eBay Inc.,Data engineer,Spark/Python/Scala,No diploma,"0,5",Toulouse
The Catholic University of America,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Bachelor,"2,5",Lille
Cardinal Health,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,Master,"0,5",Lyon
Ball Aerospace,Data architecte,Java/AWS/Elasticsearch/Kibana,No diploma,"3,5",Bordeaux
Spotify,Data scientist,R/machine learning/Excel/VBA,Master,7,Lille
Darwin Recruitment,Data architecte,Java/Python/Linux,Master,"1,5",Rouen
Ball Aerospace,Lead data scientist,Python/Microsoft Azure/R/SQL,Phd,"2,5",Strasbourg
HiTS,Lead data scientist,C++/R/Python/Matlab/Matplotlib,Bachelor,"2,5",Marseille
The University of Chicago,Data architecte,Cassandra/MongoDB/NoSQL/AWS,Master,0,Marseille
AMP Agency,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Phd,1,Paris
Aegon,Data scientist,C++/R/Python/Matlab/Matplotlib,Phd,"2,5",Lille
KPMG,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Phd,"1,5",Paris
Hyatt,Data engineer,Python/Pyspark/Spark,Master,2,Marseille
JD.com,Data scientist,R/machine learning/Excel/VBA,Master,2,Paris
HireMinds,Data scientist,Python/R/Spark/Hadoop/SQL,Master,0,Marseille
QuantumBlack,Data architecte,Python/Spark/Hive/Hadoop,Master,4,Paris
JD.com,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Bachelor,0,Paris
McKinsey & Company,Lead data scientist,SQL/R/Python//Big data,Phd,4,Toulouse
"Alexion Pharmaceuticals,Inc.",Data architecte,Hadoop(HDFS)/Elasticsearch,Master,"1,5",Marseille
Morningstar,Data scientist,Python/Tensorflow/R/Big data,Master,"3,5",Paris
InterSystems Corporation,Data scientist,SQL/R/Python//Big data,Master,"3,5",Lyon
KPMG,Data engineer,Elasticsearch/Kibana/MongoDB,Master,4,Lyon
Dana-Farber Cancer Institute,Data scientist,Python/R/machine learning/Excel/VBA/C++,Master,2,Lyon
JLL,Data scientist,SQL/R/Python//Big data,Phd,2,Lyon
Ball Aerospace,Data scientist,C++/R/Python/Matlab/Matplotlib,No diploma,0,Toulouse
Label Insight,Data engineer,Spark/Python/Scala,Phd,"1,5",Montpellier
Social Fulcrum,Data engineer,Java/Hadoop/HDFS/Yarn,Bachelor,"2,5",Marseille
Jacobs,Data architecte,MongoDB/SQL/Docker,No diploma,2,Lyon
PureTech Health,Data scientist,VBA/Python/Excel/R,Phd,1,Rouen
Ball Aerospace,Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,Master,"2,5",Rennes
Lab126,Data scientist,Matlab/C/C++/Python/Scikit-learn,Master,"1,5",Lyon
Brigham & Women's Hospital(BWH),Data architecte,Cassandra/MongoDB/NoSQL/AWS,Bachelor,6,Nice
Georgia Tech Research Institute,Data architecte,Java/Python/Linux,Phd,10,Nantes
Accenture,Data architecte,Hadoop/Hive/Vertica/Tableau,Phd,"1,5",Paris
Massachusetts General Hospital(MGH),Data architecte,C/C++/Java/Python,No diploma,12,Paris
Universities Space Research Association,Data scientist,R/machine learning/Excel/VBA,Master,"1,5",Marseille
Ball Aerospace,Data scientist,Python/Tensorflow/R/Big data,Master,7,Rouen
Dimension Therapeutics,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Phd,"0,5",Bordeaux
University of Texas at Austin,Data scientist,R/Python/SQL/NoSQL/MongoDB,Phd,2,Lyon
ICF,Data engineer,Docker/PostgreSQL/Elasticsearch/Kibana/MongoDB,Master,"1,5",Lille
NDT.com,Data scientist,Python/Tensorflow/R/Big data,Bachelor,5,Lyon
Massachusetts General Hospital(MGH),Data scientist,R/machine learning/Excel/VBA,No diploma,1,Paris
Noblis,Data engineer,Spark/Python/Scala,No diploma,2,Paris
Vertex,Data scientist,C++/R/Python/Matlab/Matplotlib,Bachelor,"0,5",Bordeaux
Nielsen,Data engineer,MariaDB/MongoDB/NoSQ/SQL/Hadoop/Hive,No diploma,15,Lille
Shirley Ryan Ability Lab,Data scientist,Python/Tensorflow/scikit-learn/Deep learning/R,Bachelor,1,Marseille
AFL-CIO,Data architecte,Java/AWS/Elasticsearch/Kibana,Master,"2,5",Lyon
AMP Agency,Lead data scientist,R/Python/SQL/NoSQL/MongoDB,Phd,5,Lyon
Strike Social,Data engineer,Python/Spark/GNU/Linux,Phd,4,Rennes
Amazon.com,Data architecte,C/C++/Java/Python,No diploma,"0,5",Toulouse
The Climate Corporation,Data engineer,Python/Pyspark/Spark,Bachelor,"2,5",Lyon
Grata Data,Data scientist,SPSS/SQL/Teradata/R/Python/Tensorflow/scikit-learn,Master,"0,5",Bordeaux
Synopsys,Data scientist,Python/R/Spark/Hadoop/SQL,Phd,1,Rennes
SKIM,Lead data scientist,R/Python/Hadoop/Hive/SQL,Phd,"1,5",Lyon
Decision Resources Group,Data architecte,Hadoop/Hive/Vertica/Tableau,Master,6,Marseille
R/GA,Data architecte,Python/Hadoop/Kafka/AWS,Master,7,Bordeaux
Centers for Disease Control and Prevention,Data scientist,Java/C/C++/R/Python,Master,"1,5",Lyon
"ICU Medical, Inc.",Lead data scientist,Python/Pyspark/machine learning/Microsoft Azure,Master,"0,5",Paris
"Pandora Media, Inc.",Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,No diploma,4,Marseille
Northwestern University,Data architecte,Spark/Python,Master,1,Bordeaux
Acumen LLC,Data architecte,Python/Spark/Hive/Hadoop,Phd,1,Paris
JLL,Data engineer,ORACLE/Java/MySQL/Linux,Master,8,Lyon
Broad Institute,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Phd,"0,5",Paris
UCB S.A.,Data architecte,MongoDB/SQL/Docker,Bachelor,0,Nantes
NXP Semiconductors,Data engineer,Python/Spark/GNU/Linux,Phd,"0,5",Paris
TVision Insights,Data architecte,Java/Python/Linux,No diploma,"3,5",Rennes
Maven Wave Partners,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,0,Paris
Health & Human Services Comm,Data engineer,Python/Spark/GNU/Linux,Master,4,Lyon
Northeastern University,Data architecte,Python/Hadoop/Kafka/AWS,Master,1,Paris
Cogito Corporation,Data scientist,Excel/VBA/R/Python/PySpark,Master,"1,5",Nantes
Advanced Sciences and Technologies (AS&T),Data architecte,Cassandra/MongoDB/NoSQL/AWS,Bachelor,"3,5",Bordeaux
MGH & BWH Center for Clinical Data Science,Data scientist,Excel/Python/Matlab/R/machine learning/anglais,Master,1,Rouen
Northwestern University,Data scientist,SQL/R/Python//Big data,Master,4,Lyon
Resource Technology Partners,Data engineer,C/C++/Java/Python/Linux,Bachelor,0,Nantes
KPMG,Data engineer,Python/Pyspark/Spark,Master,"0,5",Lyon
AARP,Data engineer,Map-Reduce/HDFS/PIG/HBASE/Python/Cassandra,Master,"1,5",Toulouse
TetraScience,Data scientist,Java/C/C++/R/Python,Phd,"2,5",Bordeaux
OM Partners,Data scientist,Java/C/C++/R/Python,Phd,"1,5",Bordeaux
Apple,Lead data scientist,VBA/Python/Excel/R,Master,3,Toulouse
Boston Medical Center (BMC),Data engineer,Java/Hadoop/HDFS/Yarn,Phd,1,Strasbourg
Ball Aerospace,Data scientist,Python/R/Spark/Hadoop/SQL,Phd,2,Toulouse
605,Data scientist,Excel/VBA/R/Python/PySpark,Master,"3,5",Marseille
Autodesk,Data engineer,C/C++/Java/Python/Linux,Master,1,Marseille
CBRE,Data scientist,Matlab/C/C++/Python/Scikit-learn,Master,"0,5",Paris
National Instruments,Data architecte,Python/Java/Scala/MongoDB,Master,0,Lille
Ball Aerospace,Data scientist,Excel/Python/Matlab/R/machine learning/anglais,Master,2,Marseille
NOKIA,Data scientist,R/Python/Spark/Pycharm/SAS/SQL,Phd,"2,5",Paris
Google,Data scientist,C++/R/Python/Matlab/Matplotlib,Phd,1,Lyon
Oversight Systems,Data scientist,Excel/Python/Matlab/R/machine learning/anglais,Phd,"1,5",Bordeaux
Leidos,Data engineer,Python/Spark/GNU/Linux,Master,"1,5",Lille
Harvard University,Lead data scientist,R/Python/Spark/Pycharm/SAS/SQL,Master,21,Toulouse
NYU Langone Health,Data scientist,VBA/Python/Excel/R,Master,9,Toulouse
Soroco,Lead data scientist,Excel/VBA/R,Phd,3,Toulouse
Karen Clark & Company,Data engineer,MongoDB/MariaDB/Python/Docker,Master,"2,5",Rouen
Weill Cornell Medicine,Data scientist,SAS/Teradata/SQL/R/Python/Machine learning/Anglais,Master,"2,5",Paris
University of Chicago,Data scientist,Excel/VBA/R,Phd,3,Paris
true[x],Data scientist,Python/R/machine learning/Excel/VBA/C++,Master,0,Marseille
Performics,Data engineer,C/C++/Java/Python/Linux,Master,6,Paris
Coupang,Data scientist,Java/C/C++/R/Python,Master,1,Lyon
University of Chicago,Data architecte,Docker/GNU/Windows/Linux/Python,Master,5,Lyon
Bank of America,Data engineer,Hadoop/Hive/SQL/MariaDB,Master,"0,5",Marseille
Øptimus Consulting,Data scientist,SQL/R/Python//Big data,Master,"0,5",Lyon
ENGIE Insight,Data architecte,Elasticsearch/Kibana/Redshift,Master,5,Paris
Rockets of Awesome,Data scientist,SPSS/Excel/SAS/R/machine learning/AI/Scoring,Master,"1,5",Paris
COMPTROLLER OF PUBLIC ACCOUNTS,Data architecte,Python/AWS/Docker,Bachelor,5,Toulon
Ball Aerospace,Data engineer,MariaDB/MongoDB/NoSQ/SQL/Hadoop/Hive,No diploma,5,Lille
Resource Technology Partners,Data engineer,Python/Pyspark/Spark,No diploma,4,Lille
National Instruments,Data engineer,Hadoop/Hive/SQL/MariaDB,Master,"1,5",Paris
Abcam,Data scientist,Python/Pyspark/machine learning/Microsoft Azure,Master,0,Toulouse
Jobspring Partners,Data engineer,MongoDB/MariaDB/Python/Docker,Bachelor,"3,5",Toulouse
The University of Chicago,Data engineer,ORACLE/Java/MySQL/Linux,Bachelor,"1,5",Paris
"Precision Systems, Inc.",Data scientist,SQL/R/Python//Big data,Bachelor,"0,5",Rennes