-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
4607 lines (3869 loc) · 159 KB
/
index.html
File metadata and controls
4607 lines (3869 loc) · 159 KB
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
<!DOCTYPE html>
<html lang="en-US" itemscope itemtype="http://schema.org/WebPage">
<head>
<meta name="generator" content="Hugo 0.124.1">
<meta charset="utf-8">
<title>SoDa</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5">
<meta name="theme-name" content="bigspring-hugo" />
<link rel="shortcut icon" href="/images/logos/logo_small_wb_hu68a4318163ff8e011babdec4caf974c7_3412_96x0_resize_lanczos_3.png" type="image/x-icon">
<link rel="icon" href="/images/logos/logo_small_wb_hu68a4318163ff8e011babdec4caf974c7_3412_96x0_resize_lanczos_3.png" type="image/x-icon">
<link rel="icon" type="image/png" sizes="48x48" href="/images/logos/logo_small_wb_hu68a4318163ff8e011babdec4caf974c7_3412_48x0_resize_lanczos_3.png">
<link rel="icon" type="image/png" sizes="96x96" href="/images/logos/logo_small_wb_hu68a4318163ff8e011babdec4caf974c7_3412_96x0_resize_lanczos_3.png">
<link rel="apple-touch-icon" sizes="144x144" href="/images/logos/logo_small_wb_hu68a4318163ff8e011babdec4caf974c7_3412_144x0_resize_lanczos_3.png">
<link rel="manifest" href="/manifest.webmanifest" />
<meta
name="msapplication-TileColor"
content="#006388" />
<meta
name="theme-color"
content="#fff" />
<base href="https://odissei-soda.nl/" />
<title>SoDa</title>
<meta
name="keywords"
content="ODISSEI, Social data science, SoDa team" />
<meta
name="description"
content="The website for the ODISSEI SoDa team" />
<meta name="author" content="SoDa team" />
<meta property="og:title" content="SoDa" />
<meta property="og:description" content="The website for the ODISSEI SoDa team" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://odissei-soda.nl/" />
<meta name="twitter:title" content="SoDa" />
<meta name="twitter:description" content="The website for the ODISSEI SoDa team" />
<meta name="twitter:creator" content="@SoDa team" />
<meta http-equiv="x-dns-prefetch-control" content="on" />
<link rel="preconnect" href="//ajax.googleapis.com" />
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin="anonymous" />
<link rel="preconnect" href="https://use.fontawesome.com" crossorigin />
<link rel="preconnect" href="//cdnjs.cloudflare.com" />
<link rel="preconnect" href="//www.googletagmanager.com" />
<link rel="preconnect" href="//www.google-analytics.com" />
<link rel="dns-prefetch" href="https://fonts.gstatic.com" />
<link rel="dns-prefetch" href="https://use.fontawesome.com" />
<link rel="dns-prefetch" href="//ajax.googleapis.com" />
<link rel="dns-prefetch" href="//cdnjs.cloudflare.com" />
<link rel="dns-prefetch" href="//www.googletagmanager.com" />
<link rel="dns-prefetch" href="//www.google-analytics.com" />
<link rel="dns-prefetch" href="//fonts.googleapis.com" />
<link rel="dns-prefetch" href="//connect.facebook.net" />
<link rel="dns-prefetch" href="//platform.linkedin.com" />
<link rel="dns-prefetch" href="//platform.twitter.com" />
<link rel="stylesheet" href="/css/style.css" />
</head>
<body>
<div class="preloader">
</div>
<script>
(function () {
"use strict";
window.addEventListener("load", function () {
document.querySelector(".preloader").style.display = "none";
});
})();
</script>
<header class="navigation">
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light">
<a class="navbar-brand" href="/">
<img
fetchpriority="high"
decoding="async"
class="img img-light"
width="250"
height=""
src="/images/logos/soda_logo.svg"
alt="ODISSEI SoDa team"
onerror="this.onerror=null;this.src='';" />
<img
fetchpriority="high"
decoding="async"
class="img img-dark"
width="250"
height=""
src="/images/logos/soda_logo_white.svg"
alt="ODISSEI SoDa team"
onerror="this.onerror=null;this.src='';" />
</a>
<div class="d-flex align-items-center">
<button aria-label="navbar toggler" class="navbar-toggler border-0 h4 mb-0" type="button" data-bs-toggle="collapse" aria-expanded="false" data-bs-target="#navigation">
<i class="fas fa-bars"></i>
<i class="fa-solid fa-xmark"></i>
</button>
</div>
<div class="collapse navbar-collapse text-center" id="navigation">
<ul class="navbar-nav mx-auto">
<li class="nav-item active">
<a class="nav-link"
href="/">Home</a>
</li>
<li class="nav-item ">
<a class="nav-link"
href="/principles/">About</a>
</li>
<li class="nav-item ">
<a class="nav-link"
href="/projects/">Projects</a>
</li>
<li class="nav-item ">
<a class="nav-link"
href="/workshops/">Workshops</a>
</li>
<li class="nav-item ">
<a class="nav-link"
href="/team/">Team</a>
</li>
<li class="nav-item ">
<a class="nav-link"
href="/fellowship/">Fellowship</a>
</li>
<li class="nav-item ">
<a class="nav-link"
href="/tutorials/">Tutorials</a>
</li>
</ul>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfTVvJgMs6teGUltv9ZAI3GC_w8PQvLDGx6tqUqfFcTEyTm-A/viewform"
class="btn btn-sm btn-primary ms-lg-4 mt-2 mt-lg-0">Contact us</a>
</div>
</nav>
</div>
</header>
<main>
<section class="banner">
<div class="container">
<div class="row">
<div class="col-lg-10 mx-auto text-center">
<h1 class="mb-4 pb-2">We help social scientists with data intensive & computational research</h1>
<div class="col-lg-8 mx-auto text-center">
<p class="mb-5">Our goal is to enhance the evidence base and impact of social science by bringing the added value of new data sources and new data analysis techniques into social research in the Netherlands</p>
</div>
<div class="mb-5">
<div class="mb-2">
<h1 class="h6 text-primary m-3" style="display: inline-block;">part of</h1>
<a href="https://odissei-data.nl" style="display: inline-block;">
<img
src="/images/logos/odissei_logo.svg"
loading="lazy"
decoding="async"
alt="banner image"
class="is-hoverable-logo img"
width="220p"
height="" />
</a>
</div>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfTVvJgMs6teGUltv9ZAI3GC_w8PQvLDGx6tqUqfFcTEyTm-A/viewform" title="Contact us" class="btn btn-outline-primary m-2">Contact us</a>
<a href="#offer">
<span class="text-primary fw-500">Get more info <i class="fas fa-arrow-right small ms-1"></i> </span>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="section bg-white pt-4" id="drop_in">
<div class="container">
<div class="row align-items-center justify-content-center">
<div class="col-lg-6 col-md-10 mb-5 mb-lg-0">
<div class="pe-0 pe-lg-5 text-center text-lg-start">
<h3 class="section-title h4"><i class="fa-solid fa-calendar-day text-primary"></i> Monthly Tuesday SoDa Data Drop-In</h3>
<p class="mb-5"><p>If you have questions about your data or methods, join our monthly online SoDa Data Drop-In on the third Tuesday of every month at 16:00.</p>
<p>Use the link below to join the meeting!</p>
</p>
<a href="https://teams.microsoft.com/meet/37023889614707?p=yFU8KrumTgVAmXuqgF">
<span class="text-primary fw-600">Teams meeting<i class="fa-solid fa-video ms-1"></i></span>
</a>
</div>
</div>
<div class="col-lg-6 text-center">
<img
src="/images/graphics/scene5_new_no_bg.svg"
loading="lazy"
decoding="async"
alt="banner image"
class=" img"
width="550"
height="" />
</div>
</div>
</div>
</section>
<section class="section bg-light">
<div class="container">
<div class="row g-5 justify-content-center">
<div class="col-lg-8 text-center mx-auto mb-5">
<h3 class="section-title h4 mt-3 mb-2">What we offer</h3>
<p class="lead text-dark">We can help you with short consultations or full collaborations on your project.</p>
<p class="mb-0 text-primary lead" id="offer">Free for anyone at an <a href="https://odissei-data.nl/en/en-odissei/member-organisations/"
target="_blank"
>ODISSEI member organisation</a></p>
</div>
<div class="col-lg-6">
<div class="bg-white px-4 py-5 px-lg-6 rounded-2 shadow">
<h2 class="section-title h3">Short consultations</h2>
<p class="mb-3">We regularly meet with social scientists to consult them on various issues surrounding data science, statistics, research engineering.<br> Whether it’s a half-hour conversation where we point you in the right direction, a brainstorm session about how to collect your data, or a longer session where we program something together, do not hesitate to get in contact!</p>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfTVvJgMs6teGUltv9ZAI3GC_w8PQvLDGx6tqUqfFcTEyTm-A/viewform">
<span class="text-primary fw-500">Contact us here <i class="fas fa-arrow-right small ms-1"></i> </span>
</a>
<br>
<a href="#drop_in">
<span class="text-primary fw-500">Or join our monthly drop-in <i class="fas fa-arrow-right small ms-1"></i> </span>
</a>
</div>
</div>
<div class="col-lg-6">
<div class="bg-white px-4 py-5 px-lg-6 rounded-2 shadow">
<h2 class="section-title h3">Collaborate on a project</h2>
<p class="mb-3">We work together with social scientists on longer projects where substantial involvement of the SoDa team is required. This could take various different forms. For these projects we start with a non-committal conversation about the goals and the requirements of the research project.<br><br> For examples of what we can do together, see the section below.
<a href="#can-do-together">
<span class="text-primary fw-500"> <i class="fas fa-arrow-right small ms-1"></i> </span>
</a>
</p>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfTVvJgMs6teGUltv9ZAI3GC_w8PQvLDGx6tqUqfFcTEyTm-A/viewform">
<span class="text-primary fw-500">Contact us here <i class="fas fa-arrow-right small ms-1"></i> </span>
</a>
</div>
</div>
</div>
</div>
</section>
<section class="section bg-light" id="can-do-together" style="margin-top: -30px;">
<div class="container">
<div class="row">
<div class="col-xl-4 mb-5 mb-xl-0">
<div class="pe-0 pe-xl-3">
<h2 class="section-title h3 mb-4">What can we do together?</h2>
<div class="content mb-4">
The ODISSEI Social Data Science (SoDa) team exists to support social scientists in their research projects. Researchers from <a href="https://odissei-data.nl/en/en-odissei/member-organisations/"
target="_blank"
>ODISSEI member organisations</a> can propose research projects for which our computational, statistical, and research engineering skills will help answer questions that would otherwise remain unanswered.
</div>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfTVvJgMs6teGUltv9ZAI3GC_w8PQvLDGx6tqUqfFcTEyTm-A/viewform" title="Contact us for free" class="btn btn-outline-primary mb-4">Contact us for free</a>
</div>
If you want to see examples of projects we did,<br>
check out our
<a href="./projects/">
<span class="text-primary fw-500">projects page here <i class="fas fa-arrow-right small ms-1"></i> </span>
</a>
</div>
<div class="col-xl-8">
<div class="row g-5">
<div class="col-md-6">
<div class="feature-card is-hoverable bg-white rounded-1 d-block d-sm-flex">
<i class="icon fa-solid fa-magnifying-glass-chart text-primary mb-4"></i>
<div class="block">
<h4 class="mb-3 h5">Data Acquisition</h4>
<p class="mb-0"><ul> <li> Add geotagged information to your data </li> <li> Extract information from images </li> <li> Create networks based on interesting links </li> <li> Connect different sources of data (survey + register) </li> </ul></p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="feature-card is-hoverable bg-white rounded-1 d-block d-sm-flex">
<i class="icon fa-solid fa-chart-bar text-primary mb-4"></i>
<div class="block">
<h4 class="mb-3 h5">Data Analysis</h4>
<p class="mb-0"><ul> <li> Deal with high-dimensional (wide) data </li> <li> Deal with high-volume (long) data </li> <li> Deal with very wide and long data (OSSC) </li> <li> Integrating different sources in 1 analysis </li> </ul></p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="feature-card is-hoverable bg-white rounded-1 d-block d-sm-flex">
<i class="icon fa-solid fa-eye text-primary mb-4"></i>
<div class="block">
<h4 class="mb-3 h5">Interpretation</h4>
<p class="mb-0"><ul> <li>Visualize difficult models to interpret them (e.g., interpretable machine learning)</li> <li>Evaluate research findings on a methodologically sound basis</li><br> </ul></p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="feature-card is-hoverable bg-white rounded-1 d-block d-sm-flex">
<i class="icon fa-solid fa-bullhorn text-primary mb-4"></i>
<div class="block">
<h4 class="mb-3 h5">Communication</h4>
<p class="mb-0"><ul> <li> Interactive data visualization of your research for news websites </li> <li> Technical proof-of-concept for your grant proposal </li> <li> Experts in data analysis collaborate on your paper</li> </ul></p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container">
<div class="row mb-5">
<div class="col-lg-6 mx-auto">
<div class="text-center">
<h2 class="section-title h3">What people think about us</h2>
<p>Here are some statements of people we collaborated with in the past.</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-xl-10">
<div class="swiper testimonial-carousel">
<div class="swiper-wrapper mb-3">
<div class="swiper-slide text-center">
<p class="lead mb-5 text-dark"><i class="fa-solid fa-quote-left text-primary ms-1"></i> I’m very happy with the help that I got, and if I would have any more questions in the future, I already know who to turn to. <i class="fa-solid fa-quote-right text-primary ms-1"></i></p>
<h5 class="mb-1">Thijs Lindner</h5>
<p>PhD candidate | Erasmus School of Social and Behavioural Sciences | Sociology</p>
<a href="https://odissei-data.nl/en/2021/12/first-aid-for-data-questions-consult-soda-about-computational-calculating-power/">
<span class="text-muted">Read the full story here <i class="fas fa-arrow-right small ms-1"></i> </span>
</a>
</div>
<div class="swiper-slide text-center">
<p class="lead mb-5 text-dark"><i class="fa-solid fa-quote-left text-primary ms-1"></i> It is very special that I can receive this support as a researcher who does not have the possibility to visualize this tool themselves. <i class="fa-solid fa-quote-right text-primary ms-1"></i></p>
<h5 class="mb-1">Dr. Minet de Wied</h5>
<p>Assistant Professor | Utrecht University | Social and Behavioural Sciences | Education and Pedagogy</p>
<a href="https://odissei-data.nl/en/2022/03/first-aid-for-data-questions-how-soda-can-support-researchers-with-the-development-of-innovative-applications/">
<span class="text-muted">Read the full story here <i class="fas fa-arrow-right small ms-1"></i> </span>
</a>
</div>
<div class="swiper-slide text-center">
<p class="lead mb-5 text-dark"><i class="fa-solid fa-quote-left text-primary ms-1"></i> When you put your assumptions aside and expose yourself, you realize how much you can grow as a researcher. I am very grateful for this collaboration, even if it would have led to a different outcome. <i class="fa-solid fa-quote-right text-primary ms-1"></i></p>
<h5 class="mb-1">Dr. Eftychia Stamkou</h5>
<p>Assistant Professor | University of Amsterdam | Social and Behavioural Sciences | Psychology</p>
<a href="https://odissei-data.nl/en/2022/12/first-aid-for-data-questions-how-soda-can-help-develop-web-scrapers-and-ai-models/">
<span class="text-muted">Read the full story here <i class="fas fa-arrow-right small ms-1"></i> </span>
</a>
</div>
<div class="swiper-slide text-center">
<p class="lead mb-5 text-dark"><i class="fa-solid fa-quote-left text-primary ms-1"></i> The first consultation was great. I understand what machine learning methods do on a conceptual level, but was unclear on what is actually involved in implementing these techniques. The SoDa team’s assistance was very helpful! <i class="fa-solid fa-quote-right text-primary ms-1"></i></p>
<h5 class="mb-1">Dr. Ruth Carlitz</h5>
<p>Assistant Professor | University of Amsterdam | Amsterdam Institute for Social Science Research | Political Science</p>
<a href="https://odissei-data.nl/en/2023/04/first-aid-for-data-questions-how-the-soda-team-empowers-interdisciplinary-scientists-with-computational-methods/">
<span class="text-muted">Read the full story here <i class="fas fa-arrow-right small ms-1"></i> </span>
</a>
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container">
<div class="row align-items-center justify-content-center text-center">
<div class="col-lg-5 col-md-7">
<h2 class="section-title">Ready to get started?</h2>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfTVvJgMs6teGUltv9ZAI3GC_w8PQvLDGx6tqUqfFcTEyTm-A/viewform" title="Contact Us" class="btn btn-primary">Contact Us</a>
</div>
</div>
</div>
</section>
</main>
<footer class="bg-light section pb-0">
<div class="container">
<div class="row justify-content-center">
<div class="col-xl-11">
<div class="section pt-0">
<div class="row gy-4">
<div class="col-lg-3 col-sm-6">
<div class="h5 mb-4">About</div>
<ul class="list-unstyled footer-list">
<li><a href="/projects/" title="Projects">Projects</a></li>
<li><a href="/principles/" title="Principles">Principles</a></li>
<li><a href="/team/" title="Team">Team</a></li>
</ul>
</div>
<div class="col-lg-3 col-sm-6">
<div class="h5 mb-4">Support</div>
<ul class="list-unstyled footer-list">
<li><a href="/tutorials/" title="Tutorials">Tutorials</a></li>
<li><a href="/workshops/" title="Workshops">Workshops</a></li>
<li><a href="/fellowship/" title="Fellowship">Fellowship</a></li>
</ul>
</div>
<div class="col-lg-3 col-sm-6">
</div>
<div class="col-lg-3 col-sm-6">
<a class="d-block h5 mb-3" href="https://odissei-soda.nl/">