-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1140 lines (1060 loc) · 49.4 KB
/
index.html
File metadata and controls
1140 lines (1060 loc) · 49.4 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? 2019 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? 2019: 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/foundation/#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="#workshop" class="link">Workshops</a>
</li>
<li>
<a href="http://whyr.pl/foundation/2019/hackathon/" class="link">Hackathon</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">Organizers</a>
</li>
<li>
<a href="http://whyr.pl/2019/coc/" class="link">Code of conduct</a>
</li>
</ul>
</nav>
</div>
<!-- / Main-menu -->
</div>
<div class="register-bar">
<!-- <a href="http://whyr.pl/2019/submit/">Submit your abstract</a> -->
<a href="https://join.slack.com/t/whyr/shared_invite/enQtNzcwMjExODk0NzM3LTRkMjhkYzliYzc5MGJhMzRlMzc1YzM0ZWJmNjM4MGNmMmM0MzYzZWJjYjhkZWM4ODA3MGY4MTUwNmJhMGNjNmY">Join Slack</a>
<!-- <a href="http://whyr.pl/2019/submit/">Submit your abstract</a> -->
<a href="https://github.com/WhyR2019/presentations">Slides</a>
</div>
<div class="first-title">
<!-- <h2>Conference</h2>
<h1>Why R?</h1>
<h3>Warsaw, 26-29 September 2019</h3> -->
</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? 2019 Conference</h3>
</header>
<p> We are pleased to announce that Why R? 2019 Conference will be organized by the Why R? Foundation. The third official meeting of Polish R enthusiasts will be held in Warsaw 26-29 September 2019. 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>,
<a href="https://twitter.com/whyRconf" target="_blank">Twitter</a> and <a href="https://www.linkedin.com/company/why-r" target="_blank">LinkedIn</a>.</h5>
<h5>If you have any questions feel free to contact
<a href="mailto:kontakt@whyr.pl">us</a>!</h5>
<h5><a href="https://whyr.pl/2017/movie/">After movie from 2017 </a><br><a href="https://whyr.pl/2018/movie/"> After movie from 2018</a></h5>
</header>
<header></header>
<header>
<div class="wrapper">
<header>
<h4>Programme</h4>
</header>
</div>
<img src="img/bg/programme.png" style="width:120%">
<!--
<img src="img/bg/timeline.png" style="width:100%">
<div class="wrapper">
<div class="row">
<div class="column">
<header>
<h3>FEE TYPE</h3>
</header>
</div>
<div class="column">
<header>
<h3>EARLY</h3>
</header>
<p>Till 31.05.2019</p>
</div>
<div class="column">
<header>
<h3>REGULAR</h3>
</header>
<p>01.06.2019-31.08.2019</p>
</div>
<div class="column">
<header>
<h3>LATE</h3>
</header>
<p>01.09.2019-22.09.2019</p>
</div>
</div>
<div class="row">
<div class="column">
<p>REGULAR (ONLY CONFERENCE)</p>
</div>
<div class="column">
</div>
<div class="column">
</div>
<div class="column">
</div>
</div>
<div class="row">
<div class="column">
<p>STUDENT (ONLY CONFERENCE)</p>
</div>
<div class="column">
</div>
<div class="column">
</div>
<div class="column">
</div>
</div>
<div class="row">
<div class="column">
<p>REGULAR (CONFERENCE AND WORKSHOPS)</p>
</div>
<div class="column">
</div>
<div class="column">
</div>
<div class="column">
</div>
</div>
<div class="row">
<div class="column">
<p>STUDENT (CONFERENCE AND WORKSHOPS)</p>
</div>
<div class="column">
</div>
<div class="column">
</div>
<div class="column">
</div>
</div>
</div>
<div class="wrapper">
<header class="">
<h3>CALLS:</h3>
<h5>04.04.2019: ALL CALLS OPEN</h5>
<h5>31.05.2019: WORKSHOP CALL CLOSES</h5>
<h5>05.07.2019: PRESENTATION CALLS 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="http://whyr.pl/2019/submit/">is available here</a>.</b></p>
-->
</header>
</b></div><b>
</b></section><b>
<!-- Sekcja o mówcach -->
<section id="speakers" class="speakers post">
<div class="wrapper">
<header>
<h3 style="color:#FFFFFF">KEYNOTE SPEAKERS</h3>
</header>
<div class="row">
<div class="col-6 speaker">
<img src="img/guests/steph_crop.gif">
<div class="who">
<h5 style="color:#FFFFFF">Steph Locke</h5>
<p class="job" style="color:#FFFFFF">
<a href="https://www.linkedin.com/in/stephanielocke/"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
<a href="https://github.com/stephlocke" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a>
Principal Consultant (GBR) | Locke Data</p>
</div>
</div>
<div class="col-6 speaker">
<img src="img/guests/jakub_crop.gif">
<div class="who">
<h5 style="color:#FFFFFF">Jakub Nowosad</h5>
<p class="job" style="color:#FFFFFF">
<a href="https://nowosad.github.io/" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a href="https://twitter.com/jakub_nowosad" target="_blank"><i class="fa fa-twitter" aria-hidden="true"></i></a>
<a href="https://github.com/Nowosad" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a>
Institute of Geoecology and Geoinformation, <br> Adam Mickiewicz University</p>
</div>
</div>
</div>
<div class="row">
<div class="col-6 speaker">
<img src="img/guests/marvin_crop.gif">
<div class="who">
<h5 style="color:#FFFFFF">Marvin Wright</h5>
<p class="job" style="color:#FFFFFF">
<a href="https://www.researchgate.net/profile/Marvin_Wright2" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
Leibniz Institute for Prevention Research <br> and Epidemiology</p>
</div>
</div>
<div class="col-6 speaker">
<img src="img/guests/sigrid_crop.gif">
<div class="who">
<h5 style="color:#FFFFFF">Sigrid Keydana</h5>
<p class="job" style="color:#FFFFFF">
<a href="https://www.linkedin.com/in/sigrid-keydana-9a16b410/" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
Applied Researcher at RStudio</p>
</div>
</div>
</div>
<div class="row">
<div class="col-6 speaker">
<img src="img/guests/paula_crop.gif">
<div class="who">
<h5 style="color:#FFFFFF">Paula Brito</h5>
<p class="job" style="color:#FFFFFF">
<a href="https://www.researchgate.net/profile/Paula_Brito2" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
Faculty of Economics, University of Porto</p>
</div>
</div>
<div class="col-6 speaker">
<img src="img/guests/wit2019_crop.gif">
<div class="who">
<h5 style="color:#FFFFFF">Wit Jakuczun</h5>
<p class="job" style="color:#FFFFFF">
<a href="https://www.wlogsolutions.com/" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i></a>
<a href="https://www.linkedin.com/in/jakuczunwit" target="_blank"><i class="fa fa-linkedin" aria-hidden="true"></i></a>
WLOG Solutions</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>
</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>
<left><a href="http://whyr.pl/2019/plan">Find the conference plan here.</a></left>
<img src="img/2019/agenda.jpg" alt="agenda" />
<img src="img/bg/programme2.png" 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 growth with R and Teaching data analysis.</left>
</div>
</div>-->
</div>
</section>
<section class="highlights post">
<div class="wrapper">
<header>
<h3>Invited Speakers</h3>
</header>
<div class="galeria">
<div class="photo_container">
<figure class="photo">
<img src="img/guests/leon_kolko.gif">
<div class="description">
<p>Leon Eyrich Jessen </p>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/people/olga-crop.gif">
<div class="description">
<p>Olga Mierzwa-Sulima</p>
</div>
</div>
<div class="photo_container">
<figure class="photo">
<img src="img/guests/artur.png">
<div class="description">
<p>Artur Suchwałko</p>
</div>
</div>
</div>
</div>
</section>
<section id="Pre-meetings">
<div class="wrapper">
<header>
<h4>Pre-meetings</h4>
<h3>Why R? Pre-meetings</h3>
</header>
<img src="img/bg/europa_whyr2019_bauchi.jpg" alt="pre-meetings">
</div>
</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> -->
<section id="place" class="place">
<div class="wrapper">
<header>
<h3>Venue</h3>
<h4>Faculty of Economic Sciences, University of Warsaw</h4>
<h4>Długa 44/50, Warsaw, Poland</h4>
<p>Faculty of Economic Sciences at, University of Warsaw is an elite unit that educates an overall of 2000 students each year. Its educational offer is rich and diverse, and includes undergraduate, graduate and doctoral studies in economics and finance. Our programmes cover subjects falling within the domain of modern economic with compliance to high European standards. A recent evaluation of scientific institutes in Poland by the Ministry of Science and Higher Education has once again attested to the Faculty’s excellence in the field of economics in Poland that was awarded the top evaluation of A+.</p>
<p>The Faculty runs more than sixty national and international research projects, funded by, among others, the European Union, the National Centre for Research and Development, the National Science Centre, and the Ministry of Science and Higher Education. The projects range from behavioral economics to macroeconomic modeling. Faculty members consistently produce quality research output, much of it published in prestigious international journals and leading Polish journals. </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. The exact details will be available in May.</p>-->
<header>
<h4>Recommended Hotel</h4>
<h3><a href="https://www.accorhotels.com/pl/hotel-2894-ibis-warszawa-centrum/index.shtml">Ibis Warszawa Centrum</a></h3>
<p>al. Solidarności 165, 00-876 Warsaw</p>
</header>
<header>
<h4>Special Interest Groups</h4>
<h3>DATA SCIENCE ROUND TABLES</h3>
</header>
<div class="wrapper">
<header class="">
<p style="color:#black">On the 27th of September we organize meetings of Special Interest Groups, <br>where participants of WhyR 2019 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 will reduce the diversity of R community. Moderator: Barbara Sobkowiak.</p>
</div>
<div class="col-4">
<h5>Career-planning in Data Science</h5>
<p style="color:black">Participants of WhyR will have a chance to learn from more experienced R enthusiasts about their career paths. Moderator: Kamil Kosiński.</p>
</div>
<div class="col-4">
<h5>Teaching Data Science</h5>
<p style="color:black">Practitioners will share their
experiences in introducing their students to basic and advanced concepts of data science. Moderator: Leon Eyrich Jessen.</p>
</div>
</div>
<div class="row">
<div class="col-4"><i aria-hidden="true"></i>
<h5>Data Visualizations</h5>
<p style="color:black">Discuss data visualizations good practices and approaches to various presentation challenges. Moderator: Michał Burdukiewicz.</p>
</div>
<div class="col-4"><i aria-hidden="true"></i>
<h5></h5>
<p style="color:black"></p>
</div>
<div class="col-4">
<h5>Ethics in Data Science</h5>
<p style="color:black">With the increased importance of machine learning, we are becoming more and more concerned about the ethics of data science. Moderator: Steph Locke.</p>
</div>
</div>
</header>
<section id="hackathon">
<div class="wrapper">
<header>
<h4>Data Visualizations</h4>
<h3>HACKATHON</h3>
<p>
For details <a href="https://whyr.pl/foundation/2019/hackathon/">see hackathon's website!</a>
Deadline for the registration is 13th September (end of day).!
<img src="img/plakat_hackathon2.jpg" alt="hackathon">
</p>
</header>
</div>
</section>
<section id="workshop" class="workshop postL">
<div class="wrapper">
<header>
<h4>Planned for Friday, 27th September</h4>
<h3>Workshops</h3>
<p>Each workshop takes around 3 hours and happens in the morning or afternoon session.</p>
<p>The description of proposed workshops can be found <a href="https://github.com/WhyR2019/workshops">here</a>.</p>
</header>
<div class="row works-head">
<div class="col-6"><h3>Morning (9:00-12:30)</h3></div>
<div class="col-6"><h3>Afternoon (14:00-17:30)</h3></div>
</div>
<div class="row">
<div class="col-12">
<div class="work-content">
<img src="img/workshops/matteo-crop.gif" alt="matteo">
<h4>ALL DAY INVITED WORKSHOP</h4>
<h4>Introduction to modern </h4>
<h4>Generalized Additive Models in R (with mgcv)</h4>
<p>Matteo Fasiolo</p>
<p><a href="http://www.bristol.ac.uk/maths/people/matteo-fasiolo/overview.html">University of Bristol</a></p>
</div>
</div>
</div>
<div class="row">
<div class="col-6">
<div class="work-content">
<img src="img/guests/rdatatable.png" alt="Jan Gorecki">
<h4>data.table</h4>
<h4>introduction & time-series</h4>
<p>Jan Gorecki</p>
<p><a href="https://www.h2o.ai/">H2O.AI</a></p>
</div>
</div>
<div class="col-6">
<div class="work-content">
<img src="img/workshops/idash-crop.gif" alt="iDash">
<h4>Straightforward introduction to</h4>
<h4>Deep Learning in R (with Keras)</h4>
<p>Mikołaj Bogucki, Mikołaj Olszewski</p>
<p><a href="https://idash.pl/">iDash </a></p>
</div>
</div>
</div>
<div class="col-6">
<div class="work-content">
<img src="img/logos/mi2datalab.jpg" alt="MI2 Data Lab">
<h4>auditor + DALEX: a powerful duet for validation and explanation of machine learning models</h4>
<p>Alicja Gosiewska, Tomasz Mikołajczyk</p>
<p><a href="https://mi2-warsaw.github.io/">MI2 Data Lab</a></p>
</div>
</div>
<div class="col-6">
<div class="work-content">
<img src="img/guests/mch_crop.gif" alt="nikt">
<h4>Black is the new White - using eXplainable Artificial Intelligence in Business</h4>
<p>Marcin Chlebus</p>
<p><a href="https://www.wne.uw.edu.pl/">Faculty of Economic Sciences, University of Warsaw</a>, Data Juice Lab, Data Dontus</p>
</div>
</div>
</div>
<div class="row">
<div class="col-6">
<div class="work-content">
<img src="img/sponsors/jumping_rivers_circle.jpg" alt="Jumping Rivers">
<h4>Shiny Basics</h4>
<p>Theo Roe</p>
<p><a href="https://www.jumpingrivers.com/">Jumping Rivers</a></p>
</div>
</div>
<div class="col-6">
<div class="work-content">
<img src="img/guests/Piotr_crop.gif" alt="Piotr Wojcik">
<h4>Speeding up R wih C++ (Rcpp)</h4>
<h4>- from basics to more advanced applications</h4>
<p>Piotr Wójcik, <a href="https://www.wne.uw.edu.pl/">Faculty of Economic Sciences, University of Warsaw</a>, Data Science Lab</p>
</div>
</div>
</div>
<div class="row">
<div class="col-6">
<div class="work-content">
<img src="img/logos/mlr.png" alt="mlr">
<h4>Machine Learning Pipelines and Reproducible Research with mlr3 and drake</h4>
<p>Jakob Richter, <a href="https://www.tu-dortmund.de/en/">TU Dortmund University</a> and Patrick Schratz, <a href="https://www.en.uni-muenchen.de/">LMU Munich</a></p>
</div>
</div>
<div class="col-6">
<div class="work-content">
<img src="img/guests/jakub_crop.gif" alt="spatial">
<h4>Basics of spatial data analysis</h4>
<p>Jakub Nowosad, <a href="https://amu.edu.pl/en">Adam Mickiewicz University, Poznan</a></p>
</div>
</div>
</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="partners-postR" id="sponsoring">
<div class="wrapper">
<header>
<h4>Could not happen without the support of sponsors!</h4>
<h3>Sponsors</h3>
</header>
<center>
<header>
<h5>SILVER SPONSORS</h5>
</header>
</center>
<div class="row">
<div class="col-4 col-md-2">
<p>
<a href="https://www.pwc.pl/">
<img src="img/sponsors/logoPwC_bigger.jpg" alt="PwC">
</a>
</p>
</div>
<div class="col-4 col-md-2">
<p>
<a href="https://idash.pl/">
<img src="img/sponsors/logo_dst.png" alt="iDash">
</a>
</p>
</div>
<div class="col-4 col-md-2">
<p>
<a href="https://www.jumpingrivers.com/">
<img src="img/sponsors/jumping_rivers_circle.jpg" alt="Jumping Rivers">
</a>
</p>
</div>
</div>
<div class="row">
<div class="col-4 col-md-2">
<p>
<a href="http://analyx.com/en/">
<img src="img/sponsors/analyx.png" alt="Analyx">
</a>
</p>
</div>
<div class="col-4 col-md-2">
<p>
<a href="https://appsilon.com/">
<img src="img/sponsors/appsilon.png" alt="Appsilon">
</a>
</p>
</div>
</div>
<center>
<header>
<h5>BRONZE SPONSORS</h5>
</header>
</center>
<div class="row">
<div class="col-4 col-md-2">
<p>
<a href="https://www.r-consortium.org/">
<img src="img/sponsors/r_conso_1.jpg" alt="R Consorcium">
</a>
</p>
</div>
<div class="col-4 col-md-2">
<p>
<a href="https://www.rstudio.com/">
<img src="img/sponsors/logo_rstudio.png" alt="rstudio">
</a>
</p>
</div>
<div class="col-4 col-md-2">
<p>
<a href="https://www.pearson.pl/">
<img src="img/sponsors/pearson.png" alt="pearson">
</a>
</p>
</div>
</div>
<center>
<header>
<h5>VIOLET SPONSORS</h5>
</header>
</center>
<div class="sponsors">
<a href="https://www.wlogsolutions.com/">
<img src="img/sponsors/wlog.jpg" alt="WLOG">
</a>
</div>
</div>
</section>
<!-- Sekcja poświęcona organizatorom -->
<section id="organizators" class="organizators post">
<div class="wrapper">
<header>
<header>
<h4>Bringing the event!</h4>
<h3>Organizers</h3>
</header>
<div class="galeria">
<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>
<p id="lider">Project Leader</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/Michal_kolko3.gif" alt="Michał Burdukiewicz"> </figure>
<div class="description">
<p>Michał Burdukiewicz</p>
<p id="lider">Scientific Programme Officer</p>
<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/klaudia-crop.gif" alt="Klaudia Korniluk"> </figure>
<div class="description">
<p>Klaudia Korniluk</p>
<p id="lider">Design Manager</p>
<a href="https://www.facebook.com/pedzlenie" target="_blank"><i class="fa fa-facebook" 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>
<p id="lider">Logistics Manager</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>
</header>
</div>
<div class="wrapper">
<header>
<h3>Scientific Committee</h3>
</header>
<div class="galeria">
<div class="photo_container">
<figure class="photo">
<img src="img/guests/Bischl_kolko.gif" alt="Bernd Bischl"> </figure>
<div class="description">
<p>Bernd Bischl</p>
<a href="https://www.researchgate.net/profile/Bernd_Bischl" 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/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/guests/Piotr_crop.gif" alt="Piotr Wójcik"> </figure>
<div class="description">
<p>Piotr Wójcik</p>
<a href="https://www.linkedin.com/in/pwojcik/" target="_blank"><i class="fa fa-linkedin-square" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Loga organiztorów -->
<section id="org">
<div class="wrapper">
<header>
<h3>ORGANIZATIONS</h3>
</header>
<div class="row">
<div class="col-4 col-md-2">
<p>
<a href="https://www.wne.uw.edu.pl/en/">
<img src="img/logos/wne_pion.jpg" alt="WNE" > </a>
</p>
</div>
<div class="col-4 col-md-2">
<p>
<a href="http://whyr.pl">
<img src="img/log_eng_nastrone_kwadrat.jpg" alt="Foundation"> </a>
</p>
</div>
<div class="col-4 col-md-2">
<p>
<center>
<a href="http://plinml.org">
<img src="img/logos/plinml.png" alt="Stowarzyszenie" style="width:60%"> </a>
</center>
</p>
</div>
</div>
</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>
<h3>Partners</h3>
<div class="wrapper">
</header>
<div class="row">
<div class="col-4 col-md-2">
<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 col-md-2">
<p>
<a href="http://wser.pl/">
<img src="img/logos/wser6.jpg" alt="WSER" style="width:50%"> </a>
</p>
</div>
<div class="col-4 col-md-2">
<p>