forked from WhyR2018/WhyR2018
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1130 lines (1050 loc) · 59.6 KB
/
index.html
File metadata and controls
1130 lines (1050 loc) · 59.6 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>
<head>
<title>Why R 2018 Conference</title>
<meta charset="utf-8">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Why R? 2018: an international conference about R applications, ranging from pure science to business">
<meta name="keywords" content="Conference Why R, machine learning, mathematics, R, coding, data analysis, data science, R users groups">
<meta name="author" content="Michał Burdukiewicz">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Kaushan+Script|Montserrat|Roboto" rel="stylesheet">
<link rel="stylesheet" href="fonts/font-awesome-4.7.0/css/font-awesome.min.css">
<!-- Animate lib -->
<link rel="stylesheet" type="text/css" href="css/animate.css">
<!-- Owl carusel -->
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/owl.theme.default.css">
<!-- BX slider for our citate -->
<link rel="stylesheet" href="css/jquery.bxslider.css">
<!-- JQ -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- Style -->
<script src="https://code.jquery.com/jquery-3.1.1.js" integrity="sha256-16cdPddA6VdVInumRGo6IbivbERE8p7CQR3HzTBuELA=" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-migrate-3.0.0.js" integrity="sha256-lsVOB+3Yhm6He5MkTO3Bw/Xw4NXK7wYYTi1Y+M/2PrM=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jQuery-viewport-checker/1.8.8/jquery.viewportchecker.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-scrollTo/2.1.0/jquery.scrollTo.min.js"></script>
<link rel="icon" href="img\icons\favicon.png"> </head>
<body>
<div class="top">
<div class="navbar">
<div class="main-menu">
<div class="mobile-toggle"> <span></span> <span></span> <span></span> </div>
<nav>
<!-- <div class="whyr-blog">
<a href="http://whyr.pl/blog/">Blog
<img src="img/icons/whyrnieb-white.png"> </a>
</div> -->
<ul class="">
<li>
<a href="#about" class="link">About</a>
</li>
<li>
<a href="#speakers" class="link">Speakers</a>
</li>
<li>
<a href="#programme" class="link">Programme</a>
</li>
<li>
<a href="#Pre-meetings" class="link">Pre-meetings</a>
</li>
<li>
<a href="#place" class="link">Venue</a>
</li>
<li>
<a href="#hackaton" class="link">Hackaton</a>
</li>
<li>
<a href="#sponsoring" class="link">Sponsors</a>
</li>
<li>
<a href="#organizators" class="link">Organising committee</a>
</li>
<li>
<a href="https://whyr2018.github.io/WhyR2018/coc.html" class="link">Code of conduct</a>
</li>
</ul>
</nav>
</div>
<!-- / Main-menu -->
</div>
<div class="first-title">
<h2>Conference</h2>
<h1>Why R?</h1>
<h3>Wrocław, 2-5 July 2018</h3>
</div>
<!-- <div class="register-bar">
<a href="https://docs.google.com/forms/d/e/1FAIpQLScuvHZO8MRHRWd9h6dZWoGQBwMsQ9Ef5KBTOLlJT9nMUgHaog/viewform">Submit your abstract</a>
<a href="https://whyr2018.evenea.pl/?lang=en">Register now</a>
</div>-->
<!-- <div class="register-bar">-->
<!-- <a href="https://www.facebook.com/pg/whyRconf/photos/">Zdjęcia</a>-->
<!-- <a href="https://github.com/whyRconf/prezentacje">Prezentacje</a>-->
<!-- <a href="https://vimeo.com/239259242">Aftermovie</a>-->
<!-- </div> -->
</div>
<!-- Sekcja o konferencji -->
<section id="about" class="about post">
<div class="wrapper">
<header>
<header>
<h3>Why R? 2018 Conference</h3>
</header>
<p> We are pleased to announce that Why R? 2018 Conference will be organized by STWUR (Wroclaw R Users Group). The second official meeting of Polish R enthusiasts will be held in Wroclaw 2-5 July 2018. As the meeting is held in English, we are happy
to invite R users from other countries.</p>
<header>
<h5>We are on
<a href="https://www.facebook.com/whyRconf/" target="_blank">Facebook</a> and
<a href="https://twitter.com/whyRconf" target="_blank">Twitter</a>. Check us out and invite your friends to
<a href="https://www.facebook.com/events/175507496428897/" target="_blank">the event</a>!</h5>
<h5>If you have any questions feel free to contact
<a href="mailto:kontakt@whyr.pl">us</a>!</h5>
</header>
<header></header>
<div class="wrapper">
<header class="">
<h3>Registrations</h3>
<h5>09.03.2018: EARLY BIRD REGISTRATION OPENS</h5>
<h5>06.05.2018: EARLY BIRD REGISTRATION ENDS</h5>
<h5>EARLY BIRD FEE: 450PLN/100EUR</h5>
<h5>STUDENT FEE: 200PLN/50EUR</h5>
<h5>REGULAR FEE: 650PLN/150EUR</h5>
</header>
<p>The registration fee includes participation in workshops and Special Interest Groups. Continuous coffee breaks and lunches on the 3rd and 4th of July are covered by the fee. Refunds are possible till 01.06.2018.</p>
</div>
<div class="wrapper">
<header class="">
<h3>CALLS:</h3>
<h5>09.03.2018: ALL CALLS OPEN</h5>
<h5>30.04.2018: WORKSHOP CALL CLOSES</h5>
<h5>25.05.2018: PRESENTATION CALLS CLOSES</h5>
<h5>01.06.2018: LIGHTNING TALKS CALL CLOSES</h5>
</header>
<p>Abstract submissions are format free, but please do not exceed 400 words and state clearly a chosen call. <b>The abstract submission form <a href="https://docs.google.com/forms/d/e/1FAIpQLScuvHZO8MRHRWd9h6dZWoGQBwMsQ9Ef5KBTOLlJT9nMUgHaog/viewform">is available here</a> or during the <a href="https://whyr2018.evenea.pl/?lang=en">registration.</a> </b></p>
</div>
</header><b>
</b></div><b>
</b></section><b>
<!-- Sekcja o mówcach -->
<section id="speakers" class="speakers post">
<div class="wrapper">
<header>
<h4 style="color:#FFFFFF">Keynote speakers</h4>
<h3 style="color:#FFFFFF">SPEAKERS</h3>
</header>
<div class="row">
<div class="col-6 speaker">
<img src="img/guests/Niedzielski_kolko.gif">
<div class="who">
<h5 style="color:#FFFFFF">Tomasz Niedzielski</h5>
<p class="job" style="color:#FFFFFF">
<a href="http://www.geogr.uni.wroc.pl/kontakty/kontakt-53,tomasz-niedzielski" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a> University of Wroclaw</p>
<p style="color:#FFFFFF">HydroProg | Head of the Department of Geoinformatics and Cartography at the University of Wroclaw.</p>
</div>
</div>
<div class="col-6 speaker">
<img src="img/guests/artursuchw_kolko.gif">
<div class="who">
<h5 style="color:#FFFFFF">Artur Suchwałko</h5>
<p class="job" style="color:#FFFFFF">
<a href="https://pl.linkedin.com/in/artursuchwalko" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
<a href="https://github.com/tpetzoldt" target="_blank"></a> Wroclaw University of Technology</p>
<p style="color:#FFFFFF">Owner, Data Scientist, Instructor at QuantUp</p>
</div>
</div>
</div><div class="row">
<div class="col-6 speaker col-md-6">
<img src="img/guests/daria_kolko.gif">
<div class="who">
<h5 style="color:#FFFFFF">Daria Szmurło</h5>
<p class="job" style="color:#FFFFFF">
<a href="https://pl.linkedin.com/in/daria-szmurlo-b9793842" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a> Jagiellonian University</p>
<p style="color:#FFFFFF">Data Science Consultant & Analytics Hub Leader at McKinsey & Company</p>
</div>
</div><div class="col-6 speaker col-md-6">
<img src="img/guests/meder-crop.gif">
<div class="who">
<h5 style="color:#FFFFFF">Maciej Eder</h5>
<p class="job" style="color:#FFFFFF">
<a href="https://www.researchgate.net/profile/Maciej_Eder" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/in/maciej-eder-4919a033/"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a> Pedagogical University of Cracow</p>
<p style="color:#FFFFFF">Head of Polish Language Institute, Polish Academy of Sciences (PAN).</p>
</div>
</div>
</div>
<div class="row">
<div class="col-6 speaker col-md-6">
<img src="img/guests/agnieszkasuchw_kolko.gif">
<div class="who">
<h5 style="color:#FFFFFF">Agnieszka Suchwałko</h5>
<p class="job" style="color:#FFFFFF">
<a href="https://pl.linkedin.com/in/agnieszkasuchwalko" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a> Wroclaw University of Technology</p>
<p style="color:#FFFFFF">Data Scientist & Associate at QuantUp</p>
</div>
</div>
<div class="col-6 speaker col-md-6">
<img src="img/guests/Petzoldt_kolko.gif">
<div class="who">
<h5 style="color:#FFFFFF">Thomas Petzoldt</h5>
<p class="job" style="color:#FFFFFF">
<a href="https://www.researchgate.net/profile/Thomas_Petzoldt" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a href="https://github.com/tpetzoldt" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a> Dresden University of Technology</p>
<p style="color:#FFFFFF">Simulation of dynamic models in R | Senior Scientist, Faculty of Environmental Sciences.</p>
</div>
</div>
</div><div class="row">
<div class="col-6 speaker col-md-6">
<img src="img/guests/Bischl_kolko.gif">
<div class="who">
<h5 style="color:#FFFFFF">Bernd Bischl</h5>
<p class="job" style="color:#FFFFFF">
<a href="https://www.researchgate.net/profile/Bernd_Bischl" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a href="https://github.com/berndbischl" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a> Ludwig-Maximilians-University of Munich</p>
<p style="color:#FFFFFF">A professor for Computational Statistics at the Department of Statistics at the LMU Munich.</p>
</div>
</div>
<div class="col-6 speaker col-md-6">
<img src="img/guests/leon_kolko.gif">
<div class="who">
<h5 style="color:#FFFFFF">Leon Eyrich Jessen</h5>
<p class="job" style="color:#FFFFFF">
<a href="https://www.researchgate.net/profile/Leon_Jessen" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a href="https://github.com/leonjessen" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a>
<a href="https://dk.linkedin.com/in/leonjessen"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a> Technical University of Denmark</p>
<p style="color:#FFFFFF">Immunoinformatics and Machine Learning, DTU Bioinformatics Employees.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Licznik -->
<!--<section class="count">
<div class="row">
<div class="statistics col-3">
<div class="statistics-content">
<h4><span class="timer" data-from="0" data-to="200" data-speed="6000"></span></h4>
<p>Miejsc</p>
</div>
</div>
<div class="statistics col-3">
<div class="statistics-content">
<h4><span class="timer" data-from="0" data-to="200" data-speed="5000"></span></h4>
<p>Uczestników</p>
</div>
</div>
<div class="statistics col-3">
<div class="statistics-content">
<h4><span class="timer" data-from="0" data-to="42" data-speed="5000"></span></h4>
<p>Zgłoszonych prezentacji</p>
</div>
</div>
<div class="statistics col-3">
<div class="statistics-content">
<h4><span class="timer" data-from="0" data-to="18" data-speed="5000"></span></h4>
<p>Warsztatów</p>
</div>
</div>
</section>-->
<!-- Program konferencji -->
<section id="programme" class="program post">
<div class="wrapper">
<header>
<div class="wrapper">
<header>
<h4>Programme</h4>
<h3>Conference Programme</h3>
<p>
<a href="https://whyr2018.github.io/plan/workshop_plans/index.html">2nd July - Workshops</a><br>
<a href="https://whyr2018.github.io/plan/">3-4 July - Lectures</a><br>
<a href="https://whyr2018.github.io/plan/hackaton_plans/index.html">5th July - Hackathon + Interest Groups</a>
</p>
</header>
</div>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: arial;
}
/* The grid: Three equal columns that floats next to each other */
.column {
float: left;
width: 25%;
padding: 50px;
text-align: center;
font-size: 20px;
cursor: pointer;
color: white;
}
.containerTab {
padding: 20px;
color: white;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Closable button inside the container tab */
.closebtn {
float: right;
color: white;
font-size: 10px;
cursor: pointer;
}
</style>
<img src="img/plan3.jpg" style="width:100%">
<!-- Four columns -->
<!-- <div class="row">
<div class="column" onclick="openTab('b1');" style="background:#2c578a;"> 02.07 </div>
<div class="column" onclick="openTab('b2');" style="background:#4c8ab9;"> 03.07 </div>
<div class="column" onclick="openTab('b3');" style="background:#2c578a;"> 04.07 </div>
<div class="column" onclick="openTab('b4');" style="background:#4c8ab9;"> 05.07 </div>
</div>-->
<!-- Full-width columns: (hidden by default) -->
<!-- <div id="b1" class="containerTab" style="display:none;background:#2c578a"> <span onclick="this.parentElement.style.display='none'" class="closebtn">×</span>
<h5 style="color:#FFFFFF">
<center>Monday - Workshops</center>
</h5>
<p style="color:#FFFFFF"></p>
<center>Please check back soon for more details!</center>
<p></p>
</div>
<div id="b2" class="containerTab" style="display:none;background:#4c8ab9"> <span onclick="this.parentElement.style.display='none'" class="closebtn">×</span>
<h5 style="color:#FFFFFF">
<center>Tuesday - Lectures</center>
</h5>
<p style="color:#FFFFFF"></p>
<center>Keynote lectures: morning - Tomasz Niedzielski, afternoon - Thomas Petzoldt, evening - Artur Suchwałko</center>
<p></p>
</div>
<div id="b3" class="containerTab" style="display:none;background:#2c578a"> <span onclick="this.parentElement.style.display='none'" class="closebtn">×</span>
<h5 style="color:#FFFFFF">
<center>Wednesday - Lectures and lightning talks & MLR lectures and workshops</center>
</h5>
<p style="color:#FFFFFF"></p>
<center>Keynote lectures: morning - Maciej Eder, afternoon - Bernd Bischl, afternoon - Leon Eyrich Jessen</center>
<p></p>
</div>
<div id="b4" class="containerTab" style="display:none;background:#4c8ab9"> <span onclick="this.parentElement.style.display='none'" class="closebtn">×</span>
<h5 style="color:#FFFFFF">
<center>Thursday - Hackathon & Special Interest Groups</center>
</h5>
<p style="color:#FFFFFF"></p>
<center>Please check back soon for more details!</center>
<p></p>
</div>
<script>
function openTab(tabName) {
var i, x;
x = document.getElementsByClassName("containerTab");
for (i = 0; i < x.length; i++) {
x[i].style.display = "none";
}
document.getElementById(tabName).style.display = "block";
}
</script>-->
</header>
<div class="row">
<div class="col-4"><i class="fa fa-laptop" aria-hidden="true"></i>
<h5>Workshops</h5>
<left>2nd of July: R workshops. Additional mlr workshops are on July the 3rd. <a href="https://whyr2018.github.io/workshops/">The list of workshops is already available.</a></left>
</div>
<div class="col-4"><i class="fa fa-university" aria-hidden="true"></i>
<h5>Talks</h5>
<left>July the 3rd and 4th: plenary lectures (30 minutes including questions) and talks (15 minutes including questions) submitted by WhyR participants.</left>
</div>
<div class="col-4"><i class="fa fa-hourglass" aria-hidden="true"></i>
<h5>Hackathon</h5>
<left>July the 5th: hackathon, a collaborative work on the mlr package under the guidance of its developers.</left>
</div>
</div>
<div class="row">
<div class="col-4"><i class="fa fa-line-chart" aria-hidden="true"></i>
<h5>Birds of feather</h5>
<left>July the 5th: spontaneously formed discussion groups. We provide rooms, continous supply of coffee and snacks. You provide topics and enthusiasm.</left>
</div>
<div class="col-4"><i class="fa fa-bullhorn" aria-hidden="true"></i>
<h5>Lightning Talks</h5>
<left>July the 3rd and 4th: two dynamic sessions of short talks (around 5 minutes - no questions).</left>
</div>
<div class="col-4"><i class="fa fa-group" aria-hidden="true"></i>
<h5>Special Interest Groups Session</h5>
<left>July the 5th: meet R users with similar interests and share with them your experience. Topics: Diversity in Data Science, Career-planning in Data Science and Teaching data analysis.</left>
</div>
</div>
</div>
</section>
<section class="highlights post">
<div class="wrapper">
<header>
<h3 style="color:#FFFFFF">HIGHLIGHTS</h3>
</header>
<div class="row">
<div class="col-6 speaker">
<img src="img/people/marta.gif">
<div class="who">
<h5 style="color:#FFFFFF">Marta Karaś</h5>
<p style="color:#FFFFFF">SESSION: R in Natural Sciences / "Strideter: R package for identifying individual's steps from sub-second level accelerometry data of walking" / CONFERENCE ROOM: BIO / DATE: 3.07 at 10:30 - 10:45</p>
</div>
</div>
<div class="col-6 speaker">
<img src="img/guests/norbert.gif">
<div class="who">
<h5 style="color:#FFFFFF">Norbert Krautenbacher</h5>
<p style="color:#FFFFFF">SESSION: Data Analysis / "Correcting for SAMple BIAs with the sambia R package" / CONFERENCE ROOM: ECO / DATE: 4.07 at 15:15 - 15:30</p>
</div>
</div>
</div><div class="row">
<div class="col-6 speaker col-md-6">
<img src="img/guests/bartek.gif">
<div class="who">
<h5 style="color:#FFFFFF">Bartłomiej Kraszewski</h5><p style="color:#FFFFFF">SESSION: R in Natural Sciences / "R in LiFE ForBioSensing remote sensing project" / CONFERENCE ROOM: BIO / DATE: 3.07 at 10:45 - 11:00</p>
</div>
</div><div class="col-6 speaker col-md-6">
<img src="img/guests/bart.gif">
<div class="who">
<h5 style="color:#FFFFFF">Bart Czernicki</h5>
<p style="color:#FFFFFF">SESSION: businessR / "The R language on the Microsoft AI Platform" / CONFERENCE ROOM: BIO / DATE: 4.07 at 15:15 - 15:30</p>
</div>
</div>
</div>
<div class="row">
<div class="col-6 speaker col-md-12">
<img src="img/people/alicja-crop.gif">
<div class="who">
<h5 style="color:#FFFFFF">Alicja Gosiewska</h5>
<p style="color:#FFFFFF">SESSION: Data Analysis / "Auditor: an R package and methodology for validation of any statistical model" / CONFERENCE ROOM: ECO / DATE: 4.07 at 14:30 - 14:45</p>
</div>
</div>
</div>
</div>
</section>
<!-- Sekcja ozdobniczo/przerwynikowa ze zdjęciem miejsca konferencji -->
<section id="Pre-meetings">
<div class="wrapper">
<header>
<h4>Pre-meetings</h4>
<h3>Why R? Pre-meetings</h3>
</header>
</div>
<img src="img/bg/europe2_mapa_kwiecien_light.jpg" alt="PWC" style="width:100%"> </section>
<!-- <div class="owl-carousel owl-theme">
<div class="slider-item">
<img src="img/meetings/copen_car.jpg"> </div>
<div class="slider-item">
<img src="img/meetings/hamb_car.jpg"> </div>
<div class="slider-item">
<img src="img/meetings/waw_car.jpg"> </div>
<div class="slider-item">
<img src="img/meetings/krk_car.jpg"> </div>
<div class="slider-item">
<img src="img/meetings/berlin_car.jpg"> </div>
</div> -->
<header>
<h3>Venue</h3>
</header>
<section id="place" class="place">
<div class="wrapper">
<header>
<h4>Wrocław</h4>
<h4>ul. Piłsudskiego 49-57</h4>
<h4>.</h4>
<h4>Scandic Hotel Wrocław</h4>
<p>With 10 versatile meeting and conference rooms, state-of-the-art meeting technology and individual conference menus, we can organise your event exactly as you want it to be. After your meeting or a bit of sightseeing, visit our restaurant and
bar “My Corner” where you can try local specialities. You can also opt for a workout in our gym, followed by a relaxing moment in the sauna. At the end of the day, enjoy a pleasant night’s sleep in our rooms, done up in classic or modern Scandinavian
design. Scandic Wroclaw is close to tons of popular sights, cosy cafés, theatres, the opera and philharmonic. We offer the perfect starting point for exploring the fascinating labyrinth of bridges and islands that make up this city. In just
10 minutes, you are at the market square in the historical old town or at the train station. Don’t miss out on the Africarium, a complex within Wroclaw Zoo that is unique in the world, dedicated to water-based African species and ecosystems.
The airport is only a 30-minute drive away.</p>
</header>
</div>
</section>
<div class="wrapper"> </div>
<section id="hackaton" class="about post">
<div class="wrapper">
<header>
<h3>Hackaton</h3>
<div class="wrapper">
<header class="">
<p>The WhyR 2018
<a href="https://mlr-org.github.io/">hackathon </a>is a unique event during which you can contribute to the development of the mlr R package under the guidance of its authors. The participation in the hackathon is free for registered attendees of WhyR 2018, but to ensure the
best experience there would be a separate registration for this event.
Take part at the mlr Hackathon and learn how to solve practical machine learning problems easily and elegantly with R and mlr. You will be presented a small but challenging problem that your team of up to 5 people has to solve in a reproducible way. In the sense of open science a concisely documented solution is essential to help fellow R users. mlr is a package that offers a lot to tackle the most common and not so common problems but has a steep learning curve. Present your solution and get published on the mlr website.
After the hackathon we drink beer and discuss results of our work!
<a href="https://mlr-org.github.io/">HACKATON</a>
</p>
<header>
<h3>Special Interest Groups</h3>
</header>
<div class="wrapper">
<header class="">
<p style="color:#black">On the 5th of July we organize meetings of Special Interest Groups, where participants of WhyR 2018 can discuss their experiences in three specific areas:</p>
<div class="row">
<div class="col-4"><i aria-hidden="true"></i>
<h5>Diversity in Data Science</h5>
<p style="color:black">This board aims to inspire members of affinity groups to pursue careers in data science. We hope that this platform for networking and exchange of experiences will help in boosting diversity of R community. This meeting is moderated
by R-Ladies Warsaw. </p>
</div>
<div class="col-4">
<h5>Career-planning in Data Science</h5>
<p style="color:black">During this meeting, participants of WhyR will have a chance to learn from more experienced R enthusiasts about their career paths. This meeting will be moderated by Artur Suchwałko (QuantUp).</p>
</div>
<div class="col-4">
<h5>Teaching Data Science</h5>
<p style="color:black">Data science, as every emerging field, requires constantly evolving set of skills. In any setting, both corporate and academic, teaching data analysis remains a challenge. During this meeting data science practitioners will share their
experiences in introducing their students to basic and advanced concepts of data science. This meeting will be moderated by Leon Eyrich Jessen (Technical University of Denmark) and Stefan Rödiger (Brandenburg Technical University Cottbus-Senftenberg).</p>
</div>
</div>
</header>
<!-- <section id="workshop" class="workshop postL">
<div class="wrapper">
<header>
<h4>Workshops</h4>
<h3>Workshops</h3>
<p>Każdy warsztat trwa 3 godziny. Podczas każdego warsztatu przewidziana jest przerwa (30 minut).</p>
<p>Warsztaty podzielone są wierszami na sesje tematyczne. Pełny spis materiałów dostępny jest
<a href="https://github.com/whyR-conference/warsztaty">tutaj</a>.</p>
</header>
</div>
</section>-->
<!-- <section class="citation">
<div class="wrapper">
<header>
<h3>Co odpowiadają na 'Why R?'</h3>
</header>
<ul class="bxslider">
<div class="citat">
<li><i class="fa fa-cloud" aria-hidden="true"></i>
<p>Nasza cywilizacja generuje niewyobrażalną ilość danych. Trzeba umieć je analizować, szukać w nich wzorców i wiedzy.Czym jak nie ogólnie dostępnym językiem R? A gdzie można wymienić się wiedzą jak nie na Why R 2017?</p>
<div class="autor">
<p>Łukasz Grala, TIDK - Technology Innovation Data Knowledge</p>
</div>
</li>
</div>
<div class="citat">
<li><i class="fa fa-cloud" aria-hidden="true"></i>
<p>Środowisko R to nie tylko program do analizy danych, to przede wszystkim język wspólny dla osób, których celem jest przekazanie całemu światu o czym "szepczą" dane.</p>
<div class="autor">
<p>Emilia Daghir-Wojtkowiak, asystent w Katedrze Biofarmacji I Farmakodynamiki GUMED</p>
</div>
</li>
</div>
<div class="citat">
<li><i class="fa fa-cloud" aria-hidden="true"></i>
<p>Ekosystem R daje natychmiastowy dostęp (CZAS i PIENIĄDZ) do najnowszych algorytmów ML, które mogą dać LEPSZE MODELE od tych, które są dostępne w uznanych platformach komercyjnych, a dodatkowo, jako język ogólnego przeznaczenia, pozwala tworzyć
rozwiązania dla praktycznie DOWOLNEGO problemu biznesowego.</p>
<div class="autor">
<p>Wit Jakuczun, WLOG Solutions</p>
</div>
</li>
</div>
<div class="citat">
<li><i class="fa fa-cloud" aria-hidden="true"></i>
<p>Masz pomysł? Chcesz się podzielić odpowiedzią?</p>
<div class="autor">
<p>Zgłoś się na whyr@mini.pw.edu.pl</p>
</div>
</li>
</div>
</ul>
</div>
</section>-->
<!-- Sekcja zawierająca sposorów -->
<section class="sponsoring" id="sponsoring">
<section id="Sponsoring" class="pre-meetings post">
<div class="wrapper">
<header>
<h4>Support</h4>
<h3>Sponsors</h3>
</header>
<center>
<h5>PLATINUM SPONSORS</h5>
</center>
<div class="sponsors">
<a href="https://www.mckinsey.com/">
<img src="img/sponsors/mckinsey.jpg" alt="McKinsey">
</a><center><a href="https://www.mckinsey.com/">
</a><a href="http://wcb.wroc.pl/pl/">
<img src="img/sponsors/uwr-wcb_1.jpg" alt="WCB"> </a></center><a href="http://wcb.wroc.pl/pl/">
</a><center><a href="http://wcb.wroc.pl/pl/"></a><a href="https://pl.kruk.eu/klienci">
<img src="img/sponsors/kruk.jpg" alt="Kruk"></a></center><a href="https://pl.kruk.eu/klienci">
<div> </div>
</a></div><a href="https://pl.kruk.eu/klienci">
<center>
<header>
<h5>SILVER SPONSORS</h5>
</header>
</center>
</a><div class="sponsors"><a href="https://pl.kruk.eu/klienci">
</a><a href="https://idash.pl/">
<img src="img/sponsors/logo_dst.png" alt="iDash">
</a></div><a href="https://idash.pl/">
<center>
</center>
</a><div class="sponsors"><a href="https://pl.kruk.eu/klienci">
</a><a href="https://idash.pl/">
<img src="img/sponsors/logo_rstudio.png" alt="rstudio">
</a></div><a href="https://www.rstudio.com/">
</a><div class="sponsors"><a href="https://pl.kruk.eu/klienci">
</a><a href="https://idash.pl/">
<img src="img/sponsors/analyx.jpg" alt="analyx">
</a></div><a href="https://analyx.com/">
<center>
<header>
<h5>BRONZE SPONSORS</h5>
</header>
</center>
</a><div class="sponsors"><a href="https://idash.pl/">
</a><a href="https://www.r-consortium.org/">
<img src="img/sponsors/r_conso_1.jpg" alt="R Consorcium">
</a><center><a href="https://www.r-consortium.org/">
</a><a href="http://www.wlogsolutions.com/">
<img src="img/sponsors/wlog.jpg" alt="WLOG Solutions"> </a></center><a href="http://www.wlogsolutions.com/">
</a><center><a href="http://www.wlogsolutions.com/">
</a><a href="https://www.jumpingrivers.com/">
<img src="img/sponsors/jumping_rivers.jpg" alt="Jumping Rivers"> </a></center><a href="https://www.jumpingrivers.com/">
</a><center><a href="http://www.wlogsolutions.com/">
</a><a href="https://www.pearson.com/">
<img src="img/sponsors/pearson.jpg" alt="Pearson"> </a></center><a href="https://ioki.pl/en/">
</a></div><a href="https://www.jumpingrivers.com/">
</a></div><a href="https://www.jumpingrivers.com/">
</a></section><a href="https://www.jumpingrivers.com/">
<!-- Sekcja poświęcona organizatorom -->
</a><section id="organizators" class="organizators post"><a href="https://www.jumpingrivers.com/">
</a><div class="wrapper"><a href="https://www.jumpingrivers.com/">
</a><header><a href="https://www.jumpingrivers.com/">
<header>
<h4>Organising</h4>
<h3>Organising Committee</h3>
</header>
</a><div class="galeria"><a href="https://www.jumpingrivers.com/">
</a><div class="photo_container"><a href="https://www.jumpingrivers.com/">
<figure class="photo">
<img src="img/people/Michal_kolko3.gif" alt="Michał Burdukiewicz"> </figure>
</a><div class="description"><a href="https://www.jumpingrivers.com/">
<p>Michał Burdukiewicz</p>
<p id="lider">GENERAL CHAIR</p>
</a><a href="https://www.researchgate.net/profile/Michal_Burdukiewicz" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a href="https://github.com/michbur" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/marcin-crop.gif" alt="Marcin Kosiński"> </figure>
<div class="description">
<p>Marcin Kosiński</p>
<a href="https://www.linkedin.com/in/marcin-kosiński-81435aab" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
<a href="http://r-addict.com/" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a href="https://github.com/MarcinKosinski/" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/stefan.gif" alt="Stefan Rödiger"> </figure>
<div class="description">
<p>Stefan Rödiger</p>
<a href="https://www.researchgate.net/profile/Stefan_Roediger" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a href="https://github.com/devsjr" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a>
<!--<a href="https://www.linkedin.com/in/stefan-r%C3%B6diger-699aab130/" target="_blank"></a><i class="fa fa-linkedin-square" aria-hidden="true"></i>-->
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/alicja_kolko.gif" alt="Alicja Gosiewska"> </figure>
<div class="description">
<p>Alicja Gosiewska</p>
<a href="https://github.com/agosiewska" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a>
<a href="https://pl.linkedin.com/in/alicja-gosiewska" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
<!--<a href="https://www.linkedin.com/in/stefan-r%C3%B6diger-699aab130/" target="_blank"></a><i class="fa fa-linkedin-square" aria-hidden="true"></i>-->
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/aleksandra-crop.gif" alt="Aleksandra Grudziąż"> </figure>
<div class="description">
<p>Aleksandra Grudziąż</p>
<a href="https://pl.linkedin.com/in/aleksandra-grudzi%C4%85%C5%BC-037700149" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/grosser.gif" alt="Malte Grosser"> </figure>
<div class="description">
<p>Malte Grosser</p>
<a href="https://www.researchgate.net/profile/Malte_Grosser" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a href="https://github.com/Tazinho" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/in/malte-grosser-111167154" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/andrej.gif" alt="Andrej-Nikolai Spiess"> </figure>
<div class="description">
<p>Andrej - Nikolai Spiess</p>
<a href="https://github.com/anspiess" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a>
<a href="https://www.researchgate.net/profile/Andrej-Nikolai_Spiess" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/przemek.gif" alt="Przemysław Gagat"> </figure>
<div class="description">
<p>Przemysław Gagat</p>
<a href="https://www.researchgate.net/profile/Przemyslaw_Gagat" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/joanna2.gif" alt="Joanna Szyda"> </figure>
<div class="description">
<p>Joanna Szyda</p>
<a href="https://www.researchgate.net/profile/Joanna_Szyda" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/mackiewicz.gif" alt="Paweł Mackiewicz"> </figure>
<div class="description">
<p>Paweł Mackiewicz</p>
<a href="https://www.researchgate.net/profile/Pawel_Mackiewicz" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/bartosz-crop.gif" alt="Bartosz Sękiewicz"> </figure>
<div class="description">
<p>Bartosz Sękiewicz</p>
<a href="https://www.linkedin.com/in/bsekiewicz" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
<a href="https://github.com/bsekiewicz" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/przemek-crop.gif" alt="Przemysław Biecek"> </figure>
<div class="description">
<p>Przemysław Biecek</p>
<a href="https://pl.linkedin.com/in/przemyslaw-biecek-5b41761" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
<a href="https://www.researchgate.net/profile/Przemyslaw_Biecek" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a href="http://github.com/pbiecek/" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a>
<a href="https://twitter.com/smarterpoland" target="_blank"><i class="fa fa-twitter-square" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/piotr.gif" alt="Piotr Sobczyk"> </figure>
<div class="description">
<p>Piotr Sobczyk</p>
<a href="https://pl.linkedin.com/in/psobczyk" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
<a href="https://www.researchgate.net/profile/Przemyslaw_Biecek" target="_blank"></a>
<a href="https://github.com/psobczyk" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a>
<a href="https://twitter.com/smarterpoland" target="_blank"></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/marta.gif" alt="Marta Karas"> </figure>
<div class="description">
<p>Marta Karaś</p>
<a href="https://pl.linkedin.com/in/martakaras" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
<a href="https://twitter.com/martakarass" target="_blank"><i class="fa fa-twitter-square" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/Krzystanek.gif" alt="Marcin Krzystanek"> </figure>
<div class="description">
<p>Marcin Krzystanek</p>
<a href="https://www.researchgate.net/scientific-contributions/2004402501_Marcin_Krzystanek" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a href="https://pl.linkedin.com/in/mkrzystanek" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/lukaszewicz.gif" alt="Marcin Łukaszewicz"> </figure>
<div class="description">
<p>Marcin Łukaszewicz</p>
<a href="https://pl.linkedin.com/in/marcin-lukaszewicz-36b5bba0" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
<a href="https://www.researchgate.net/profile/Marcin_Lukaszewicz" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/Agnieszka.gif" alt="Agnieszka Borsuk-De Moor"> </figure>
<div class="description">
<p>Agnieszka Borsuk - De Moor</p>
<a href="https://pl.linkedin.com/in/agnieszka-borsuk-de-moor-84121986" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
<a href="https://www.researchgate.net/profile/Agnieszka_Borsuk-De_Moor" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/guests/chilimoniuk.gif" alt="Jarosław Chilimoniuk"> </figure>
<div class="description">
<p>Jarosław Chilimoniuk</p>
<a href="https://www.researchgate.net/profile/Jaroslaw_Chilimoniuk" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/mmaj.gif" alt="Michał Maj"> </figure>
<div class="description">
<p>Michał Maj</p>
<a href="https://pl.linkedin.com/in/michal-maj116" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/kurtys.gif" alt="Michał Kurtys"> </figure>
<div class="description">
<p>Michał Kurtys</p>
<a href="https://www.linkedin.com/in/micha%C5%82-kurtys-466325146" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
</div>
</div>
</header>
</div>
<h3>Scientific Committee</h3>
</section></section></div></header>
<div class="galeria"><a href="https://www.jumpingrivers.com/">
</a>
<div class="photo_container">
<figure class="photo">
<img src="img/people/adolfo-crop.gif" alt="Adolpho Alvarez"> </figure>
<div class="description">
<p>Adolpho Alvarez</p>
<a href="https://pl.linkedin.com/in/adolfoalvarez" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/mbogdan_kolko.gif" alt="Małgorzata Bodgan"> </figure>
<div class="description">
<p>Małgorzata Bodgan</p>
<a href="https://pl.linkedin.com/in/malgorzata-bogdan-95385510" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
<a href="https://www.researchgate.net/profile/Matgorzata_Bogdan" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/guests/melcer.gif" alt="Tomasz Melcer"> </figure>
<div class="description">
<p>Tomasz Melcer</p>
<a href="http://quantup.pl/Wykladowcy/tomasz-melcer/" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div></header>
</div>
</section>
<!-- Loga organiztorów -->
<section id="org" class="pre-meetings post">
<div class="wrapper">
<header>
<h4>Whyr R? Foundation</h4>
</header>
</div>
<a href="http://whyr.pl">
</a><center><a href="http://whyr.pl"> <img src="img/log_eng_nastrone.jpg" alt="PWC" style="width:70%"> </a></center>
</section>
<!-- Partnerzy społecznościowi || poniżej wstaw link do stron partnerów, przyszykowałem już znaczniki <a> z pustym href=""-->
<section class="partners-postR">
<div class="wrapper">
<header></header>
</div>
</section>
<section id="org" class="pre-meetings post">
<div class="wrapper">
<header>
<h4>Partners</h4>
<div class="wrapper">
<header></header>
<div class="row">
<div class="col-4">
<p>
<a href="https://www.meetup.com/pl-PL/Wroclaw-R-Users-Group/">
<img src="img/logos/stwur3.jpg" alt="STWUR" style="width:50%"> </a>
</p>
</div>
<div class="col-4">
<p>
<img src="img/logos/dknb2.jpg" alt="DKNB" style="width:50%"> </p>
</div>
<div class="col-4">
<p>
<a href="http://wser.pl/">
<img src="img/logos/wser6.jpg" alt="WSER" style="width:50%"> </a>
</p>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<p>
<a href="https://www.meetup.com/pl-PL/Trojmiejska-Grupa-Entuzjastow-R/">
<img src="img/logos/triger2.jpg" alt="TRIGER" style="width:50%"> </a>
</p>
</div>
<div class="col-4 col-md-2">
<p>
<a href="https://www.meetup.com/pl-PL/erkakrakow/">
<img src="img/logos/erka2.jpg" alt="ERKA" style="width:50%"> </a>
</p>
</div>
<div class="col-4 col-md-2">
<p>
<a href="https://www.meetup.com/pl-PL/Berlin-R-Users-Group/">
<img src="img/logos/brug.jpg" alt="BRUG" style="width:50%"> </a>
</p>
</div>
<div class="col-4 col-md-2">
<p>
<a href="https://dssconf.pl/">
<img src="img/logos/dss.jpg" alt="DATA SCIENCE SUMMIT" style="width:50%"> </a>
</p>
</div><div class="col-4 col-md-2">
<p>
<a href="https://www.meetup.com/de-DE/Applied-R-Munich/">
<img src="img/logos/rmunich.jpg" alt="RMUNICH" style="width:50%"> </a>
</p>
</div><div class="col-4 col-md-2">
<p>
</p><p>
<a href="https://www.meetup.com/pl-PL/Hamburg-R-User-Group/">
<img src="img/logos/rusershamburg.jpg" alt="R USERS HAMBURG" style="width:50%"> </a>
</p>
</div>
<div class="col-4 col-md-2">
<p>
</p>
</div>
<div class="col-4 col-md-2">
<p>
<a href="https://www.meetup.com/pl-PL/Berlin-R-Users-Group/"></a>
</p>
</div>
<div class="col-4 col-md-2">
</div>
<!-- <center>
<a href="http://www.math.uni.wroc.pl">
<img src="img/logos/matma.jpg" alt="Instytut Matematyczny" style="width:50%"> </a>
</center>-->
</div><div class="row">
<div class="col-4 col-md-1">
<p>
<a href="https://rladies.org/ladies-complete-list/locality/Warsaw/">
<img src="img/logos/rladies.jpg" alt="MI" style="width:50%">
</a></p><a href="https://rladies.org/ladies-complete-list/locality/Warsaw/">
</a></div><div class="col-4 col-md-1"><a href="https://rladies.org/ladies-complete-list/locality/Warsaw/">
<p>
<img src="img/logos/mi.jpg" alt="MI" style="width:50%">