-
Notifications
You must be signed in to change notification settings - Fork 0
/
questionaire_data_nocomments.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 8 columns, instead of 7 in line 1.
1144 lines (1144 loc) · 99.9 KB
/
questionaire_data_nocomments.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
#1. Do you use software in your research?,3. Have you had formal training in software development?,4. Which of these is more common in your work?,5. Select any of these that you use regularly to write code for your research.,6. What is your field of research?,7. What is your career stage?,8. My institution is located in:,9. Please share any other comments you may have on the topic.
use,training,own,software,field,career,location
Yes,No,Others,Fortran Excel or other spreadsheet,Observational,Adjunct Professor,United States of America
Yes,No,Others,Excel or other spreadsheet,Planetary,almost retired,United States of America
Yes,No,Between,Python C Fortran Shell Scripting sm or supermongo Excel or other spreadsheet,Observational,Astronomer at national observatory,United States of America
Yes,Yes,Between,Python C Javascript Java SQL HTML/CSS C++,Observational,Astronomical software engineer,Germany
Yes,No,Between,IRAF Python C Java,Observational Theory,Director,United Kingdom
Yes,No,Between,IDL Fortran Shell Scripting,Theory,emeritus faculty,United States of America
Yes,No,Between,IDL,Observational,Emeritus Faculty,United States of America
Yes,Little,Between,IRAF Fortran Shell Scripting Excel or other spreadsheet,Observational,Emeritus faculty,United Kingdom
Yes,No,Between,Excel or other spreadsheet LabVIEW,Instrumentation,Engineer,Canada
Yes,Little,Between,Python,Observational Instrumentation Planetary Other,Engineer,United States of America
Yes,No,Own,Python,Observational,Faculty,United States of America
Yes,No,Own,Python Shell Scripting C++,Observational,Faculty,United States of America
Yes,No,Between,Python,Theory,Faculty,United States of America
Yes,No,Between,IDL C Fortran Excel or other spreadsheet,Theory,Faculty,United States of America
Yes,No,Between,IDL IRAF Python,Observational,Faculty,United States of America
Yes,No,Others,Fortran Shell Scripting Excel or other spreadsheet,Observational,Faculty,Australia
Yes,No,Own,IRAF Python Matlab Shell Scripting Excel or other spreadsheet Difmap aips casa,Observational Instrumentation,Faculty,Chile
Yes,No,Between,IDL IRAF Shell Scripting,Observational,Faculty,Chile
Yes,No,Own,Python C Shell Scripting HTML/CSS C++,Observational Instrumentation,Faculty,Germany
Yes,No,Between,C SQL Shell Scripting HTML/CSS sm or supermongo,Observational,Faculty,Germany
Yes,No,Between,IRAF Python Fortran Shell Scripting Figaro,Observational,Faculty,Australia
Yes,No,Between,IRAF Fortran sm or supermongo,Observational Theory,Faculty,United States of America
Yes,No,Own,IDL Fortran Shell Scripting sm or supermongo,Theory phenomenology,Faculty,United States of America
Yes,No,Between,IDL IRAF Python SQL,Observational,Faculty,United States of America
Yes,No,Own,Python C Perl Shell Scripting,Observational,Faculty,France
Yes,No,Own,IDL Python Fortran,Observational Instrumentation,Faculty,United States of America
Yes,No,Others,Fortran Figaro HTML/CSS sm or supermongo Excel or other spreadsheet,Observational,Faculty,United States of America
Yes,No,Own,Fortran sm or supermongo,Theory,Faculty,United States of America
Yes,No,Own,IDL Python Shell Scripting,Observational,Faculty,United States of America
Yes,No,Own,Fortran,Theory,Faculty,United States of America
Yes,No,Own,Fortran sm or supermongo,Theory,Faculty,United States of America
Yes,No,Between,IDL,Theory,Faculty,United States of America
Yes,No,Own,IDL Python C Shell Scripting HTML/CSS,Theory,Faculty,United States of America
Yes,No,Between,IDL IRAF,Observational Instrumentation,Faculty,United States of America
Yes,No,Between,IDL Python C,Theory,Faculty,United States of America
Yes,No,Between,Python C HTML/CSS,Observational Theory,Faculty,United Kingdom
Yes,No,Between,IDL Python C Perl Shell Scripting,Observational Theory,Faculty,United States of America
Yes,No,Between,Python C Fortran Shell Scripting HTML/CSS sm or supermongo C++ cvs git emacs,Observational Theory,Faculty,United States of America
Yes,No,Others,IRAF Fortran HEASARC CIAO XMM-SAS,Observational,Faculty,Italy
Yes,No,Own,IDL Fortran Excel or other spreadsheet,Observational Theory,Faculty,United States of America
Yes,No,Between,IDL IRAF HTML/CSS Labview,Observational Instrumentation,Faculty,United States of America
Yes,No,Between,Python C Shell Scripting sm or supermongo,Theory,Faculty,United States of America
Yes,No,Between,IRAF C Matlab,Instrumentation,Faculty,United States of America
Yes,No,Between,IDL Fortran Perl Shell Scripting,Theory,Faculty,United States of America
Yes,No,Others,IDL IRAF Fortran HTML/CSS Excel or other spreadsheet,Observational,Faculty,United States of America
Yes,No,Own,IDL IRAF Fortran Shell Scripting sm or supermongo,Observational,Faculty,United States of America
Yes,No,Own,Python C Javascript Java HTML/CSS yorick,Observational,Faculty,Switzerland
Yes,No,Others,IRAF Excel or other spreadsheet miriad,Observational,Faculty,Australia
Yes,No,Own,IDL,Observational,Faculty,United States of America
Yes,No,Between,Python SQL C++,Observational Instrumentation,Faculty,United States of America
Yes,No,Between,IDL IRAF,Observational Planetary,Faculty,United States of America
Yes,No,Others,Python Excel or other spreadsheet,Observational,Faculty,United States of America
Yes,No,Own,Fortran,Theory,Faculty,United States of America
Yes,No,Others,,Observational,Faculty,Chile
Yes,No,Between,Python Fortran Perl,Observational,Faculty,Australia
Yes,No,Between,IDL Python Fortran Matlab SQL,Observational,Faculty,United States of America
Yes,No,Others,IRAF Python,Observational,Faculty,United States of America
Yes,No,Others,IRAF Fortran Perl sm or supermongo,Observational,Faculty,United Kingdom
Yes,No,Between,IRAF Python Perl Shell Scripting c++,Observational Theory,Faculty,Netherlands
Yes,No,Own,IDL,Observational,Faculty,United States of America
Yes,No,Own,IDL Shell Scripting,Observational,Faculty,Spain
Yes,No,Own,Python C,Theory,Faculty,Australia
Yes,No,Between,Python Shell Scripting HTML/CSS sm or supermongo Excel or other spreadsheet awk C++,Observational Theory Instrumentation,Faculty,Netherlands
Yes,No,Between,IRAF Python Matlab Shell Scripting sm or supermongo,Observational Theory,Faculty,Canada
Yes,No,Own,IDL Shell Scripting,Observational Planetary,Faculty,United States of America
Yes,No,Own,Java,Theory,Faculty,Mexico
Yes,No,Between,IDL SQL Excel or other spreadsheet,Observational,Faculty,United Kingdom
Yes,No,Own,IDL Fortran HTML/CSS,Theory,Faculty,United States of America
Yes,No,Between,IDL IRAF SQL,Observational,Faculty,United States of America
Yes,No,Between,Perl Gnuplot,Observational Planetary,Faculty,Chile
Yes,No,Own,IDL Excel or other spreadsheet,Observational Theory,Faculty,United Kingdom
Yes,No,Between,IDL Python Fortran R,Theory,Faculty,Germany
Yes,No,Between,IDL Python SQL Shell Scripting Excel or other spreadsheet,Observational,Faculty,Australia
Yes,No,Between,Fortran Shell Scripting Figaro sm or supermongo,Observational Theory,Faculty,United Kingdom
Yes,No,Own,IDL Python,Observational,Faculty,United States of America
Yes,No,Own,IRAF Python Fortran Perl sm or supermongo,Theory,Faculty,Canada
Yes,No,Others,Shell Scripting HTML/CSS sm-like interface to pgplot. Basically wrote own language ages ago and still cling to it.,Observational Theory,Faculty,United States of America
Yes,No,Own,IDL,Observational,Faculty,United States of America
Yes,No,Others,IDL Python,Observational,Faculty,
Yes,No,Between,IRAF Python,Observational Instrumentation,Faculty,United States of America
Yes,No,Between,IDL Python Matlab HTML/CSS Excel or other spreadsheet,Observational,Faculty,United States of America
Yes,No,Own,Python C Fortran Shell Scripting HTML/CSS C++,Theory,Faculty,United States of America
Yes,No,Between,Fortran,Observational,Faculty,Australia
Yes,No,Between,Matlab Excel or other spreadsheet LabView,Instrumentation,Faculty,United States of America
Yes,No,Between,IDL IRAF Python Perl R SQL Shell Scripting sm or supermongo PHP,Observational,Faculty,Chile
Yes,No,Between,IDL IRAF Python,Observational,Faculty,Chile
Yes,No,Between,IRAF Matlab Shell Scripting,Observational,Faculty,United States of America
Yes,No,Others,IRAF sm or supermongo Excel or other spreadsheet,Observational,Faculty,Argentina
Yes,No,Own,Mathematica,Observational Planetary,Faculty,United States of America
Yes,No,Between,IDL Python Shell Scripting,Observational,Faculty,United States of America
Yes,No,Own,Fortran Perl Shell Scripting,Theory,Faculty,United States of America
Yes,No,Own,IDL C Fortran Matlab Shell Scripting,Theory,Faculty,Spain
Yes,No,Own,Fortran Matlab R Shell Scripting mathematica pgplot,Theory,Faculty,India
Yes,No,Own,Python Fortran Perl,Theory,Faculty,Germany
Yes,No,Between,IDL,Observational,Faculty,United States of America
Yes,No,Between,Python Shell Scripting,Observational,Faculty,France
Yes,No,Between,IDL Python,Observational,Faculty,United States of America
Yes,No,Between,Fortran Shell Scripting sm or supermongo Excel or other spreadsheet MIDAS,Observational,Faculty,Germany
Yes,No,Own,IRAF Python C SQL Shell Scripting,Observational Instrumentation,Faculty,Germany
Yes,No,Between,Python C Perl,Observational,Faculty,United Kingdom
Yes,No,Own,IDL Python SQL Shell Scripting,Observational Instrumentation Planetary,Faculty,United States of America
Yes,No,Between,Python C Fortran Perl Shell Scripting sm or supermongo,Theory,Faculty,United States of America
Yes,No,Between,IDL IRAF Python,Observational,Faculty,United Kingdom
Yes,No,Own,Python,Observational,Faculty,United States of America
Yes,No,Own,IDL Python C Matlab,Physics,Faculty,Australia
Yes,No,Between,Python C Fortran Shell Scripting HTML/CSS sm or supermongo Excel or other spreadsheet,Observational,Faculty,Australia
Yes,No,Between,IDL Perl,Observational Theory,Faculty,Canada
Yes,No,Own,Matlab,Observational Theory,Faculty,United States of America
Yes,No,Between,IDL IRAF Perl HTML/CSS,Observational,Faculty,United States of America
Yes,No,Between,Python Fortran sm or supermongo,Observational,Faculty,Chile
Yes,No,Between,IDL IRAF C Fortran Perl,Observational,Faculty,Australia
Yes,No,Between,IDL Python SQL,Observational,Faculty,Germany
Yes,No,Between,IDL C Perl Javascript Shell Scripting HTML/CSS sm or supermongo,Observational Instrumentation,Faculty,United States of America
Yes,No,Between,IDL C,Observational,Faculty,Germany
Yes,No,Own,C Fortran sm or supermongo,Theory,Faculty,Germany
Yes,No,Between,Fortran HTML/CSS MIDAS LaTeX,Observational Instrumentation,Faculty,Germany
Yes,No,Own,Fortran,Theory,Faculty,Germany
Yes,No,Own,IDL Python C Fortran Shell Scripting,Observational Theory,Faculty,Germany
Yes,No,Others,IDL Fortran Perl Shell Scripting sm or supermongo,Observational,Faculty,United States of America
Yes,No,Between,IDL,Observational,Faculty,United States of America
Yes,No,Others,IRAF HTML/CSS sm or supermongo,Observational,Faculty,Germany
Yes,No,Between,Python Fortran Shell Scripting,Observational,Faculty,United Kingdom
Yes,No,Others,Fortran sm or supermongo Excel or other spreadsheet,Observational,Faculty,United States of America
Yes,No,Own,IDL,Planetary,Faculty,United States of America
Yes,No,Others,Python,Planetary,Faculty,United Kingdom
Yes,No,Own,C Fortran Matlab,Planetary,Faculty,United Kingdom
Yes,Little,Others,IDL Python Fortran Perl,Observational,Faculty,Uzbekistan
Yes,Little,Others,Python Javascript SQL HTML/CSS MongoDB,Observational,Faculty,United Kingdom
Yes,Little,Between,IDL Excel or other spreadsheet,Observational,Faculty,United States of America
Yes,Little,Between,Python C Fortran Shell Scripting,Theory,Faculty,United States of America
Yes,Little,Between,IDL Python,Observational,Faculty,United States of America
Yes,Little,Between,C Perl SQL Shell Scripting,Observational,Faculty,United States of America
Yes,Little,Others,IDL IRAF Python C sm or supermongo Excel or other spreadsheet,Observational,Faculty,Chile
Yes,Little,Others,IRAF Python C Fortran sm or supermongo,Observational,Faculty,United States of America
Yes,Little,Others,Fortran,Observational Instrumentation,Faculty,Israel
Yes,Little,Own,IDL Fortran,Theory,Faculty,United States of America
Yes,Little,Between,IDL C Shell Scripting heasoft ciao xmm-sas,Observational,Faculty,United Arab Emirates
Yes,Little,Own,IDL Python Fortran Perl R SQL Shell Scripting HTML/CSS Excel or other spreadsheet,Observational,Faculty,Netherlands
Yes,Little,Between,IRAF Python Shell Scripting,Observational,Faculty,Sweden
Yes,Little,Between,IRAF C Fortran Shell Scripting Excel or other spreadsheet IRIS,Other,Faculty,Brazil
Yes,Little,Own,IDL Python,Planetary,Faculty,Netherlands
Yes,Little,Between,IDL,Observational,Faculty,United States of America
Yes,Little,Own,IDL Python SQL,Observational Instrumentation,Faculty,United States of America
Yes,Little,Between,IDL C,Observational Theory,Faculty,Canada
Yes,Little,Between,C Fortran Shell Scripting HTML/CSS,Theory,Faculty,United Kingdom
Yes,Little,Between,Python C Perl SQL Shell Scripting HTML/CSS sm or supermongo,Observational,Faculty,Canada
Yes,Little,Between,IDL Shell Scripting,Observational,Faculty,Canada
Yes,Little,Own,Fortran,Theory,Faculty,United States of America
Yes,Little,Between,IDL IRAF R,Observational,Faculty,United States of America
Yes,Little,Own,IDL Python,Observational,Faculty,United States of America
Yes,Little,Between,IDL Fortran,Observational,Faculty,Australia
Yes,Little,Between,IDL,Observational,Faculty,France
Yes,Little,Between,IDL C,Observational,Faculty,United States of America
Yes,Little,Between,Python C Fortran Shell Scripting,Theory,Faculty,United States of America
Yes,Little,Own,Python Julia R C++,Astrostatistics,Faculty,New Zealand
Yes,Little,Between,IDL,Space Physics,Faculty,United States of America
Yes,Little,Between,Python C,Observational,Faculty,United States of America
Yes,Little,Own,IRAF Fortran Shell Scripting sm or supermongo,Observational,Faculty,United States of America
Yes,Little,Between,Python C Shell Scripting,Observational,Faculty,United Kingdom
Yes,Little,Own,C SQL,Observational,Faculty,United States of America
Yes,Little,Between,IRAF Python Fortran Shell Scripting sm or supermongo MIDAS,Observational,Faculty,Italy
Yes,Little,Own,IDL Shell Scripting Excel or other spreadsheet,Observational,Faculty,United Kingdom
Yes,Little,Between,IDL Python C SQL Shell Scripting HTML/CSS Excel or other spreadsheet,Observational,Faculty,United States of America
Yes,Little,Own,IDL IRAF Shell Scripting,Observational,Faculty,United States of America
Yes,Little,Between,Python C Shell Scripting Excel or other spreadsheet,Observational Instrumentation,Faculty,United States of America
Yes,Little,Between,IRAF Python Fortran Perl Shell Scripting sm or supermongo Excel or other spreadsheet,Observational,Faculty,United States of America
Yes,Little,Between,IDL Python,Observational,Faculty,United States of America
Yes,Little,Own,IRAF Python C Fortran Perl Java Shell Scripting STAN HTML/CSS Excel or other spreadsheet,Observational Instrumentation,Faculty,United States of America
Yes,Little,Between,IDL IRAF Shell Scripting phoebe,Observational,Faculty,Mexico
Yes,Little,Own,C Fortran SQL HTML/CSS sm or supermongo Vista PHP,Observational,Faculty,United States of America
Yes,Little,Between,IDL IRAF Python Fortran Java Shell Scripting HTML/CSS Excel or other spreadsheet,Observational,Faculty,United States of America
Yes,Little,Others,IDL IRAF,Observational,Faculty,United States of America
Yes,Little,Between,IDL,Observational,Faculty,United States of America
Yes,Little,Between,IDL IRAF Python Shell Scripting Excel or other spreadsheet,Observational Planetary,Faculty,United States of America
Yes,Little,Between,Python,Theory,Faculty,United States of America
Yes,Little,Others,,Observational,Faculty,United States of America
Yes,Little,Own,Python C Fortran Perl Shell Scripting HTML/CSS sm or supermongo Excel or other spreadsheet Mathematica,Observational,Faculty,United States of America
Yes,Little,Between,Python C Shell Scripting,Theory,Faculty,United States of America
Yes,Little,Between,IDL Python Perl Javascript Shell Scripting HTML/CSS,Observational,Faculty,United States of America
Yes,Little,Between,IRAF Python C Java,Observational,Faculty,United States of America
Yes,Little,Others,IDL IRAF Python Shell Scripting sm or supermongo,Observational Theory,Faculty,United States of America
Yes,Little,Between,IDL IRAF Python Fortran Shell Scripting,Observational Instrumentation,Faculty,Turkey
Yes,Little,Between,IDL IRAF Fortran Shell Scripting sm or supermongo,Observational,Faculty,United States of America
Yes,Little,Between,Python Perl Shell Scripting HTML/CSS sm or supermongo,Observational Theory,Faculty,United States of America
Yes,Little,Between,IDL,Observational,Faculty,United States of America
Yes,Little,Own,IDL Fortran mathematica,Theory,Faculty,Germany
Yes,Little,Own,IDL Python Shell Scripting HTML/CSS C++,Observational Theory Instrumentation,Faculty,United States of America
Yes,Little,Between,IDL Perl,Observational Planetary,Faculty,United Kingdom
Yes,Little,Between,IDL Python C Fortran Java R sm or supermongo,Observational Instrumentation,Faculty,Argentina
Yes,Little,Others,IDL Fortran Shell Scripting HTML/CSS,Observational,Faculty,France
Yes,Little,Own,IDL IRAF Python C Fortran Perl Javascript Java Shell Scripting HTML/CSS Excel or other spreadsheet,Observational Instrumentation,Faculty,United States of America
Yes,Little,Others,Python,Observational,Faculty,Argentina
Yes,Little,Own,IRAF Fortran Shell Scripting,Observational,Faculty,United States of America
Yes,Little,Others,Excel or other spreadsheet,Observational Theory,Faculty,United States of America
Yes,Little,Between,IDL IRAF Perl SQL Shell Scripting,Observational,Faculty,United States of America
Yes,Little,Own,Python C SQL Excel or other spreadsheet,Observational Instrumentation,Faculty,United States of America
Yes,Little,Between,IDL Shell Scripting,Observational,Faculty,United States of America
Yes,Little,Own,IRAF Python Fortran Perl R sm or supermongo Excel or other spreadsheet,Observational,Faculty,United States of America
Yes,Little,Own,IDL,Planetary,Faculty,United States of America
Yes,Little,Between,Python C Fortran Shell Scripting,Theory,Faculty,United States of America
Yes,Little,Between,IDL IRAF Python Fortran Perl,Observational,Faculty,United States of America
Yes,Little,Between,IDL IRAF Python,Instrumentation,Faculty,Germany
Yes,Little,Own,R,Observational Theory,Faculty,Germany
Yes,Little,Between,Python C Fortran Shell Scripting,Theory,Faculty,United States of America
Yes,Little,Between,IDL IRAF Python,Observational,Faculty,United States of America
Yes,Little,Own,Python Fortran Matlab,Observational Theory,Faculty,Israel
Yes,Yes,Between,Python C Shell Scripting,Observational,Faculty,Australia
Yes,Yes,Own,IDL Python C Shell Scripting,Observational Theory,Faculty,United States of America
Yes,Yes,Between,Python C,Instrumentation,Faculty,Holy See
Yes,Yes,Between,IRAF Python C Javascript Java Shell Scripting HTML/CSS Excel or other spreadsheet,Instrumentation,Faculty,United States of America
Yes,Yes,Own,C Shell Scripting,Theory,Faculty,United States of America
Yes,Yes,Between,C Matlab SQL Shell Scripting,Observational,Faculty,United States of America
Yes,Yes,Between,IDL Python SQL Shell Scripting HTML/CSS,Observational Instrumentation,Faculty,United States of America
Yes,Yes,Between,IDL IRAF Python C Perl Shell Scripting PDL,Observational,Faculty,Chile
Yes,Yes,Between,C Perl HTML/CSS,Theory,Faculty,Germany
Yes,Yes,Own,C Perl SQL Yorick CUDA extension,Theory,Faculty,France
Yes,Yes,Own,IDL Python Perl Matlab HTML/CSS Excel or other spreadsheet xmgrace,Observational Instrumentation,Faculty,United States of America
Yes,Yes,Own,Python C Fortran Matlab SQL Shell Scripting,Theory,Faculty,United States of America
Yes,Yes,Own,C Shell Scripting HTML/CSS PHP,Theory Visualisation and scientific computing,Faculty,Australia
Yes,Yes,Between,IRAF Python C Shell Scripting,Observational,Faculty,Chile
Yes,No,Between,IDL Python Shell Scripting,Observational,Graduate student,United States of America
Yes,No,Others,IDL Python Matlab Shell Scripting,Observational,Graduate student,United States of America
Yes,No,Between,IDL Python Matlab,Observational Instrumentation,Graduate student,United Kingdom
Yes,No,Between,Python Fortran Shell Scripting,Theory,Graduate student,United States of America
Yes,No,Others,IDL Python Shell Scripting,Observational,Graduate student,United States of America
Yes,No,Between,Python Fortran,Observational,Graduate student,United States of America
Yes,No,Between,Python,Theory,Graduate student,United States of America
Yes,No,Own,Python C Fortran,Theory,Graduate student,United States of America
Yes,No,Between,Python Matlab,Observational,Graduate student,Australia
Yes,No,Between,Python C Excel or other spreadsheet,Observational Instrumentation,Graduate student,United States of America
Yes,No,Between,IDL IRAF Python Shell Scripting,Observational,Graduate student,United Kingdom
Yes,No,Others,IDL IRAF Python Fortran,Observational,Graduate student,United States of America
Yes,No,Others,IDL Python,Observational,Graduate student,United States of America
Yes,No,Own,Python Matlab Java Mathematica,Observational,Graduate student,Germany
Yes,No,Between,Python SQL Shell Scripting sm or supermongo yorick,Observational,Graduate student,Germany
Yes,No,Own,IDL Python C,Theory,Graduate student,United States of America
Yes,No,Own,Python C SQL Shell Scripting,Theory Plasma /pulsar,Graduate student,Germany
Yes,No,Between,IRAF Python Shell Scripting,Observational,Graduate student,United States of America
Yes,No,Others,C Fortran sm or supermongo Excel or other spreadsheet,Observational Instrumentation,Graduate student,Germany
Yes,No,Between,Python,Observational,Graduate student,United States of America
Yes,No,Others,IDL IRAF,Observational,Graduate student,United States of America
Yes,No,Between,Python Shell Scripting,Observational,Graduate student,Brazil
Yes,No,Others,IDL,Theory,Graduate student,Germany
Yes,No,Between,IDL IRAF Python Shell Scripting Excel or other spreadsheet yorick,Observational Simulataions,Graduate student,Brazil
Yes,No,Others,IDL IRAF Python C Shell Scripting,Observational Theory,Graduate student,United States of America
Yes,No,Between,IDL Python C,Observational,Graduate student,United States of America
Yes,No,Between,Python Shell Scripting,Observational,Graduate student,United Kingdom
Yes,No,Own,IDL Python Fortran R,Planetary,Graduate student,Brazil
Yes,No,Own,IDL,Observational,Graduate student,United States of America
Yes,No,Between,IRAF Python S-lang,Observational,Graduate student,Netherlands
Yes,No,Between,Python,Observational,Graduate student,United Kingdom
Yes,No,Own,Python Shell Scripting Mathematica,Observational,Graduate student,United Kingdom
Yes,No,Between,Python C Fortran SQL Shell Scripting,Observational Theory,Graduate student,United States of America
Yes,No,Between,Python Shell Scripting Excel or other spreadsheet,Observational,Graduate student,Germany
Yes,No,Others,IDL Python,Observational,Graduate student,United States of America
Yes,No,Between,IDL Python C Excel or other spreadsheet Miriad,Observational,Graduate student,United States of America
Yes,No,Between,IDL IRAF Python Shell Scripting Excel or other spreadsheet,Observational,Graduate student,United States of America
Yes,No,Between,Matlab,Observational,Graduate student,United States of America
Yes,No,Between,Python Shell Scripting,Observational Instrumentation,Graduate student,Netherlands
Yes,No,Between,Python C,Theory,Graduate student,United States of America
Yes,No,Own,Python,Observational Theory,Graduate student,United States of America
Yes,No,Between,IDL Python Shell Scripting,Observational Planetary,Graduate student,United States of America
Yes,No,Others,IRAF Python Fortran Shell Scripting,Observational,Graduate student,Ireland
Yes,No,Between,IRAF Python Fortran R,Observational,Graduate student,Mexico
Yes,No,Own,IDL IRAF Python,Observational,Graduate student,United States of America
Yes,No,Between,C Shell Scripting,Observational,Graduate student,United States of America
Yes,No,Own,IDL CASA,Observational,Graduate student,Chile
Yes,No,Own,IDL Python Fortran Shell Scripting,Observational Theory,Graduate student,Germany
Yes,No,Others,C Shell Scripting sm or supermongo,Observational,Graduate student,Germany
Yes,No,Own,IDL C R Shell Scripting,Observational Theory,Graduate student,United States of America
Yes,No,Between,Python Shell Scripting,Observational,Graduate student,United States of America
Yes,No,Between,IDL IRAF Python Matlab,Planetary,Graduate student,United States of America
Yes,No,Own,Python C Perl SQL Shell Scripting,Instrumentation,Graduate student,United Kingdom
Yes,No,Between,Matlab,Theory Planetary,Graduate student,United States of America
Yes,No,Between,Python Shell Scripting,Instrumentation,Graduate student,United States of America
Yes,No,Own,IDL IRAF Python C Fortran sm or supermongo,Observational,Graduate student,Poland
Yes,No,Own,IDL C Shell Scripting,Theory,Graduate student,United States of America
Yes,No,Between,IDL Python Fortran Perl Julia Matlab Excel or other spreadsheet,Observational,Graduate student,Finland
Yes,No,Between,IDL IRAF Python Fortran Shell Scripting Excel or other spreadsheet,Observational,Graduate student,Australia
Yes,No,Between,IDL IRAF,Observational,Graduate student,United States of America
Yes,No,Between,Python Matlab,Theory,Graduate student,Australia
Yes,No,Between,Python,Observational,Graduate student,Australia
Yes,No,Between,IRAF Python,Observational Instrumentation,Graduate student,United States of America
Yes,No,Between,Python,Theory,Graduate student,United States of America
Yes,No,Between,Python,Observational,Graduate student,Australia
Yes,No,Others,IDL,Observational,Graduate student,United States of America
Yes,No,Own,IDL Python,Observational,Graduate student,United States of America
Yes,No,Between,Shell Scripting HTML/CSS C++,Observational,Graduate student,United States of America
Yes,No,Own,IDL Python C,Observational,Graduate student,United States of America
Yes,No,Own,IDL Python Matlab Shell Scripting Excel or other spreadsheet,Observational Instrumentation,Graduate student,Australia
Yes,No,Between,IDL Excel or other spreadsheet,Observational Instrumentation,Graduate student,United States of America
Yes,No,Between,IRAF Python Shell Scripting,Observational,Graduate student,Brazil
Yes,No,Own,IDL IRAF Shell Scripting HTML/CSS Excel or other spreadsheet,Observational Instrumentation,Graduate student,Brazil
Yes,No,Between,IRAF Python Perl Shell Scripting Excel or other spreadsheet,Observational,Graduate student,United States of America
Yes,No,Between,Python SQL HTML/CSS,Observational,Graduate student,Australia
Yes,No,Between,IDL,Observational,Graduate student,United States of America
Yes,No,Others,IDL Excel or other spreadsheet CASA KATE KILE,Observational,Graduate student,Chile
Yes,No,Own,Python,Observational Theory Planetary,Graduate student,United States of America
Yes,No,Own,IDL Python Fortran,Observational,Graduate student,Australia
Yes,No,Own,Python,Observational,Graduate student,Canada
Yes,No,Others,IRAF Python Excel or other spreadsheet XIMAGE,Observational,Graduate student,United States of America
Yes,No,Own,Python,Observational,Graduate student,Germany
Yes,No,Between,Python Fortran Shell Scripting Ruby Excel or other spreadsheet,Observational,Graduate student,Australia
Yes,No,Between,Python SQL,Observational,Graduate student,United States of America
Yes,No,Between,IDL IRAF Python Excel or other spreadsheet,Observational,Graduate student,United States of America
Yes,No,Between,Python C Fortran,Theory Planetary,Graduate student,United States of America
Yes,No,Between,IRAF Python,Observational,Graduate student,Poland
Yes,No,Others,Python C Matlab R Excel or other spreadsheet,Observational Theory,Graduate student,Brazil
Yes,No,Between,Python,Observational,Graduate student,United States of America
Yes,No,Between,Python Shell Scripting Excel or other spreadsheet tcl,Observational,Graduate student,United States of America
Yes,No,Between,Python,Observational,Graduate student,United States of America
Yes,No,Between,Python Shell Scripting,Observational,Graduate student,Netherlands
Yes,No,Between,IDL Fortran Shell Scripting,Observational Theory,Graduate student,United States of America
Yes,No,Own,IRAF Python Fortran sm or supermongo,Observational,Graduate student,Chile
Yes,No,Between,IDL IRAF Python Shell Scripting,Observational,Graduate student,Spain
Yes,No,Between,Python Perl Matlab Java SQL Shell Scripting HTML/CSS Excel or other spreadsheet C++ ImageJ,Observational modelling,Graduate student,Canada
Yes,No,Between,IDL IRAF Fortran sm or supermongo,Observational,Graduate student,United States of America
Yes,No,Own,IDL,Observational,Graduate student,Germany
Yes,No,Between,Python C Shell Scripting,Observational Theory,Graduate student,Sweden
Yes,No,Others,Python Fortran Ruby,Theory,Graduate student,Poland
Yes,No,Own,IDL,Observational,Graduate student,Germany
Yes,No,Own,Python,Observational Theory,Graduate student,Denmark
Yes,No,Own,IDL,Observational,Graduate student,Spain
Yes,No,Own,Python C Fortran,Observational Theory,Graduate student,Germany
Yes,No,Others,IDL IRAF Shell Scripting,Observational,Graduate student,Netherlands
Yes,No,Own,Python C Shell Scripting,Observational Instrumentation,Graduate student,Germany
Yes,No,Between,IDL IRAF Python,Observational,Graduate student,Finland
Yes,No,Between,Python,Observational,Graduate student,Sweden
Yes,No,Between,Matlab,Observational,Graduate student,Sweden
Yes,No,Between,Python,Instrumentation,Graduate student,Germany
Yes,No,Own,Python Fortran,Observational,Graduate student,Germany
Yes,No,Between,Python,Observational,Graduate student,United Kingdom
Yes,No,Between,IDL IRAF Python,Observational,Graduate student,United States of America
Yes,No,Between,IDL IRAF Python Shell Scripting,Observational,Graduate student,Germany
Yes,No,Between,Python,Observational,Graduate student,United States of America
Yes,No,Own,IDL Fortran,Observational Theory,Graduate student,Germany
Yes,No,Between,IRAF Python,Observational,Graduate student,Netherlands
Yes,No,Between,Python C Fortran,Observational,Graduate student,United States of America
Yes,No,Between,IRAF Python Shell Scripting Excel or other spreadsheet,Observational,Graduate student,Netherlands
Yes,No,Others,Python Fortran Shell Scripting dpuser,Observational,Graduate student,Germany
Yes,No,Between,IRAF Python R Mathematica,Observational,Graduate student,Canada
Yes,No,Between,IDL IRAF,Observational,Graduate student,United States of America
Yes,No,Between,Python C Shell Scripting,Theory,Graduate student,United States of America
Yes,No,Between,Python,Observational Theory,Graduate student,Denmark
Yes,No,Between,Python C Fortran Matlab sm or supermongo,Theory,Graduate student,United States of America
Yes,No,Between,Python,Observational Theory,Graduate student,Australia
Yes,No,Others,IDL IRAF Python Fortran R Shell Scripting Excel or other spreadsheet,Observational Theory,Graduate student,United States of America
Yes,No,Own,Python,Observational Instrumentation Planetary,Graduate student,Australia
Yes,No,Others,IDL Python C Shell Scripting,Planetary,Graduate student,Germany
Yes,No,Between,Python R,Theory,Graduate student,Germany
Yes,No,Own,IDL Python C CudaC,Observational,Graduate student,Germany
Yes,No,Others,IRAF Python C Fortran,Observational,Graduate student,Germany
Yes,No,Own,IDL HTML/CSS,Observational,Graduate student,Germany
Yes,No,Between,IDL C Fortran Shell Scripting gnuplot,Theory,Graduate student,Germany
Yes,No,Own,IDL Python,Observational Instrumentation,Graduate student,Germany
Yes,No,Others,IDL IRAF Fortran Matlab Java Excel or other spreadsheet,Observational Theory Extragalactic Astrophysics,Graduate student,Germany
Yes,No,Between,Python Fortran YT,Theory,Graduate student,Germany
Yes,No,Own,IDL Python Fortran,Observational,Graduate student,United States of America
Yes,No,Between,C R SQL Shell Scripting,Theory,Graduate student,Germany
Yes,No,Between,Python C Fortran Shell Scripting Excel or other spreadsheet,Observational Theory,Graduate student,Germany
Yes,No,Between,IDL C,Theory,Graduate student,Germany
Yes,No,Own,Matlab,Theory,Graduate student,Israel
Yes,No,Between,IDL Python Shell Scripting,Observational,Graduate student,United States of America
Yes,No,Between,IDL IRAF Python Fortran Javascript Julia R HTML/CSS D3.js,Observational,Graduate student,United Kingdom
Yes,No,Others,Python C ROOT,Observational Instrumentation,Graduate student,France
Yes,No,Own,IRAF Python SQL,Observational,Graduate student,Brazil
Yes,No,Own,Python,Planetary,Graduate student,United States of America
Yes,No,Between,Python SQL,Observational,Graduate student,United States of America
Yes,No,Own,Python Matlab Shell Scripting,Observational,Graduate student,United Kingdom
Yes,No,Own,Python C++,Observational,Graduate student,Australia
Yes,No,Own,Python,Theory,Graduate student,Germany
Yes,Little,Between,Python C Fortran,Theory,Graduate student,United States of America
Yes,Little,Between,IDL IRAF Python Shell Scripting Excel or other spreadsheet,Observational,Graduate student,United States of America
Yes,Little,Between,IDL Python SQL Shell Scripting,Observational,Graduate student,United States of America
Yes,Little,Between,Python C Shell Scripting mathematica,Theory,Graduate student,United States of America
Yes,Little,Own,IDL Python SQL,Observational,Graduate student,United States of America
Yes,Little,Between,Python,Observational,Graduate student,United States of America
Yes,Little,Between,IDL Python Fortran,Theory,Graduate student,United States of America
Yes,Little,Others,Python,Theory,Graduate student,United States of America
Yes,Little,Own,C Perl SQL Shell Scripting C++/CUDA,Observational Instrumentation,Graduate student,United States of America
Yes,Little,Between,Python C Perl Javascript R SQL Shell Scripting HTML/CSS Excel or other spreadsheet,Theory,Graduate student,United States of America
Yes,Little,Between,Fortran Shell Scripting HTML/CSS Excel or other spreadsheet,Theory,Graduate student,Germany
Yes,Little,Between,Python Fortran Shell Scripting,Theory,Graduate student,United States of America
Yes,Little,Others,Python Fortran Matlab,Observational Theory,Graduate student,United States of America
Yes,Little,Between,IRAF Python C Fortran,Observational Theory,Graduate student,United States of America
Yes,Little,Between,Python C Javascript Shell Scripting HTML/CSS,Observational Theory,Graduate student,United States of America
Yes,Little,Between,Python R,Observational,Graduate student,United States of America
Yes,Little,Between,Python C Julia Shell Scripting,Theory,Graduate student,United States of America
Yes,Little,Between,IDL Python Fortran,Observational Theory,Graduate student,United States of America
Yes,Little,Between,IDL Python Javascript SQL Shell Scripting HTML/CSS Excel or other spreadsheet,Observational Instrumentation,Graduate student,United States of America
Yes,Little,Between,IDL IRAF Fortran Shell Scripting Excel or other spreadsheet,Observational,Graduate student,Chile
Yes,Little,Between,Python Fortran Perl Shell Scripting,Theory,Graduate student,France
Yes,Little,Others,IDL sm or supermongo,Observational,Graduate student,United States of America
Yes,Little,Between,IDL IRAF Python Excel or other spreadsheet,Observational,Graduate student,United States of America
Yes,Little,Own,Python Fortran,Theory,Graduate student,Germany
Yes,Little,Between,IDL IRAF Python,Observational,Graduate student,United States of America
Yes,Little,Own,IRAF Python SQL HTML/CSS,Observational,Graduate student,United Kingdom
Yes,Little,Between,Python C Shell Scripting,Theory,Graduate student,United States of America
Yes,Little,Own,IDL Python,Observational,Graduate student,United States of America
Yes,Little,Between,IDL Python Fortran,Observational,Graduate student,United States of America
Yes,Little,Between,IRAF Python,Observational,Graduate student,United States of America
Yes,Little,Own,Python Fortran Shell Scripting,Theory,Graduate student,Germany
Yes,Little,Own,IDL IRAF Python Shell Scripting,Observational,Graduate student,Germany
Yes,Little,Others,Python Fortran,Theory Planetary,Graduate student,Brazil
Yes,Little,Between,Python C Shell Scripting,Theory,Graduate student,United States of America
Yes,Little,Between,IRAF Python,Observational,Graduate student,United States of America
Yes,Little,Between,Python,Theory,Graduate student,United States of America
Yes,Little,Own,Python Julia,Theory,Graduate student,United States of America
Yes,Little,Between,Python Mathematica,Theory,Graduate student,United States of America
Yes,Little,Own,IDL Python Shell Scripting,Observational,Graduate student,United States of America
Yes,Little,Between,IDL IRAF Python R Excel or other spreadsheet,Observational,Graduate student,United States of America
Yes,Little,Between,Python C Fortran HTML/CSS C++,Theory,Graduate student,United States of America
Yes,Little,Own,Python,Other,Graduate student,United States of America
Yes,Little,Between,IDL Python C,Instrumentation Planetary,Graduate student,United States of America
Yes,Little,Between,Python Fortran Shell Scripting Ruby,Theory,Graduate student,United States of America
Yes,Little,Between,IDL Python,Observational,Graduate student,United States of America
Yes,Little,Own,IDL Python C Shell Scripting,Observational Instrumentation,Graduate student,United States of America
Yes,Little,Between,IRAF Python,Observational,Graduate student,Australia
Yes,Little,Others,IDL SQL,Observational,Graduate student,United States of America
Yes,Little,Between,IDL C Shell Scripting,Theory,Graduate student,United States of America
Yes,Little,Between,Python C,Observational,Graduate student,United States of America
Yes,Little,Between,IDL C,Theory,Graduate student,Germany
Yes,Little,Between,Python Shell Scripting,Observational,Graduate student,United States of America
Yes,Little,Own,IDL Fortran,Observational Theory,Graduate student,United States of America
Yes,Little,Between,IRAF Perl Matlab Shell Scripting Excel or other spreadsheet,Observational,Graduate student,United States of America
Yes,Little,Between,IRAF Python,Observational,Graduate student,United States of America
Yes,Little,Between,IDL Python C Matlab Shell Scripting,Theory Planetary,Graduate student,United States of America
Yes,Little,Between,Python C Fortran,Theory,Graduate student,United States of America
Yes,Little,Between,IDL IRAF Matlab,Observational,Graduate student,United States of America
Yes,Little,Between,Python C Fortran,Theory Planetary,Graduate student,United States of America
Yes,Little,Between,IDL Python Fortran Excel or other spreadsheet,Theory,Graduate student,Chile
Yes,Little,Between,Python Julia Shell Scripting,Observational,Graduate student,United States of America
Yes,Little,Between,Python C,Theory,Graduate student,United States of America
Yes,Little,Between,Perl,Theory,Graduate student,United States of America
Yes,Little,Own,Python git,Observational,Graduate student,Sweden
Yes,Little,Between,Python,Observational,Graduate student,United States of America
Yes,Little,Own,Python HTML/CSS,Observational,Graduate student,United States of America
Yes,Little,Between,IDL IRAF C Matlab Shell Scripting,Observational,Graduate student,United States of America
Yes,Little,Own,IDL IRAF Python C SQL Shell Scripting,Observational,Graduate student,United States of America
Yes,Little,Own,IDL IRAF Python C Shell Scripting,Observational,Graduate student,United States of America
Yes,Little,Between,IDL Python R miriad,Observational,Graduate student,United States of America
Yes,Little,Own,IDL IRAF Python C Javascript Shell Scripting,Observational Instrumentation,Graduate student,United States of America
Yes,Little,Own,Python C mathematica,Theory,Graduate student,United Kingdom
Yes,Little,Own,Python Matlab,Observational Instrumentation,Graduate student,United States of America
Yes,Little,Between,Python C Matlab Shell Scripting,Instrumentation,Graduate student,Australia
Yes,Little,Between,Python C HTML/CSS,Observational,Graduate student,United States of America
Yes,Little,Between,IDL Python Perl Shell Scripting Excel or other spreadsheet C++,Theory,Graduate student,United States of America
Yes,Little,Others,IDL IRAF Perl,Observational,Graduate student,Mexico
Yes,Little,Own,Python Fortran Shell Scripting C++,Theory Statistical Methods,Graduate student,United Kingdom
Yes,Little,Between,IDL IRAF,Observational,Graduate student,United States of America
Yes,Little,Between,IDL IRAF Python R Shell Scripting Excel or other spreadsheet awk CASA and CIAO (which are python-based),Observational,Graduate student,United States of America
Yes,Little,Between,Python C Shell Scripting Excel or other spreadsheet,Observational Planetary,Graduate student,United States of America
Yes,Little,Between,Python C Shell Scripting,Theory,Graduate student,United States of America
Yes,Little,Between,IDL Python,Instrumentation,Graduate student,United States of America
Yes,Little,Between,Python C Shell Scripting,Observational,Graduate student,United States of America
Yes,Little,Between,Python Perl Shell Scripting,Observational,Graduate student,United States of America
Yes,Little,Own,Python C Matlab Shell Scripting HTML/CSS,Theory,Graduate student,Canada
Yes,Little,Between,Python Matlab Excel or other spreadsheet,Instrumentation,Graduate student,Australia
Yes,Little,Others,Python C Fortran Shell Scripting,Theory,Graduate student,United States of America
Yes,Little,Between,Python Shell Scripting,Observational,Graduate student,United States of America
Yes,Little,Between,IRAF Python Shell Scripting Excel or other spreadsheet,Observational,Graduate student,United States of America
Yes,Little,Own,IDL Shell Scripting,Observational,Graduate student,United States of America
Yes,Little,Own,IDL,Observational,Graduate student,United States of America
Yes,Little,Between,Python C,Observational,Graduate student,United States of America
Yes,Little,Between,IDL Python C Shell Scripting,Theory,Graduate student,Germany
Yes,Little,Between,IDL Python Shell Scripting,Observational,Graduate student,United States of America
Yes,Little,Between,Python C Fortran Mathematica,Theory,Graduate student,United States of America
Yes,Little,Own,Python C Shell Scripting HTML/CSS,Theory,Graduate student,United States of America
Yes,Little,Between,IRAF Python Shell Scripting,Observational,Graduate student,United States of America
Yes,Little,Own,IDL Python,Theory Planetary,Graduate student,United States of America
Yes,Little,Between,Python Matlab,Theory,Graduate student,Australia
Yes,Little,Own,IDL Python Matlab Shell Scripting,Instrumentation Planetary,Graduate student,United States of America
Yes,Little,Between,Python C Fortran HTML/CSS,Observational,Graduate student,United States of America
Yes,Little,Between,IDL Python C Fortran Shell Scripting,Observational Theory,Graduate student,Belgium
Yes,Little,Between,IDL Python C Matlab R,Theory,Graduate student,Australia
Yes,Little,Between,IDL Fortran,Planetary,Graduate student,United States of America
Yes,Little,Own,Python,Observational,Graduate student,United States of America
Yes,Little,Between,IRAF Python Matlab,Observational,Graduate student,United States of America
Yes,Little,Own,IDL HTML/CSS,Observational,Graduate student,United States of America
Yes,Little,Between,IDL,Observational,Graduate student,United States of America
Yes,Little,Between,Python Fortran Javascript Shell Scripting Ruby HTML/CSS,Observational Theory,Graduate student,United States of America
Yes,Little,Own,IDL Python C Perl,Observational,Graduate student,United States of America
Yes,Little,Own,Python Fortran Shell Scripting,Theory,Graduate student,United States of America
Yes,Little,Between,IRAF Python Excel or other spreadsheet,Observational,Graduate student,United States of America
Yes,Little,Between,IDL Python SQL Shell Scripting,Observational Theory,Graduate student,United States of America
Yes,Little,Own,Python,Theory,Graduate student,United States of America
Yes,Little,Between,Python C Shell Scripting,Theory,Graduate student,United States of America
Yes,Little,Own,IDL Shell Scripting Mathematica,Planetary,Graduate student,United States of America
Yes,Little,Between,Python C,Theory,Graduate student,Germany
Yes,Little,Between,IDL IRAF Python SQL,Observational,Graduate student,United States of America
Yes,Little,Between,IDL Python Fortran Shell Scripting Excel or other spreadsheet,Observational Theory,Graduate student,United States of America
Yes,Little,Between,Python,Theory,Graduate student,United States of America
Yes,Little,Others,Python Excel or other spreadsheet,Observational,Graduate student,Australia
Yes,Little,Between,Python Shell Scripting Excel or other spreadsheet,Observational Theory,Graduate student,Chile
Yes,Little,Own,IDL IRAF Python,Observational,Graduate student,United Kingdom
Yes,Little,Others,IDL IRAF Python SQL Shell Scripting ds9,Observational,Graduate student,United States of America
Yes,Little,Own,Python Shell Scripting,Observational,Graduate student,United States of America
Yes,Little,Between,IDL Python Excel or other spreadsheet,Observational,Graduate student,Australia
Yes,Little,Between,IDL Python Mathematica,Observational Theory,Graduate student,United States of America
Yes,Little,Between,IDL IRAF Python Shell Scripting,Observational,Graduate student,United States of America
Yes,Little,Between,Python C Shell Scripting,Theory,Graduate student,United States of America
Yes,Little,Own,IDL Fortran Matlab,Observational,Graduate student,New Zealand
Yes,Little,Between,Python Fortran Shell Scripting,Theory,Graduate student,Canada
Yes,Little,Own,IDL Python C C++,Observational Instrumentation,Graduate student,United States of America
Yes,Little,Between,IRAF Shell Scripting,Observational,Graduate student,Chile
Yes,Little,Between,Python C Shell Scripting,Observational,Graduate student,United States of America
Yes,Little,Own,IDL IRAF Python Matlab HTML/CSS Excel or other spreadsheet,Observational,Graduate student,United States of America
Yes,Little,Between,Python C Fortran Shell Scripting,Theory,Graduate student,United Kingdom
Yes,Little,Between,Python C Fortran Shell Scripting,Theory,Graduate student,United Kingdom
Yes,Little,Own,C sm or supermongo,Theory,Graduate student,United States of America
Yes,Little,Between,Python C Shell Scripting,Theory,Graduate student,Netherlands
Yes,Little,Between,Python Matlab Shell Scripting,Observational,Graduate student,Germany
Yes,Little,Between,Python Fortran Matlab Shell Scripting,Theory Planetary,Graduate student,Germany
Yes,Little,Own,Python Shell Scripting Git pandoc,Observational,Graduate student,Sweden
Yes,Little,Between,IDL Python Fortran Shell Scripting,Theory,Graduate student,Sweden
Yes,Little,Between,Python SQL,Observational,Graduate student,Sweden
Yes,Little,Own,C#,Observational Theory,Graduate student,Sweden
Yes,Little,Own,Python C,Theory,Graduate student,Sweden
Yes,Little,Between,Python C Fortran Shell Scripting haskell,Theory Computational Astrophysics,Graduate student,Switzerland
Yes,Little,Others,IDL C Shell Scripting,Observational,Graduate student,Sweden
Yes,Little,Between,IDL,Observational,Graduate student,Sweden
Yes,Little,Own,IDL Python Maple,Cosmology,Graduate student,Brazil
Yes,Little,Between,Python,Observational,Graduate student,Argentina
Yes,Little,Between,IDL Python C Shell Scripting,Observational Theory,Graduate student,United States of America
Yes,Little,Between,IDL Python Shell Scripting HTML/CSS,Observational,Graduate student,United Kingdom
Yes,Little,Between,Python Shell Scripting VimL,Observational,Graduate student,Portugal
Yes,Little,Own,Python SQL,Observational,Graduate student,Sweden
Yes,Little,Between,Fortran R,Theory,Graduate student,Argentina
Yes,Little,Between,IRAF Python R,Observational Instrumentation,Graduate student,Argentina
Yes,Little,Others,IDL Python C,Theory,Graduate student,Germany
Yes,Little,Own,Python Shell Scripting,Observational,Graduate student,Netherlands
Yes,Little,Own,Python C Fortran Matlab Shell Scripting,Theory,Graduate student,Sweden
Yes,Little,Between,IRAF Python Matlab Excel or other spreadsheet,Observational,Graduate student,Sweden
Yes,Little,Own,Fortran Matlab,Theory,Graduate student,United Kingdom
Yes,Little,Between,Python Javascript HTML/CSS,Observational,Graduate student,Denmark
Yes,Little,Own,IDL Python R SQL,Observational,Graduate student,Netherlands
Yes,Little,Others,Python C Fortran Matlab HTML/CSS,Observational Instrumentation Planetary Other,Graduate student,India
Yes,Little,Own,Python C Fortran Shell Scripting,Theory,Graduate student,United States of America
Yes,Little,Between,IDL,Observational,Graduate student,United States of America
Yes,Little,Own,IDL Python Shell Scripting Mathematica,Observational,Graduate student,United States of America
Yes,Little,Own,Python R,Observational Theory,Graduate student,Switzerland
Yes,Little,Between,Python,Observational Instrumentation,Graduate student,United States of America
Yes,Little,Between,IDL IRAF,Observational,Graduate student,Australia
Yes,Little,Between,Python Shell Scripting,Observational,Graduate student,Australia
Yes,Little,Own,C R Shell Scripting,Observational Theory,Graduate student,United States of America
Yes,Little,Between,IDL IRAF,Observational Planetary,Graduate student,United States of America
Yes,Little,Between,Python,Observational,Graduate student,Australia
Yes,Little,Others,IDL Python C Fortran Shell Scripting,Theory,Graduate student,Germany
Yes,Little,Between,IDL,Observational,Graduate student,Germany
Yes,Little,Between,Python,Observational Theory,Graduate student,Germany
Yes,Little,Between,IDL IRAF Python C Fortran Shell Scripting Gnuplot,Theory,Graduate student,Germany
Yes,Little,Between,IDL Python Shell Scripting,Theory,Graduate student,Georgia
Yes,Little,Between,IDL Python,Observational Theory,Graduate student,Germany
Yes,Little,Between,Python C Shell Scripting Excel or other spreadsheet,Theory,Graduate student,Germany
Yes,Little,Between,Python C,Theory,Graduate student,Germany
Yes,Little,Between,Python,Observational,Graduate student,Germany
Yes,Little,Others,Python Shell Scripting CASA,Observational,Graduate student,Germany
Yes,Little,Between,IDL Python Matlab,Theory,Graduate student,Germany
Yes,Little,Between,IRAF Python Shell Scripting sm or supermongo,Observational,Graduate student,Germany
Yes,Little,Others,IDL,Observational,Graduate student,Germany
Yes,Little,Own,Python C,Theory,Graduate student,Germany
Yes,Little,Between,IDL IRAF Python,Observational,Graduate student,Germany
Yes,Little,Between,IDL IRAF C Shell Scripting Excel or other spreadsheet,Observational Instrumentation,Graduate student,United States of America
Yes,Little,Between,IDL Python,Theory,Graduate student,United States of America
Yes,Little,Others,IRAF Python sm or supermongo,Observational,Graduate student,Chile
Yes,Little,Own,Matlab,Theory,Graduate student,Israel
Yes,Little,Between,Python C Shell Scripting,Observational Theory,Graduate student,United States of America
Yes,Little,Own,IDL,Observational,Graduate student,Germany
Yes,Little,Others,IRAF Python Excel or other spreadsheet,Planetary,Graduate student,United States of America
Yes,Little,Between,Python Shell Scripting,Observational,Graduate student,United Kingdom
Yes,Little,Own,IDL Python C Javascript Julia HTML/CSS,Theory,Graduate student,United States of America
Yes,Little,Own,Python Shell Scripting C++,Observational,Graduate student,United States of America
Yes,Yes,Between,IDL Python Shell Scripting,Observational Instrumentation,Graduate student,United Kingdom
Yes,Yes,Between,IDL Python C,Observational,Graduate student,United States of America
Yes,Yes,Own,Python C Fortran R Shell Scripting Maple,Planetary,Graduate student,Brazil
Yes,Yes,Between,IDL Python R Shell Scripting Jython,Observational,Graduate student,Germany
Yes,Yes,Between,Python Fortran Shell Scripting git,Theory,Graduate student,United States of America
Yes,Yes,Between,IDL IRAF Python C Fortran R Shell Scripting,Observational,Graduate student,United Kingdom
Yes,Yes,Own,Python Shell Scripting Excel or other spreadsheet,Observational,Graduate student,United States of America
Yes,Yes,Own,Python C,Theory,Graduate student,United Kingdom
Yes,Yes,Between,IDL Python Shell Scripting,Observational,Graduate student,United States of America
Yes,Yes,Own,C Fortran Shell Scripting,Theory,Graduate student,United States of America
Yes,Yes,Between,IDL IRAF Shell Scripting,Observational,Graduate student,United Kingdom
Yes,Yes,Own,Python Perl Shell Scripting,Theory,Graduate student,United States of America
Yes,Yes,Own,IDL,Observational,Graduate student,United States of America
Yes,Yes,Own,IDL Python C,Observational Instrumentation,Graduate student,Australia
Yes,Yes,Own,Python Fortran Java SQL HTML/CSS,Observational,Graduate student,Argentina
Yes,Yes,Own,Python Fortran Shell Scripting,Theory,Graduate student,Argentina
Yes,Yes,Own,C SQL Shell Scripting HTML/CSS,Instrumentation,Graduate student,Poland
Yes,Yes,Own,Python C Java Shell Scripting,Observational Instrumentation,Graduate student,Czech Republic
Yes,Yes,Between,Python Shell Scripting,Observational,Graduate student,Sweden
Yes,Yes,Own,Python C Fortran,Theory,Graduate student,Germany
Yes,Yes,Between,Python Shell Scripting,Observational,Graduate student,United States of America
Yes,Yes,Own,Python C Shell Scripting STAN HTML/CSS,Observational,Graduate student,Germany
Yes,Yes,Between,IDL IRAF Python C Fortran Matlab sm or supermongo Excel or other spreadsheet,Observational,Graduate student,Chile
Yes,Yes,Between,SQL c#,Observational Instrumentation,Graduate student,Malaysia
Yes,Yes,Own,Python C,Other,Graduate student,Australia
Yes,Yes,Between,Python C Fortran Shell Scripting HTML/CSS Rust,Theory,Graduate student,Germany
Yes,Yes,Own,Python C Fortran Matlab Shell Scripting,Theory,Graduate student,Germany
Yes,,Between,Python,Observational,Graduate student,Germany
Yes,Little,Between,Javascript SQL Shell Scripting HTML/CSS,Astronomy eResearch,IT at observatory,Australia
Yes,Little,Between,Python C Fortran Matlab C++,Planetary,mestrado,Brazil
Yes,Little,Others,IRAF,Observational,PhD student,Argentina
Yes,Yes,Own,Python C SQL,Theory,PhD student,Germany
Yes,No,Between,IDL IRAF Python sm or supermongo,Observational,Post-bac,United States of America
Yes,Little,Others,Python Shell Scripting Excel or other spreadsheet,Planetary,Post-Bachelors Research Scientist,United States of America
Yes,No,Between,Python C Fortran C++,Theory,Postdoc,Germany
Yes,No,Between,IDL IRAF Shell Scripting HTML/CSS sm or supermongo,Observational,Postdoc,Australia
Yes,No,Own,IDL Python,Theory,Postdoc,United States of America
Yes,No,Between,IDL IRAF Fortran Shell Scripting HTML/CSS,Observational,Postdoc,Chile
Yes,No,Own,Python C Fortran Shell Scripting Mathematica,Observational Theory,Postdoc,United States of America
Yes,No,Own,IDL Python,Instrumentation,Postdoc,Spain
Yes,No,Between,IDL C Fortran,Observational Theory,Postdoc,United Kingdom
Yes,No,Between,IDL IRAF Shell Scripting Excel or other spreadsheet,Observational,Postdoc,Chile
Yes,No,Between,Python SQL Shell Scripting,Observational,Postdoc,Germany
Yes,No,Between,IDL Fortran SQL Excel or other spreadsheet,Observational Theory,Postdoc,United Kingdom
Yes,No,Own,IDL IRAF Shell Scripting,Observational,Postdoc,United States of America
Yes,No,Between,IDL Python Fortran,Theory,Postdoc,United States of America
Yes,No,Own,IDL Python C Fortran,Theory,Postdoc,United States of America
Yes,No,Between,IDL Python sm or supermongo,Observational,Postdoc,United States of America
Yes,No,Between,IRAF Python C Shell Scripting,Observational,Postdoc,Germany
Yes,No,Between,Python,Observational Theory,Postdoc,Germany
Yes,No,Own,Python Javascript SQL Shell Scripting HTML/CSS Excel or other spreadsheet gnuplot,Observational,Postdoc,Germany
Yes,No,Between,Python,Observational,Postdoc,United States of America
Yes,No,Own,C Shell Scripting,Observational Theory,Postdoc,United Kingdom
Yes,No,Between,IDL Python,Observational,Postdoc,United States of America
Yes,No,Between,IDL Python Fortran Shell Scripting Excel or other spreadsheet,Observational Theory,Postdoc,United Kingdom
Yes,No,Between,IDL Python Fortran Shell Scripting Excel or other spreadsheet,Observational Theory,Postdoc,United Kingdom
Yes,No,Between,IRAF Python Shell Scripting,Observational Instrumentation,Postdoc,United States of America
Yes,No,Own,Python Javascript Matlab SQL Shell Scripting HTML/CSS PHP,Observational Other,Postdoc,Denmark
Yes,No,Others,IDL Python Perl Shell Scripting,Observational,Postdoc,United States of America
Yes,No,Between,Python,Observational,Postdoc,Australia
Yes,No,Between,Python Javascript SQL Shell Scripting Ruby HTML/CSS,Observational Other,Postdoc,United Kingdom
Yes,No,Others,IRAF sm or supermongo AIPS,Observational,Postdoc,Sweden
Yes,No,Between,Python Perl,Observational,Postdoc,United Kingdom
Yes,No,Own,Python SQL,Observational Instrumentation,Postdoc,United Kingdom
Yes,No,Others,Python Shell Scripting,Observational,Postdoc,Switzerland
Yes,No,Own,IDL Python,Observational Theory,Postdoc,United States of America
Yes,No,Between,IDL IRAF C SQL,Observational Theory,Postdoc,United States of America
Yes,No,Between,Python C Matlab Shell Scripting HTML/CSS Excel or other spreadsheet,Observational Instrumentation,Postdoc,United States of America
Yes,No,Between,IDL,Observational,Postdoc,United States of America
Yes,No,Between,IRAF Python Matlab,Observational,Postdoc,United States of America
Yes,No,Others,IDL IRAF Shell Scripting,Observational,Postdoc,United States of America
Yes,No,Between,IDL Python Excel or other spreadsheet,Observational,Postdoc,United States of America
Yes,No,Own,IDL Python Ruby,Observational Instrumentation,Postdoc,United States of America
Yes,No,Between,IDL,Theory,Postdoc,Italy
Yes,No,Own,Python C Matlab,Observational,Postdoc,Australia
Yes,No,Between,IDL Fortran Shell Scripting,Observational Theory,Postdoc,France
Yes,No,Own,Python C Fortran Shell Scripting sm or supermongo,Theory,Postdoc,Netherlands
Yes,No,Between,IDL Python C Shell Scripting,Observational,Postdoc,Switzerland
Yes,No,Between,IDL Python Fortran Shell Scripting,Theory,Postdoc,United States of America
Yes,No,Between,Python,Observational,Postdoc,Austria
Yes,No,Between,Python SQL Shell Scripting,Observational,Postdoc,United States of America
Yes,No,Between,IDL,Observational,Postdoc,United States of America
Yes,No,Own,IDL IRAF,Observational,Postdoc,United States of America
Yes,No,Own,Python Shell Scripting c++,Theory Instrumentation,Postdoc,Germany
Yes,No,Own,IDL IRAF Python Fortran Matlab HTML/CSS Excel or other spreadsheet mathematica,Theory,Postdoc,United Kingdom
Yes,No,Between,Python C SQL Shell Scripting,Observational Instrumentation,Postdoc,Netherlands
Yes,No,Own,IDL C Ruby,Observational,Postdoc,Australia
Yes,No,Own,Python C Fortran SQL Shell Scripting,Observational Theory,Postdoc,United Kingdom
Yes,No,Others,IRAF C Shell Scripting,Observational Theory,Postdoc,United States of America
Yes,No,Others,IRAF Python Fortran Perl Shell Scripting Figaro gnuplot,Observational Instrumentation,Postdoc,Spain
Yes,No,Own,Python C Shell Scripting,Theory,Postdoc,Switzerland
Yes,No,Own,IDL sm or supermongo,Theory,Postdoc,United Kingdom
Yes,No,Between,IDL IRAF Python Shell Scripting,Observational,Postdoc,Sweden
Yes,No,Between,Python C SQL Shell Scripting,Observational,Postdoc,Germany
Yes,No,Own,IDL Fortran Shell Scripting,Observational Theory,Postdoc,United Kingdom
Yes,No,Between,IDL,Observational Theory,Postdoc,Germany
Yes,No,Own,IDL,Observational Theory,Postdoc,United States of America
Yes,No,Between,Fortran Shell Scripting gnuplot,Observational,Postdoc,Poland
Yes,No,Between,Python SQL Shell Scripting HTML/CSS,Observational,Postdoc,Australia
Yes,No,Own,Python Shell Scripting,Observational Theory,Postdoc,Italy
Yes,No,Own,IDL Fortran R Shell Scripting,Theory,Postdoc,United Kingdom
Yes,No,Between,IDL Python SQL Shell Scripting HTML/CSS Excel or other spreadsheet,Observational Theory,Postdoc,United States of America
Yes,No,Others,IDL IRAF Python Shell Scripting sm or supermongo,Observational,Postdoc,United States of America
Yes,No,Between,IDL,Observational,Postdoc,United States of America
Yes,No,Own,Python,Theory,Postdoc,United States of America
Yes,No,Between,IDL IRAF Python SQL,Observational,Postdoc,United States of America
Yes,No,Between,IDL Python C sm or supermongo,Observational,Postdoc,Mexico
Yes,No,Between,IDL Shell Scripting Mathematica,Observational,Postdoc,Australia
Yes,No,Between,Python Shell Scripting,Observational,Postdoc,Australia
Yes,No,Own,Python,Theory,Postdoc,Australia
Yes,No,Others,Python C Fortran,Theory,Postdoc,Australia
Yes,No,Between,Python Shell Scripting Mathematica,Theory,Postdoc,Australia
Yes,No,Own,IDL IRAF Python Perl sm or supermongo Excel or other spreadsheet Jython,Observational,Postdoc,United States of America
Yes,No,Between,IDL,Observational,Postdoc,Australia
Yes,No,Between,IDL Python,Observational,Postdoc,United States of America
Yes,No,Others,IDL IRAF Shell Scripting,Observational,Postdoc,Mexico
Yes,No,Between,Python Shell Scripting,Observational,Postdoc,United States of America
Yes,No,Own,IDL Fortran,Theory,Postdoc,Japan
Yes,No,Own,IDL Fortran,Theory,Postdoc,United States of America
Yes,No,Own,IDL IRAF HTML/CSS,Observational,Postdoc,United States of America
Yes,No,Between,Python Shell Scripting,Observational Instrumentation,Postdoc,United States of America
Yes,No,Between,IDL Python SQL Shell Scripting,Observational,Postdoc,
Yes,No,Between,Python C++ Marthematica,Theory,Postdoc,Australia
Yes,No,Between,IDL,Observational,Postdoc,Germany
Yes,No,Others,Python Matlab Shell Scripting,Observational,Postdoc,South Africa
Yes,No,Own,IDL Shell Scripting C++,Observational Other,Postdoc,United Kingdom
Yes,No,Own,Matlab Shell Scripting Excel or other spreadsheet,Observational Instrumentation,Postdoc,United States of America
Yes,No,Own,IDL,Observational,Postdoc,United Kingdom
Yes,No,Between,Python C Matlab Shell Scripting,Theory,Postdoc,United Kingdom
Yes,No,Between,IDL Python C Fortran Perl Shell Scripting,Observational,Postdoc,United States of America
Yes,No,Own,IDL IRAF C Shell Scripting HTML/CSS Excel or other spreadsheet,Observational,Postdoc,United Kingdom
Yes,No,Between,Fortran sm or supermongo Mathematica,Observational,Postdoc,Japan
Yes,No,Own,Fortran Shell Scripting,Observational Theory,Postdoc,France
Yes,No,Own,IDL IRAF Fortran Perl SQL HTML/CSS Excel or other spreadsheet,Observational,Postdoc,United States of America
Yes,No,Own,IDL Python C Shell Scripting,Theory,Postdoc,Germany
Yes,No,Between,C Fortran Matlab,Theory,Postdoc,United States of America
Yes,No,Between,IDL Python C Perl Shell Scripting Mathematica,Observational,Postdoc,Germany
Yes,No,Own,Python Fortran Perl Julia R SQL Shell Scripting HTML/CSS,Theory,Postdoc,Argentina
Yes,No,Others,IRAF Python Perl Shell Scripting,Observational,Postdoc,Brazil
Yes,No,Between,IDL Python,Observational,Postdoc,Spain
Yes,No,Between,IDL Python Shell Scripting,Observational,Postdoc,Germany
Yes,No,Between,IRAF Python R SQL,Observational,Postdoc,United Kingdom
Yes,No,Between,IDL IRAF,Observational,Postdoc,Germany
Yes,No,Own,Python C Java Shell Scripting,Observational Other Data mining,Postdoc,Germany
Yes,No,Between,C,Observational,Postdoc,Germany
Yes,No,Own,Python Java C++,Observational,Postdoc,Germany
Yes,No,Between,IDL,Observational,Postdoc,Germany
Yes,No,Own,IDL Python Fortran Java,Theory,Postdoc,Germany
Yes,No,Own,Python SQL Shell Scripting Excel or other spreadsheet LaTeX,Observational,Postdoc,China
Yes,No,Between,IDL C Matlab,Observational,Postdoc,Germany
Yes,No,Between,IDL IRAF R SQL Shell Scripting Excel or other spreadsheet,Observational,Postdoc,Germany
Yes,No,Own,IRAF Python,Observational,Postdoc,Germany
Yes,No,Between,IDL Python R Shell Scripting,Observational,Postdoc,Germany
Yes,No,Between,IDL Python HTML/CSS,Observational,Postdoc,Germany
Yes,No,Between,HTML/CSS midas vo tools,Observational,Postdoc,Germany
Yes,No,Own,IDL IRAF Python R SQL Shell Scripting HTML/CSS Excel or other spreadsheet,Observational,Postdoc,United States of America
Yes,No,Others,IDL Fortran Excel or other spreadsheet tex,Other,Postdoc,Netherlands
Yes,No,Between,IDL Python Fortran,Theory,Postdoc,United States of America
Yes,No,Between,IRAF Python C R Shell Scripting sm or supermongo Excel or other spreadsheet Gnuplot,Observational,Postdoc,South Korea
Yes,No,Own,Python Shell Scripting,Observational,Postdoc,Australia
Yes,No,Others,IRAF Fortran R Shell Scripting sm or supermongo,Observational,Postdoc,Poland
Yes,No,Others,Python Fortran Shell Scripting,Theory,Postdoc,Netherlands
Yes,No,Between,IDL Shell Scripting,Observational,Postdoc,Netherlands
Yes,No,Between,IDL IRAF Python R SQL Shell Scripting sm or supermongo,Observational,Postdoc,United States of America
Yes,No,Between,IRAF Python Fortran Shell Scripting MIDAS,Observational Planetary,Postdoc,United States of America
Yes,No,Own,Python,Observational,Postdoc,United Kingdom
Yes,Little,Between,IDL Python C Javascript SQL Shell Scripting HTML/CSS,Observational Theory,Postdoc,United States of America
Yes,Little,Between,Python Fortran Shell Scripting STAN,Observational,Postdoc,United Kingdom
Yes,Little,Between,Python C Excel or other spreadsheet,Observational Instrumentation,Postdoc,United States of America
Yes,Little,Between,Python Shell Scripting HTML/CSS Excel or other spreadsheet miriad,Observational,Postdoc,Australia
Yes,Little,Own,Python C Shell Scripting HTML/CSS,Theory,Postdoc,United States of America
Yes,Little,Own,Python Matlab,Observational,Postdoc,United States of America
Yes,Little,Own,Python C Fortran Shell Scripting Excel or other spreadsheet,Theory,Postdoc,United States of America
Yes,Little,Between,IDL Python C Fortran sm or supermongo,Theory,Postdoc,United States of America
Yes,Little,Between,Python Fortran R Shell Scripting,Theory,Postdoc,Germany
Yes,Little,Own,Python,Observational,Postdoc,Chile
Yes,Little,Own,Python C SQL Shell Scripting HTML/CSS,Observational Instrumentation,Postdoc,Chile
Yes,Little,Between,Python C Shell Scripting,Observational Theory,Postdoc,Chile
Yes,Little,Own,IDL Python Shell Scripting,Observational,Postdoc,United States of America
Yes,Little,Own,IDL IRAF Shell Scripting,Observational,Postdoc,Chile
Yes,Little,Between,IDL IRAF Python SQL,Observational,Postdoc,Chile
Yes,Little,Own,Python C Fortran Shell Scripting Excel or other spreadsheet,Observational Theory,Postdoc,Germany
Yes,Little,Between,Python C Fortran,Theory,Postdoc,United States of America
Yes,Little,Others,Python Shell Scripting,Theory,Postdoc,Netherlands
Yes,Little,Between,IRAF Python C Perl Shell Scripting sm or supermongo gnuplot,Observational,Postdoc,Chile
Yes,Little,Others,Python Fortran Matlab GILDAS package,Observational,Postdoc,United States of America
Yes,Little,Own,IDL IRAF Python,Observational,Postdoc,United States of America
Yes,Little,Between,IDL Python C Fortran Shell Scripting gnuplot,Theory,Postdoc,United States of America
Yes,Little,Between,IDL Python SQL Shell Scripting MongoDB,Observational,Postdoc,United States of America
Yes,Little,Between,IDL Python C Fortran,Observational Theory Instrumentation,Postdoc,United States of America
Yes,Little,Between,IRAF C Perl Shell Scripting,Observational,Postdoc,France
Yes,Little,Others,Matlab,Observational,Postdoc,Argentina
Yes,Little,Between,IDL IRAF,Observational,Postdoc,United States of America
Yes,Little,Own,Python C Fortran Shell Scripting,Observational Theory,Postdoc,Norway
Yes,Little,Others,IDL Python,Observational,Postdoc,Germany
Yes,Little,Between,Python C Fortran Shell Scripting HTML/CSS Excel or other spreadsheet,Theory,Postdoc,Germany
Yes,Little,Between,IDL Python Excel or other spreadsheet,Observational,Postdoc,United States of America
Yes,Little,Between,Python SQL Shell Scripting HTML/CSS C++,Astroparticle Physics,Postdoc,Netherlands
Yes,Little,Between,Python SQL Shell Scripting,Observational Instrumentation,Postdoc,United Kingdom
Yes,Little,Own,IDL IRAF Shell Scripting,Observational,Postdoc,Canada
Yes,Little,Between,IDL Python C Shell Scripting HTML/CSS,Observational,Postdoc,Germany
Yes,Little,Own,Matlab,Observational Theory,Postdoc,Ghana
Yes,Little,Own,R Shell Scripting ISIS/S-lang,Observational,Postdoc,United Arab Emirates
Yes,Little,Own,IDL,Observational Instrumentation,Postdoc,United States of America
Yes,Little,Own,IDL Python C Shell Scripting,Theory,Postdoc,Germany
Yes,Little,Between,Matlab Excel or other spreadsheet,Instrumentation,Postdoc,United Kingdom
Yes,Little,Between,Python C Fortran Shell Scripting Excel or other spreadsheet,Theory,Postdoc,Chile
Yes,Little,Own,IDL Python Shell Scripting,Observational,Postdoc,United States of America
Yes,Little,Own,Python Shell Scripting,Observational,Postdoc,United States of America
Yes,Little,Between,Python Shell Scripting,Observational,Postdoc,Netherlands
Yes,Little,Between,IRAF Python SQL Shell Scripting sm or supermongo Excel or other spreadsheet,Observational,Postdoc,United Kingdom
Yes,Little,Own,IDL Python HTML/CSS Excel or other spreadsheet,Observational,Postdoc,United States of America
Yes,Little,Own,IDL,Observational,Postdoc,Spain
Yes,Little,Others,C Fortran Perl Shell Scripting,Observational Theory Planetary,Postdoc,United States of America
Yes,Little,Own,IDL IRAF Python,Observational,Postdoc,United States of America
Yes,Little,Between,IDL Python Javascript Shell Scripting HTML/CSS,Observational,Postdoc,Ireland
Yes,Little,Between,IDL IRAF Python SQL Shell Scripting,Observational,Postdoc,United States of America
Yes,Little,Others,IRAF Excel or other spreadsheet,Observational,Postdoc,United States of America
Yes,Little,Own,IDL IRAF Fortran Shell Scripting,Observational,Postdoc,Swaziland
Yes,Little,Own,IDL Python Fortran Shell Scripting,Theory,Postdoc,United States of America
Yes,Little,Own,IDL Python C Shell Scripting sm or supermongo C++ Mathematica,Theory,Postdoc,United Kingdom
Yes,Little,Others,IDL IRAF Python Fortran Shell Scripting sm or supermongo,Observational,Postdoc,Germany
Yes,Little,Own,IDL C Shell Scripting,Theory,Postdoc,United States of America
Yes,Little,Own,Python Fortran Shell Scripting HTML/CSS,Theory,Postdoc,United States of America
Yes,Little,Between,Python Fortran,Observational,Postdoc,United Kingdom
Yes,Little,Between,IDL Python,Observational,Postdoc,Germany
Yes,Little,Own,IDL IRAF Fortran,Observational Theory,Postdoc,France
Yes,Little,Between,IDL HTML/CSS,Observational Instrumentation,Postdoc,United States of America
Yes,Little,Between,IDL IRAF Python C Fortran Shell Scripting,Observational,Postdoc,United States of America
Yes,Little,Own,IDL Python Shell Scripting,Observational,Postdoc,United States of America
Yes,Little,Between,Python C Fortran Matlab R SQL Shell Scripting HTML/CSS Excel or other spreadsheet,Observational Theory,Postdoc,United States of America
Yes,Little,Own,IDL C Fortran,Theory,Postdoc,Chile
Yes,Little,Between,IDL Python Fortran,Observational Theory,Postdoc,United States of America
Yes,Little,Between,IDL Python C++,Observational,Postdoc,Netherlands
Yes,Little,Between,IDL Python,Observational Instrumentation,Postdoc,United Kingdom
Yes,Little,Own,IDL Python SQL Shell Scripting sm or supermongo,Observational,Postdoc,United States of America
Yes,Little,Between,IDL R,Observational,Postdoc,Chile
Yes,Little,Between,IDL IRAF Python Shell Scripting,Observational,Postdoc,Australia
Yes,Little,Between,IDL IRAF Shell Scripting,Observational,Postdoc,United States of America
Yes,Little,Between,IDL IRAF Shell Scripting gnuplot,Observational,Postdoc,Chile
Yes,Little,Between,IDL SQL,Observational,Postdoc,United States of America
Yes,Little,Own,Python C Shell Scripting,Theory,Postdoc,Switzerland
Yes,Little,Own,Python Shell Scripting,Observational,Postdoc,United States of America
Yes,Little,Others,IRAF C Excel or other spreadsheet,Observational Other,Postdoc,Slovakia
Yes,Little,Own,Python Shell Scripting,Observational,Postdoc,Netherlands
Yes,Little,Between,Matlab,Observational,Postdoc,United States of America
Yes,Little,Between,IDL Python C Java C++,Theory,Postdoc,United States of America
Yes,Little,Between,Python Shell Scripting HTML/CSS,Observational Planetary,Postdoc,Canada
Yes,Little,Own,IDL IRAF Python C Fortran Shell Scripting HTML/CSS Excel or other spreadsheet,Observational Theory Instrumentation,Postdoc,United States of America
Yes,Little,Between,IRAF Python C Shell Scripting Excel or other spreadsheet,Observational,Postdoc,United States of America
Yes,Little,Own,IRAF Python,Observational,Postdoc,United States of America
Yes,Little,Between,IDL Python Fortran SQL Shell Scripting,Observational,Postdoc,United Kingdom
Yes,Little,Between,IRAF Python Shell Scripting gnuplot,Observational,Postdoc,Chile
Yes,Little,Own,Python R Shell Scripting,Observational,Postdoc,United States of America
Yes,Little,Own,Python C,Theory,Postdoc,Germany
Yes,Little,Own,Python,Observational,Postdoc,Brazil
Yes,Little,Between,Python C Fortran,Observational,Postdoc,United Kingdom
Yes,Little,Between,Python R Yorick,Observational,Postdoc,Australia
Yes,Little,Between,Python C Fortran R Shell Scripting,Theory,Postdoc,Australia
Yes,Little,Own,IDL Python C Fortran Perl HTML/CSS C++,Theory,Postdoc,United States of America
Yes,Little,Between,IDL IRAF Python C Fortran R,Observational,Postdoc,United Kingdom
Yes,Little,Own,IDL IRAF Python C,Theory,Postdoc,Germany
Yes,Little,Own,IDL,Observational,Postdoc,United States of America
Yes,Little,Own,Python Perl Shell Scripting C++ gnuplot,Observational,Postdoc,United States of America
Yes,Little,Between,IDL Python C,Theory,Postdoc,Australia
Yes,Little,Own,IDL Python Fortran,Theory,Postdoc,United States of America
Yes,Little,Between,IDL Python C Fortran Shell Scripting,Theory,Postdoc,Canada
Yes,Little,Own,Python C,Theory,Postdoc,United States of America
Yes,Little,Between,Python,,Postdoc,United Kingdom
Yes,Little,Between,IDL C Fortran Shell Scripting,Theory,Postdoc,Netherlands
Yes,Little,Between,IRAF Fortran Shell Scripting sm or supermongo,Observational,Postdoc,United States of America
Yes,Little,Own,C Fortran Shell Scripting,Theory,Postdoc,Australia
Yes,Little,Own,IDL Python,Observational,Postdoc,United States of America
Yes,Little,Between,Python,Observational,Postdoc,Spain
Yes,Little,Between,Python C Fortran Mathematica,Theory Astroparticle physics,Postdoc,United States of America
Yes,Little,Own,IDL Python C++,Observational Instrumentation,Postdoc,United Kingdom
Yes,Little,Between,IDL SQL,Observational,Postdoc,Japan
Yes,Little,Own,IDL Python C Fortran Shell Scripting,Theory,Postdoc,Germany
Yes,Little,Own,Python C R Shell Scripting,Observational Theory,Postdoc,United States of America
Yes,Little,Between,IDL R Shell Scripting,Observational,Postdoc,United States of America
Yes,Little,Between,IDL Shell Scripting,Observational,Postdoc,United States of America
Yes,Little,Between,IDL IRAF Fortran Perl sm or supermongo Excel or other spreadsheet,Observational,Postdoc,United States of America
Yes,Little,Between,IDL IRAF Fortran Shell Scripting Excel or other spreadsheet,Observational,Postdoc,United States of America
Yes,Little,Own,IDL Python Perl SQL Shell Scripting sm or supermongo,Observational,Postdoc,United States of America
Yes,Little,Own,Python Fortran Shell Scripting HTML/CSS gnuplot,Planetary,Postdoc,Argentina
Yes,Little,Between,IDL,Observational,Postdoc,Germany
Yes,Little,Between,IDL,Observational,Postdoc,Australia
Yes,Little,Between,IDL Python Shell Scripting,Observational,Postdoc,United Kingdom
Yes,Little,Others,Python C C++,Other,Postdoc,Germany
Yes,Little,Between,Python Matlab Shell Scripting CASA Miriad,Observational,Postdoc,United States of America
Yes,Little,Own,IDL Shell Scripting,Observational Theory,Postdoc,Italy
Yes,Little,Own,IDL Python Fortran,Theory,Postdoc,Australia
Yes,Little,Own,IDL Python Fortran Shell Scripting,Theory,Postdoc,Denmark
Yes,Little,Between,Python C,Theory,Postdoc,Switzerland
Yes,Little,Between,IDL Python Fortran R SQL Shell Scripting HTML/CSS Excel or other spreadsheet,Observational,Postdoc,Lithuania
Yes,Little,Own,IDL IRAF Fortran Shell Scripting,Observational,Postdoc,Germany
Yes,Little,Own,IDL Python C Shell Scripting C++,Theory,Postdoc,Italy
Yes,Little,Between,IDL C,Theory Planetary,Postdoc,United States of America
Yes,Little,Own,IRAF Python Fortran Shell Scripting,Observational Instrumentation,Postdoc,Chile
Yes,Little,Between,IDL Python C Fortran Shell Scripting,Theory,Postdoc,Sweden
Yes,Little,Others,IDL,Observational,Postdoc,United Kingdom
Yes,Little,Own,Python C Perl,Theory,Postdoc,Argentina
Yes,Little,Between,IDL SQL HTML/CSS Excel or other spreadsheet,Observational,Postdoc,United Kingdom
Yes,Little,Between,Fortran Matlab Shell Scripting,Theory,Postdoc,Portugal
Yes,Little,Between,IDL,Observational,Postdoc,United Kingdom
Yes,Little,Between,IDL Matlab,Observational Theory,Postdoc,Poland
Yes,Little,Own,IDL Python Fortran,Observational Theory,Postdoc,Germany
Yes,Little,Others,Python Fortran Excel or other spreadsheet,Observational,Postdoc,Ireland
Yes,Little,Between,IRAF Python C Perl sm or supermongo,Observational,Postdoc,Germany
Yes,Little,Own,IDL Python,Observational,Postdoc,Spain
Yes,Little,Own,IRAF sm or supermongo,Observational,Postdoc,Germany
Yes,Little,Between,Python C Shell Scripting sm or supermongo Excel or other spreadsheet,Theory,Postdoc,United States of America
Yes,Little,Others,Python C Julia,Observational,Postdoc,United States of America
Yes,Little,Between,Python C Fortran Shell Scripting,Theory,Postdoc,United States of America
Yes,Little,Between,IDL IRAF Shell Scripting,Observational,Postdoc,Argentina
Yes,Little,Own,Python C Fortran Shell Scripting,Theory,Postdoc,Sweden
Yes,Little,Own,IDL Python SQL Shell Scripting,Observational Planetary Other,Postdoc,United States of America
Yes,Little,Others,IDL,Observational,Postdoc,United States of America
Yes,Little,Between,Python Shell Scripting S-lang,Observational Theory,Postdoc,United States of America
Yes,Little,Between,Python Shell Scripting tcl,Observational,Postdoc,Netherlands
Yes,Little,Between,Python C Shell Scripting,Observational,Postdoc,Australia
Yes,Little,Own,Python C Fortran C++,Observational Theory,Postdoc,United States of America
Yes,Little,Own,C Shell Scripting awk,Theory,Postdoc,United Kingdom
Yes,Little,Between,IDL Python Shell Scripting,Theory,Postdoc,United States of America
Yes,Little,Own,IDL,Observational,Postdoc,Germany
Yes,Little,Own,Python Shell Scripting,Theory,Postdoc,United States of America
Yes,Little,Between,Python C Fortran Shell Scripting,Observational Theory,Postdoc,United Kingdom
Yes,Little,Between,Python C SQL HTML/CSS,Observational,Postdoc,United States of America
Yes,Little,Own,Fortran sm or supermongo,Theory,Postdoc,Germany
Yes,Little,Between,IDL Python sm or supermongo,Observational,Postdoc,Italy
Yes,Little,Between,Python Fortran,Theory,Postdoc,Germany
Yes,Little,Between,IDL Python C Shell Scripting HTML/CSS,Observational,Postdoc,Germany
Yes,Little,Own,IRAF SQL sm or supermongo,Observational,Postdoc,Germany
Yes,Little,Own,Python C C++,Theory Instrumentation,Postdoc,Germany
Yes,Little,Own,IDL IRAF Python R Shell Scripting,Observational,Postdoc,Germany
Yes,Little,Between,Python C Shell Scripting,Theory,Postdoc,Germany
Yes,Little,Between,Python C Java SQL Shell Scripting,Observational Instrumentation,Postdoc,Germany
Yes,Little,Between,IRAF Python C Fortran Javascript R SQL Shell Scripting HTML/CSS C++,Observational Theory,Postdoc,United Kingdom
Yes,Little,Between,Python C Shell Scripting,Observational Theory,Postdoc,Australia
Yes,Little,Own,IDL Python C Fortran Shell Scripting,Theory,Postdoc,United Kingdom
Yes,Little,Own,"Fortran Shell Scripting MIDAS -- the ancient ""European"" IRAF",Observational,Postdoc,United States of America
Yes,Little,Own,IDL Fortran,Theory,Postdoc,Israel
Yes,Little,Between,Python Excel or other spreadsheet,Instrumentation,Postdoc,Germany
Yes,Little,Own,IRAF Python C Fortran Shell Scripting sm or supermongo awk,Observational,Postdoc,United States of America
Yes,Little,Between,Python Excel or other spreadsheet C++,Observational,Postdoc,Germany
Yes,Yes,Own,IRAF Python C SQL,Observational Theory,Postdoc,United States of America
Yes,Yes,Between,Python Fortran Shell Scripting,Theory,Postdoc,Germany
Yes,Yes,Between,Python C Shell Scripting,Theory,Postdoc,United States of America
Yes,Yes,Own,Python C Fortran Shell Scripting Mathematica,Theory,Postdoc,United States of America
Yes,Yes,Between,Python C Shell Scripting Mathematica,Observational,Postdoc,South Africa
Yes,Yes,Between,Python Javascript SQL Shell Scripting HTML/CSS,Observational,Postdoc,United Kingdom
Yes,Yes,Between,IDL Python,Observational,Postdoc,Germany
Yes,Yes,Between,Python Perl Matlab Shell Scripting sm or supermongo C++,Theory,Postdoc,Canada
Yes,Yes,Between,IDL Python,Observational,Postdoc,United States of America
Yes,Yes,Between,IRAF Python Shell Scripting Excel or other spreadsheet,Observational,Postdoc,United States of America
Yes,Yes,Own,Shell Scripting C++,Observational,Postdoc,Netherlands
Yes,Yes,Own,IRAF Matlab Excel or other spreadsheet,Observational,Postdoc,Switzerland
Yes,Yes,Own,Python C Shell Scripting,Observational,Postdoc,Germany
Yes,Yes,Between,Python C Javascript SQL Shell Scripting,Observational,Postdoc,United States of America
Yes,Yes,Own,Python C Fortran Perl Shell Scripting,Observational Theory,Postdoc,Netherlands
Yes,Yes,Between,IDL Python C Fortran Shell Scripting,Observational Theory,Postdoc,Australia
Yes,Yes,Own,Python Shell Scripting awk,Observational,Postdoc,Poland
Yes,Yes,Between,Python C Shell Scripting,Theory,Postdoc,Italy
Yes,Yes,Between,Python C Shell Scripting C# (for data viz & edu tools),Observational,Postdoc,Germany
Yes,Yes,Own,C Matlab,Observational Instrumentation,Postdoc,United States of America
Yes,Yes,Own,IDL Python C Fortran Matlab R SQL,Observational Theory,Postdoc,United Kingdom
Yes,Yes,Between,Python Shell Scripting,Observational,Postdoc,Germany
Yes,Yes,Between,Python Javascript SQL Shell Scripting HTML/CSS,Observational Instrumentation,Postdoc,Australia
Yes,Yes,Others,IRAF Python,Observational,Postdoc,United Kingdom
Yes,Yes,Between,Python,Observational Theory,Postdoc,Germany
Yes,Yes,Own,Python C Fortran Shell Scripting,Observational,Postdoc,Germany
Yes,Yes,Own,IDL Python Shell Scripting,Observational,Postdoc,Germany
Yes,Yes,Between,Python C sm or supermongo,Observational,Postdoc,Portugal
Yes,Yes,Own,IRAF Python C Shell Scripting,Observational Theory,Postdoc,United States of America
Yes,No,Others,,Planetary,Research assistant,United States of America
Yes,No,Between,C SQL Shell Scripting CERN ROOT package,Observational,Research scientist,United States of America
Yes,No,Between,Python C SQL Shell Scripting,Observational,Research scientist,Germany
Yes,No,Own,IDL Fortran Shell Scripting,Theory,Research scientist,Germany
Yes,No,Between,IRAF C Shell Scripting Excel or other spreadsheet Mathematica root,Observational,Research scientist,Germany
Yes,No,Own,Python Fortran Java R SQL,Observational,Research scientist,United States of America
Yes,No,Between,Python C Fortran Shell Scripting,Observational Theory,Research scientist,Germany
Yes,No,Between,Fortran Shell Scripting,Observational Theory,Research scientist,Hungary
Yes,No,Between,Shell Scripting HTML/CSS S-lang,Observational Theory Instrumentation,Research scientist,United States of America
Yes,No,Between,C Perl Shell Scripting,Observational,Research scientist,United States of America
Yes,No,Between,IDL Perl SQL HTML/CSS,Observational,Research scientist,Germany
Yes,No,Own,IDL C SQL Shell Scripting C++,Observational,Research scientist,United States of America
Yes,No,Between,IDL Python C,Observational Instrumentation,Research scientist,United Kingdom
Yes,No,Own,IDL C Shell Scripting,Instrumentation,Research scientist,United States of America
Yes,No,Between,C Matlab Shell Scripting Excel or other spreadsheet,Instrumentation,Research scientist,United States of America
Yes,No,Between,Fortran Shell Scripting,Planetary,Research scientist,United States of America
Yes,No,Between,IRAF R Shell Scripting XMM-SAS ftools ds9 CIAO,Observational,Research scientist,Italy
Yes,No,Between,IDL Excel or other spreadsheet,Instrumentation,Research scientist,United States of America
Yes,No,Others,Python C Shell Scripting,Observational,Research scientist,France
Yes,No,Between,IRAF Python C Fortran Mathematica,Observational Theory,Research scientist,Netherlands
Yes,No,Between,Python C Perl,Observational,Research scientist,Russia
Yes,No,Between,IDL C Fortran Shell Scripting,Observational,Research scientist,United States of America
Yes,No,Between,IRAF Fortran HTML/CSS sm or supermongo Excel or other spreadsheet,Observational Planetary,Research scientist,United States of America
Yes,No,Between,Python C Perl Shell Scripting HTML/CSS sm or supermongo,Observational,Research scientist,United States of America
Yes,No,Own,IRAF Python Matlab R Excel or other spreadsheet,Observational Theory,Research scientist,
Yes,No,Between,C Fortran sm or supermongo,Observational,Research scientist,United States of America
Yes,No,Between,IDL,Instrumentation,Research scientist,
Yes,No,Between,IDL Python Shell Scripting HTML/CSS,Observational,Research scientist,United States of America
Yes,No,Own,Python,Observational Theory,Research scientist,United States of America
Yes,No,Others,Shell Scripting sm or supermongo,Observational,Research scientist,Australia
Yes,No,Own,IDL,Observational,Research scientist,United States of America
Yes,No,Own,IDL IRAF C++,Observational,Research scientist,Sweden
Yes,No,Between,IDL IRAF Python R sm or supermongo STILTS,Observational,Research scientist,Mexico
Yes,No,Between,IDL Python,Observational,Research scientist,Russia
Yes,No,Others,C Excel or other spreadsheet Mathematica,Observational Astroparticle physics,Research scientist,Germany
Yes,No,Between,IDL HTML/CSS Excel or other spreadsheet,Observational,Research scientist,United States of America
Yes,No,Between,IRAF Python Perl SQL Shell Scripting,Archive Scientist,Research scientist,Canada
Yes,No,Between,IDL Excel or other spreadsheet,Observational Instrumentation,Research scientist,United States of America
Yes,No,Own,C Shell Scripting C++,Observational Instrumentation,Research scientist,United States of America
Yes,No,Between,Python,Observational,Research scientist,United States of America
Yes,No,Own,IDL IRAF Fortran SQL Shell Scripting,Observational,Research scientist,United States of America
Yes,No,Own,Python C++,Observational,Research scientist,United States of America
Yes,No,Own,Fortran sm or supermongo,Other,Research scientist,Argentina
Yes,No,Between,IDL SQL HTML/CSS,Observational,Research scientist,United States of America
Yes,No,Between,IDL C Fortran Perl,Theory,Research scientist,Germany
Yes,No,Between,Python C Fortran HTML/CSS sm or supermongo,Theory,Research scientist,Argentina
Yes,No,Between,Python Shell Scripting,Observational,Research scientist,United States of America
Yes,No,Between,IDL,Observational,Research scientist,
Yes,No,Between,Python Perl,Observational Instrumentation,Research scientist,Belgium
Yes,No,Between,C Perl R SQL Shell Scripting ROOT,Observational,Research scientist,Germany
Yes,No,Between,IDL Python C HTML/CSS,Observational,Research scientist,United States of America
Yes,No,Between,IDL,Observational Instrumentation,Research scientist,Austria