-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1074 lines (931 loc) · 62.1 KB
/
index.html
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>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<title>eRum 2016 - european R users meeting</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="description" content="european R user meeting 2016 in Poznan">
<meta name="author" content="lukasz">
<!-- viewport settings -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- CSS -->
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/jquery.countdown.css">
<link rel="stylesheet" href="css/magnific-popup.css">
<link rel="stylesheet" href="css/flipCard.css">
<link rel="stylesheet" href="css/owl.carousel.css">
<link rel="stylesheet" href="css/owl.theme.css">
<link rel="stylesheet" href="css/social.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/color/blue.css">
<!-- Choose your color, green, blue, yellow, red, darkblue, purple -->
<!-- <link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css">-->
<link rel="stylesheet" href="css/table.css">
<!-- Font -->
<link href='http://fonts.googleapis.com/css?family=Economica:400,700' rel='stylesheet' type='text/css'>
<!-- Favicon -->
<link rel="shortcut icon" href="img/favicon.ico">
</head>
<body>
<!-- PRELOADING -->
<div id="preload">
<div class="preload">
<div class="loader">
Loading...
</div>
</div>
</div>
<!-- NAVIGATION -->
<nav class="navbar navbar-fixed-top navbar-custom" role="navigation">
<!-- We use the fluid option here to avoid overriding the fixed width of a normal container within the narrow content columns. -->
<div class="container">
<div data-scroll-header class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#nav">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- <a class="navbar-brand" href="index.html"><img src="img/logo.png" alt="logo"></a>-->
<!-- <a class="navbar-brand" href="index.html"><img src="img/logo_erum_male.png" alt="logo"></a>-->
<h2><a class="navbar-brand" href="index.html">eRum 2016<br>meeting of R heroes</a></h2>
</div>
<div class="collapse navbar-collapse" id="nav">
<ul class="nav navbar-nav navbar-right uppercase">
<li><a data-scroll href="#overview">Overview</a></li>
<li><a data-scroll href="#speakers">Speakers</a></li>
<li><a data-scroll href="#schedule">Program</a></li>
<!-- <li><a data-scroll href="#workshops">Dates</a></li>-->
<li><a data-scroll href="#register">Presentations</a></li>
<li><a data-scroll href="#sponsors">Sponsors</a></li>
<li><a data-scroll href="#venue">Venues</a></li>
<li><a data-scroll href="#faq-gallery">Photos</a></li>
<li><a data-scroll href="#contact">Contact</a></li>
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
</nav>
<!-- TOP -->
<section id="top" data-stellar-background-ratio="0.5">
<div class="countdown">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h1>eRum 2016</h1>
<h2>european R users meeting</h2>
<h3>October 12-14, 2016 in Poznan, Poland</h3>
</div>
</div>
</div>
</div>
</section>
<!-- OVERVIEW -->
<section id="overview">
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1 text-center">
<i class="fa fa-4x fa-globe"></i>
<h2 class="uppercase">about conference</h2>
<p class="lead">European R users meeting (eRum) was an international conference that aimed at integrating users of the R language. eRum 2016 was a good chance to exchange experiences, broaden knowledge on R and collaborate.</p>
</div>
<!-- MILESTONE -->
<div id="milestone">
<div class="col-lg-8 col-lg-offset-2 text-center">
<!-- <div class="col-lg-10 col-lg-offset-2 text-center">-->
<div class="row">
<div class="fact col-xs-6 col-md-3 col-lg-3">
<p id="google-count" class="timer" data-speed="10000"></p>
<i class="fa fa-2x fa-users"></i>
<p>registered
<br>participants</p>
</div>
<div class="fact col-xs-6 col-md-3 col-lg-3">
<p class="timer" data-to="16" data-speed="10000"></p>
<i class="fa fa-2x fa-clock-o"></i>
<p>hours</p>
</div>
<div class="fact col-xs-6 col-md-3 col-lg-3">
<p class="timer" data-to="20" data-speed="10000"></p>
<i class="fa fa-2x fa-power-off"></i>
<p>sessions</p>
</div>
<div class="fact col-xs-6 col-md-3 col-lg-3">
<p class="timer" data-to="82" data-speed="10000"></p>
<i class="fa fa-2x fa-microphone"></i>
<p>speakers</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- NEWS -->
<!--
<section id="testimonial">
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<h2 class="uppercase text-center">what's new</h2>
<ul>
<li><span>22/09/2016</span>
<br>Next sponsors of eRum 2016! We are happy to welcome <a href="http://www.quantide.com/" target="_blank">Quantide</a> and <a href="http://www.rstudio.com/" target="_blank">RStudio</a> as our new sponsors.</li>
<li><span>29/08/2016</span>
<br>Meet our platinum sponsor: <a href="http://www.mckinsey.com/business-functions/mckinsey-analytics/our-insights" target="_blank">McKinsey</a> is a leading international management consulting firm with more than 100 offices in over 60 countries.</li>
<li><span>25/08/2016</span>
<br>We are happy to welcome <a href="http://www.analyx.com/" target="_blank">Analyx</a> as our new sponsor!</li>
<li><span>22/06/2016</span>
<br>Next sponsor of eRum 2016! <a href="http://www.wlogsolutions.com/" target="_blank">WLOG Solutions</a> is a bronze sponsor.</li>
<li><span>10/06/2016</span>
<br><a href="https://www.eoda.de/en/" target="blank">Eoda</a> is a silver sponsor of eRum 2016.</li>
<li><span>04/05/2016</span>
<br>DataCamp is a bronze sponsor of eRum 2016! Visit their website <a href="https://www.datacamp.com/" target="_blank">datacamp.com</a>, where you can learn data science online.</li>
<li><span>29/04/2016</span>
<br>Call for papers begins - submit your abstract until 15 June 2016. Present your research and share your R experience.</li>
<li><span>25/04/2016</span>
<br>Registration for workshops is now open. You can choose between ten high quality workshops.</li>
</ul>
</div>
</div>
</div>
</section>
-->
<!-- SPEAKERS -->
<section id="speakers">
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<h2 class="uppercase text-center">invited speakers</h2>
<div class="row">
<!-- speaker 1 -->
<div class="speaker col-xs-12 col-sm-4 col-md-15 col-lg-15">
<figure>
<img class="img-responsive" src="img/rasmus-baath.jpeg" alt="">
<figcaption>
<h4>Rasmus Bååth</h4>
<p>Researcher at Lund University.</p>
<a class="speaker-detail" href="rasmus-baath.html"><i class="fa fa-2x fa-external-link"></i></a>
<div class="social">
<a href="http://www.sumsar.net/" target="_blank"><i class="fa fa-2x fa-globe"></i></a>
<a href="https://twitter.com/rabaath" target="_blank"><i class="fa fa-2x fa-twitter-square"></i></a>
</div>
</figcaption>
</figure>
<h4>Rasmus Bååth</h4>
<span class="title">Lund University Cognitive Science</span>
</div>
<!-- speaker 2 -->
<div class="speaker col-xs-12 col-sm-4 col-md-15 col-lg-15">
<figure>
<img class="img-responsive" src="img/romain-francois.jpg" alt="">
<figcaption>
<h4>Romain Francois</h4>
<!-- <p>An R programmer for over a decade, Romain started as an “R first” developer, only later moving to more traditional software engineering languages.</p>-->
<!-- <a class="speaker-detail" href="romain-francois.html"><i class="fa fa-2x fa-external-link"></i></a>-->
<div class="social">
<a href="https://github.com/romainfrancois" target="_blank"><i class="fa fa-2x fa-globe"></i></a>
<a href="https://twitter.com/romain_francois" target="_blank"><i class="fa fa-2x fa-twitter-square"></i></a>
</div>
</figcaption>
</figure>
<h4>Romain Francois</h4>
<span class="title">r-enthusiasts</span>
</div>
<!-- speaker 3 -->
<div class="speaker col-xs-12 col-sm-4 col-md-15 col-lg-15">
<figure>
<img class="img-responsive" src="img/ulrike-gromping.jpg" alt="">
<figcaption>
<h4>Ulrike Grömping</h4>
<p>Statistician with data analysis experience in various areas.</p>
<a class="speaker-detail" href="ulrike-gromping.html"><i class="fa fa-2x fa-external-link"></i></a>
<div class="social">
<a href="https://prof.beuth-hochschule.de/groemping/" target="_blank"><i class="fa fa-2x fa-globe"></i></a>
</div>
</figcaption>
</figure>
<h4>Ulrike Grömping</h4>
<span class="title">Beuth University of Applied Sciences Berlin</span>
</div>
<!-- speaker 4 -->
<div class="speaker col-xs-12 col-sm-4 col-md-15 col-lg-15">
<figure>
<img class="img-responsive" src="img/matthias-templ.jpg" alt="">
<figcaption>
<h4>Matthias Templ</h4>
<p>Author and maintainer of several R packages for official statistics.</p>
<a class="speaker-detail" href="matthias-templ.html"><i class="fa fa-2x fa-external-link"></i></a>
<div class="social">
<a href="http://www.statistik.tuwien.ac.at/public/templ/mtempl/?page_id=2" target="_blank"><i class="fa fa-2x fa-globe"></i></a>
</div>
</figcaption>
</figure>
<h4>Matthias Templ</h4>
<span class="title">Vienna University of Technology</span>
</div>
<!-- speaker 5 -->
<div class="speaker col-xs-12 col-sm-4 col-md-15 col-lg-15">
<figure>
<img class="img-responsive" src="img/heather-turner.jpg" alt="">
<figcaption>
<h4>Heather Turner</h4>
<p>Freelance statisticial programmer.</p>
<a class="speaker-detail" href="heather-turner.html"><i class="fa fa-2x fa-external-link"></i></a>
<div class="social">
<a href="http://www.heatherturner.net/" target="_blank"><i class="fa fa-2x fa-globe"></i></a>
<a href="https://twitter.com/HeathrTurnr" target="_blank"><i class="fa fa-2x fa-twitter-square"></i></a>
</div>
</figcaption>
</figure>
<h4>Heather Turner</h4>
<span class="title">University of Warwick</span>
</div>
</div>
<div class="row">
<!-- speaker 6 -->
<div class="speaker col-xs-12 col-sm-4 col-md-15 col-lg-15">
<figure>
<img class="img-responsive" src="img/przemyslaw-biecek.jpg" alt="">
<figcaption>
<h4>Przemysław Biecek</h4>
<p>Data scientist with experience in bio-med statistics, visualisation.</p>
<a class="speaker-detail" href="przemyslaw-biecek.html"><i class="fa fa-2x fa-external-link"></i></a>
<div class="social">
<a href="http://biecek.pl/" target="_blank"><i class="fa fa-2x fa-globe"></i></a>
<!-- <a href="#"><i class="fa fa-2x fa-twitter-square"></i></a>-->
</div>
</figcaption>
</figure>
<h4>Przemyslaw Biecek</h4>
<span class="title">MIM University of Warsaw, MiNI Warsaw University of Technology</span>
</div>
<!-- speaker 6 -->
<div class="speaker col-xs-12 col-sm-4 col-md-15 col-lg-15">
<figure>
<img class="img-responsive" src="img/marek-gagolewski.jpg" alt="">
<figcaption>
<h4>Marek Gagolewski</h4>
<p>True R hacker since the Paleozoic era of R_1.4.0.</p>
<a class="speaker-detail" href="marek-gagolewski.html"><i class="fa fa-2x fa-external-link"></i></a>
<div class="social">
<a href="http://www.gagolewski.com/" target="_blank"><i class="fa fa-2x fa-globe"></i></a>
</div>
</figcaption>
</figure>
<h4>Marek Gagolewski</h4>
<span class="title">Polish Academy of Sciences</span>
</div>
<!-- speaker 7 -->
<div class="speaker col-xs-12 col-sm-4 col-md-15 col-lg-15">
<figure>
<img class="img-responsive" src="img/jakub-glinka.jpg" alt="">
<figcaption>
<h4>Jakub Glinka</h4>
<p>Methodology specialist having strong programming skills.</p>
<a class="speaker-detail" href="jakub-glinka.html"><i class="fa fa-2x fa-external-link"></i></a>
<div class="social">
<a href="https://pl.linkedin.com/in/jakub-glinka-23768453" target="_blank"><i class="fa fa-2x fa-globe"></i></a>
<!-- <a href="#"><i class="fa fa-2x fa-twitter-square"></i></a>-->
</div>
</figcaption>
</figure>
<h4>Jakub Glinka</h4>
<span class="title">GfK Data Lab</span>
</div>
<!-- speaker 8 -->
<div class="speaker col-xs-12 col-sm-4 col-md-15 col-lg-15">
<figure>
<img class="img-responsive" src="img/katarzyna-kopczewska.jpg" alt="">
<figcaption>
<h4>Katarzyna Kopczewska</h4>
<!-- <p>Aliquam ut laoreet velit. Proin orci est, vulputate aliquam eu, tincidunt laoreet lorem.</p>-->
<!-- <a class="speaker-detail" href="speaker-detail.html"><i class="fa fa-2x fa-external-link"></i></a>-->
<div class="social">
<a href="http://www.wne.uw.edu.pl/index.php/profile/view/79" target="_blank"><i class="fa fa-2x fa-globe"></i></a>
<!-- <a href="#"><i class="fa fa-2x fa-twitter-square"></i></a>-->
</div>
</figcaption>
</figure>
<h4>Katarzyna Kopczewska</h4>
<span class="title">University of Warsaw</span>
</div>
<!-- speaker 9 -->
<div class="speaker col-xs-12 col-sm-4 col-md-15 col-lg-15">
<figure>
<img class="img-responsive" src="img/katarzyna-stapor.jpg" alt="">
<figcaption>
<h4>Katarzyna Stapor</h4>
<p>Focused on the statistical pattern recognition.</p>
<a class="speaker-detail" href="katarzyna-stapar.html"><i class="fa fa-2x fa-external-link"></i></a>
<div class="social">
<a href="http://157.158.51.7/stapor/" target="_blank"><i class="fa fa-2x fa-globe"></i></a>
<!-- <a href="#"><i class="fa fa-2x fa-twitter-square"></i></a>-->
</div>
</figcaption>
</figure>
<h4>Katarzyna Stapor</h4>
<span class="title">Silesian University of Technology</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- SCHEDULE -->
<section id="schedule">
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1">
<h2 class="uppercase text-center">Program</h2>
<h4 class="uppercase text-center">Day 1 - workshops (<a href="https://github.com/eRum2016/Workshops" target="_blank">details</a>) - wednesday (12.10)</h4>
<div class="row">
<div class="col-sm-2 prog-btn-non"><span class="time">8:00-9:00</span></div>
<div class="col-sm-9 prog-btn-non">Registration</div>
<div class="col-sm-2 prog-btn-non"><span class="time">9:00-12:30</span></div>
<div class="col-sm-9 prog-btn-non">Morning workshops at University of Life Sciences and Statistical Office</div>
<div class="col-sm-2 prog-btn-non"><span class="time">12:30-13:30</span></div>
<div class="col-sm-9 prog-btn-non">Registration and lunch break (not included in fees)</div>
<div class="col-sm-2 prog-btn-non"><span class="time">13:30-17:00</span></div>
<div class="col-sm-9 prog-btn-non">Afternoon workshops at University of Life Sciences and Statistical Office</div>
</div>
<h4 class="uppercase text-center">Day 2 - conference - thursday (13.10)</h4>
<div class="row">
<div class="col-sm-2 prog-btn-non"><span class="time">8:00-8:40</span></div>
<div class="col-sm-9 prog-btn-non">Registration + coffee - sponsored by Quantide</div>
<div class="col-sm-2 prog-btn-non"><span class="time">8:40-9:00</span></div>
<div class="col-sm-9 prog-btn-non">Welcome session</div>
<div class="col-sm-2 prog-btn-non"><span class="time">9:00-10:10</span></div>
<div class="col-sm-9 prog-btn action" data-content="#day1-inv1">Invited Talks I</div>
<div class="col-sm-11 prog-session content" id="day1-inv1">
Room AULA - chairman: Rasmus Bååth
<h4>Heather Turner</h4>
<p>Addressing the Gender Gap in the R Project</p>
<h4>Katarzyna Stapor</h4>
<p>Heteroscedastic Discriminant Analysis and its integration into “mlR” package for uniform machine learning</p>
</div>
<div class="col-sm-2 prog-btn-non"><span class="time">10:10-10:20</span></div>
<div class="col-sm-9 prog-btn-non">Group photo in front of main entrance to the venue</div>
<div class="col-sm-2 prog-btn-non"><span class="time">10:20-10:45</span></div>
<div class="col-sm-9 prog-btn-non">Coffee break - sponsored by eoda</div>
<div class="col-sm-2 prog-btn-non"><span class="time">10:45-12:15</span></div>
<div class="col-sm-3 prog-btn action" data-content="#day1-sess1">Methodology 1
<br> (McKinsey session)</div>
<div class="col-sm-3 prog-btn action" data-content="#day1-sess2">Business 1</div>
<div class="col-sm-3 prog-btn action" data-content="#day1-sess3" style="width:223px">Packages 1</div>
<div class="col-sm-11 prog-session content" id="day1-sess1">
Room AULA - chairman: Marcin Szymkowiak
<h4>Maren Eckhoff</h4>
<p>Predicting machine failures</p>
<h4>Mateusz Filarowski</h4>
<p>Ensemble learning - idea and applications</p>
<h4>Tomasz Smolarczyk</h4>
<p>Ensemble learning - implementation with mlr</p>
</div>
<div class="col-sm-11 prog-session content" id="day1-sess2">
Room 111A - chairman: Lukasz Wawrowski
<h4>Michal Zylinski</h4>
<p>Turning R into production – make your models reality</p>
<h4>Lukasz Grala</h4>
<p>RevoScaleR - performance and scalability R</p>
<h4>Wit Jakuczun</h4>
<p>Bringing R to Enterprise</p>
<h4>Erik Barzagar-Nazari</h4>
<p>Data science outside the box: Developing a generic scoring algorithm for customer acquisition</p>
<h4>Andreas Wygrabek</h4>
<p>Embedding R in business processes</p></div>
<div class="col-sm-11 prog-session content" id="day1-sess3">
Room 308A - chairman: Tomasz Górecki
<h4>Robin Hyndman</h4>
<p>Reconciling forecasts: the hts package</p>
<h4>Robin Lovelace</h4>
<p>stplanr: an R package for transport planning</p>
<h4>Paul-Christian Buerkner</h4>
<p>brms: An R Package for Bayesian Multilevel Models using Stan</p>
<h4>Sebastian Warnholz</h4>
<p>Modules in R</p>
<h4>Massimiliano Pastore</h4>
<p>influence.SEM 2.0: An R Package for Sensitivity Analysis in Structural Equation Models</p>
</div>
<div class="col-sm-2 prog-btn-non"><span class="time">12:15-13:30</span></div>
<div class="col-sm-9 prog-btn-non">Lunch break - sponsored by McKinsey</div>
<div class="col-sm-2 prog-btn-non"><span class="time">13:30-14:40</span></div>
<div class="col-sm-9 prog-btn action" data-content="#day1-inv2">Invited Talks II</div>
<div class="col-sm-11 prog-session content" id="day1-inv2">
Room AULA - chairman: Katarzyna Kopczewska
<h4>Rasmus Bååth</h4>
<p>A survey of tools for Bayesian data analysis in R</p>
<h4>Jakub Glinka</h4>
<p>Browse Till You Die: Scalable Hierarchical Bayesian Modeling of cookie deletion</p>
</div>
<div class="col-sm-2 prog-btn-non"><span class="time">14:40-15:00</span></div>
<div class="col-sm-9 prog-btn-non">Fast coffee break - sponsored by WLOG Solutions</div>
<div class="col-sm-2 prog-btn-non"><span class="time">15:00-16:30</span></div>
<div class="col-sm-3 prog-btn action" data-content="#day1-sess4">Methodology 2</div>
<div class="col-sm-3 prog-btn action" data-content="#day1-sess5">Business 2</div>
<div class="col-sm-3 prog-btn action" data-content="#day1-sess6" style="width:223px">Packages 2</div>
<div class="col-sm-11 prog-session content" id="day1-sess4">
Room AULA - chairman: Maciej Beresewicz
<h4>Emilio L. Cano</h4>
<p>Unattended SVM parameters fitting for monitoring nonlinear profiles</p>
<h4>Philipp Thomann</h4>
<p>SimonsSVM: A Fast and Scalable Support Vector Machine Implementation for R</p>
<h4>Tomasz Górecki</h4>
<p>Multivariate analysis of variance for functional data using R</p>
<h4>Christoph Hoffmann</h4>
<p>Text Mining in R</p>
</div>
<div class="col-sm-11 prog-session content" id="day1-sess5">
Room 111A - chairman: Adolfo Alvarez
<h4>David Kun</h4>
<p>Enterprise R Platform – the what, the why and the how</p>
<h4>Oliver Bracht</h4>
<p>R in the Mittelstand: Bringing Data Science to small and mid-size companies</p>
<h4>Pawel Ladyzynski</h4>
<p>R tools and tricks for marketing inference in a big internet company</p>
<h4>Michal Brys</h4>
<p>Using Google Analytics with R</p>
<h4>Piotr Wojcik</h4>
<p>Using R for backtesting algorithmic trading strategies on high-frequency data</p>
</div>
<div class="col-sm-11 prog-session content" id="day1-sess6">
Room 308A - chairman: Marek Gagolewski
<h4>Rebecca Killick</h4>
<p>EnvCpt: An R package for changepoint identification in Environmental data</p>
<h4>Marcin Kosinski</h4>
<p>archivist 2.0: News from Managing Data Analysis Results Toolkit</p>
<h4>Daniel Guhl</h4>
<p>Discrete Choice Models in R</p>
<h4>Kamil Wais</h4>
<p>LimeRick: Bridge between LimeSurvey and R</p>
</div>
<div class="col-sm-2 prog-btn-non"><span class="time">16:30-17:00</span></div>
<div class="col-sm-9 prog-btn-non">Coffee break - sponsored by Analyx</div>
<div class="col-sm-2 prog-btn-non"><span class="time">17:00-18:10</span></div>
<div class="col-sm-9 prog-btn action" data-content="#day1-inv3">Invited Talks III</div>
<div class="col-sm-11 prog-session content" id="day1-inv3">
Room AULA - chairman: Heather Turner
<h4>Ulrike Grömping</h4>
<p>Design of Experiments in R</p>
<h4>Przemyslaw Biecek</h4>
<p>How to use R to hack the publicly available data about skills of 2M+ worldwide students?</p>
</div>
<div class="col-sm-2 prog-btn-non"><span class="time">18:20-19:45</span></div>
<div class="col-sm-3 prog-btn action" data-content="#day1-sess7">Methodology 3</div>
<div class="col-sm-3 prog-btn action" data-content="#day1-sess8">Data workflow 1</div>
<div class="col-sm-3 prog-btn action" data-content="#day1-sess9" style="width:223px">BioR</div>
<div class="col-sm-11 prog-session content" id="day1-sess7">
Room AULA - chairman: Tomasz Klimanek
<h4>Adolfo Alvarez</h4>
<p>Classic and network based cluster analysis: together we're better</p>
<h4>Maciej Beresewicz</h4>
<p>M-quantile regression in R</p>
<h4>Marcin Dyderski</h4>
<p>Is forest a pharmacy? - problems with data analyses</p>
<h4>Gero Szepannek</h4>
<p>k Prototypes Clustering of Mixed Type Data</p>
</div>
<div class="col-sm-11 prog-session content" id="day1-sess8">
Room 111A - chairman: Marcin Kosinski
<h4>Olgun Aydin</h4>
<p>Dynamic Inflation Rate Calculation of Fast-Moving Consumer Goods: Shiny-SparkR App</p>
<h4>Michal Maj</h4>
<p>Introduction to RDruid</p>
<h4>Anna Wróblewska</h4>
<p>Search phrases in e-commerce platform allegro.pl - big data analysis using SparkR</p>
<h4>Natalia Potocka</h4>
<p>The full process of creating an R application in recommendation systems: from Dockerfile to Zabbix monitoring</p>
</div>
<div class="col-sm-11 prog-session content" id="day1-sess9">
Room 308A - chairman: Przemyslaw Biecek
<h4>Pawel Labaj</h4>
<p>Are we ready for Personalized Medicine?</p>
<h4>Michal Burdukiewicz</h4>
<p>N-gram analysis of biological sequences in R</p>
<h4>Stefan Rödiger</h4>
<p>R as an Environment for the Reproducible Analysis of DNA Amplification Experiments</p>
<h4>Marek Wiewiórka</h4>
<p>Big data genomics data warehouses analyses with R</p>
<h4>Michal Okoniewski</h4>
<p>Using SparkR with distributed database in Parquet - a genomic example</p>
</div>
<div class="col-sm-2 prog-btn-non"><span class="time">19:50</span></div>
<div class="col-sm-9 prog-btn-non">Buses to the Welcome paRty venue</div>
<div class="col-sm-2 prog-btn-non"><span class="time">20:00</span></div>
<div class="col-sm-9 prog-btn action" data-content="#poster">Welcome paRty + poster session - sponsored by McKinsey</div>
<div class="col-sm-11 prog-session content" id="poster">
<h4>Damian Chmura</h4>
<p>What are sampling errors in the vegetation studies using visual estimation of presence and cover of plants? R can help</p>
<h4>Carolina Correia</h4>
<p>RNA-seq transcriptional profiling of PPD-b-stimulated peripheral blood from cattle infected with Mycobacterium bovis</p>
<h4>Emilia Daghir-Wojtkowiak</h4>
<p>Pharmacokinetics-driven modeling of metabolomics data</p>
<h4>Anna Dmowska</h4>
<p>R as a tool for geospatial modeling in large dataset - example of dasymetric modeling at a continental scale (United States)</p>
<h4>Dimitri Fichou</h4>
<p>Application of Artificial Neural Network to Planar Chromatography Data</p>
<h4>Jagoda Jabłonska</h4>
<p>cgmisc: enhanced genome-wide association analyses and visualization</p>
<h4>Marta Karas</h4>
<p>Penalized regression inference regarding variable selection in regular and high dimensions: comparison of selected methods implemented in R</p>
<h4>Wojciech Kedziora</h4>
<p>Wrestling with big data in forestry: use of R in Scots pine site index analysis.</p>
<h4>Tomasz Owczarek</h4>
<p>An R implementation of Kauffman's NK model</p>
<h4>Anna Rybinska</h4>
<p>R as an effective data mining tool in chemistry</p>
<h4>Fabián Santos</h4>
<p>Applying genetic algorithms to calibrate a processing chain for a Landsat-based time series analysis of disturbance - regrowth dynamics in tropical forests</p>
<h4>Sylwia Wierzcholska</h4>
<p>Modelling the distrubution of the bryophytes in different spatial scales</p>
</div>
</div>
<h4 class="uppercase text-center">Day 3 - conference - friday (14.10)</h4>
<div class="row">
<div class="col-sm-2 prog-btn-non"><span class="time">8:00-8:30</span></div>
<div class="col-sm-9 prog-btn-non">Registration + coffee - sponsored by RStudio</div>
<div class="col-sm-2 prog-btn-non"><span class="time">8:30-9:40</span></div>
<div class="col-sm-9 prog-btn action" data-content="#day2-inv1">Invited Talks IV</div>
<div class="col-sm-11 prog-session content" id="day2-inv1">
Room AULA - chairman: Matthias Templ
<h4>Romain Francois</h4>
<p>R and C++</p>
<h4>Marek Gagolewski</h4>
<p>Genie: A new, fast, and outlier-resistant hierarchical clustering algorithm and its R interface</p>
</div>
<div class="col-sm-2 prog-btn-non"><span class="time">9:40-10:00</span></div>
<div class="col-sm-9 prog-btn-non">Fast coffee break - sponsored by DataCamp</div>
<div class="col-sm-2 prog-btn-non"><span class="time">10:00-11:10</span></div>
<div class="col-sm-9 prog-btn action" data-content="#day2-inv2">Invited Talks V</div>
<div class="col-sm-11 prog-session content" id="day2-inv2">
AULA - chairman: Katarzyna Stapor
<h4>Matthias Templ</h4>
<p>Simulation of complex synthetic data with the R package simPop</p>
<h4>Katarzyna Kopczewska</h4>
<p>Geo-located point data: measurement of agglomeration and concentration</p>
</div>
<div class="col-sm-2 prog-btn-non"><span class="time">11:10-12:20</span></div>
<div class="col-sm-9 prog-btn-non">Sponsors session</div>
<div class="col-sm-2 prog-btn-non"><span class="time">12:20-13:30</span></div>
<div class="col-sm-9 prog-btn-non">Lunch break - sponsored by Microsoft</div>
<div class="col-sm-2 prog-btn-non"><span class="time">13:30-15:00</span></div>
<div class="col-sm-3 prog-btn action" data-content="#day2-sess1">Lightning talks</div>
<div class="col-sm-3 prog-btn action" data-content="#day2-sess2">Data workflow 2</div>
<div class="col-sm-3 prog-btn action" data-content="#day2-sess3" style="width:223px">Education learning</div>
<div class="col-sm-11 prog-session content" id="day2-sess1">
Room AULA - chairman: Joanna Zyprych-Walczak
<h4>Agnieszka Borsuk</h4>
<p>R as a tool for graphical diagnostics in population pharmacokinetic modeling</p>
<h4>Bartosz Czernecki</h4>
<p>Machine learning modeling of phenological phases in Poland</p>
<h4>Pawel Kleka</h4>
<p>Latent Class Analysis in Psychology</p>
<h4>Bogumil Konopka</h4>
<p>Exploratory data analysis of a clinical study group - revealing patient subgroups</p>
<h4>Alexander Kruse</h4>
<p>Multidimensional Clustering of Web Analytics Data</p>
<h4>Giovanni Lotti</h4>
<p>R shiny server as core of multiple technologies into Travel Industry.</p>
<h4>George Moroz</h4>
<p>Turning Text Mining into Language Mining: Corpus Linguistics in R</p>
<h4>Pawel Piatkowski</h4>
<p>Structural bioinformatician's notebooks with pdbeeR and knitr</p>
<h4>Paul Roback</h4>
<p>Using R to incorporate data science into the undergraduate statistics curriculum</p>
<h4>Luigi Lombardi</h4>
<p>Analysing the statistical effects of manipulated data</p>
<h4>Jeroen Ooms</h4>
<p>Cryptography in R</p>
<h4>Piotr Sobczyk</h4>
<p>Visualizing changes in demographics with R</p>
<h4>Zofia Tylutki</h4>
<p>R for pharmacokineticists - smulation of steady-state concentrations of amiodarone in heart compartmental model as an example</p>
</div>
<div class="col-sm-11 prog-session content" id="day2-sess2">
Room 407A - chairman: Marcin Dyderski
<h4>Pawel Cejrowski</h4>
<p>Power of Java's RSession and rKafka in the data science team collaboration</p>
<h4>Ming Shan</h4>
<p>R Shiny for Real-time Analytics and Insight Delivery – A Solution for Complex Data in Agriculture</p>
<h4>Adam Ryczkowski</h4>
<p>Seamless external R server integration with Excel with step-by-step debugging of the R code</p>
<h4>Filip Stachura</h4>
<p>Workflow around modelling in Data Science / R</p>
</div>
<div class="col-sm-11 prog-session content" id="day2-sess3">
Room 308A - chairman: Alicja Szabelska-Beresewicz
<h4>Filip Schouwenaars</h4>
<p>Revolutionize how you teach and blog: add interactivity</p>
<h4>Martin Schneider</h4>
<p>Aargh I have to teach R (Experiences in the teaching of R)</p>
<h4>Päivi Julin</h4>
<p>Using R for artistic purposes</p>
<h4>Kamil Krawczyk</h4>
<p>Polish Diet Commissions - Text Analysis</p>
</div>
<div class="col-sm-2 prog-btn-non"><span class="time">15:00-15:20</span></div>
<div class="col-sm-9 prog-btn-non">Closing session</div>
<div class="col-sm-2 prog-btn-non"><span class="time">19:00</span></div>
<div class="col-sm-9 prog-btn-non">Closing beer with organisers in the City Center (facultative, not included in fee)</div>
</div>
<h4 class="uppercase text-center">Day 4 - facultative tour - saturday (15.10)</h4>
<div class="row">
<div class="col-sm-2 prog-btn-non"><span class="time">9:45-14:30</span></div>
<div class="col-sm-9 prog-btn-non">Sightsseing tour + lunch (facultative, extra fee)</div>
</div>
</div>
</div>
</div>
</section>
<!-- PROGRAM -->
<!--
<section id="workshops">
<div class="container">
<div class="row">
<div class="col-lg-10 col-lg-offset-1 text-center">
<h2 class="uppercase text-center">Important dates</h2>
<table id="hor-zebra" style="margin-left:auto; margin-right:auto;">
<tr class="odd cross">
<td>Open submissions of abstracts</td>
<td>March 15, 2016</td>
</tr>
<tr class="cross">
<td>Open registration</td>
<td>March 15, 2016</td>
</tr>
<tr class="odd cross">
<td>Workshops Submissions Deadline</td>
<td>April 15, 2016</td>
</tr>
<tr class="cross">
<td>Abstract Submissions Deadline</td>
<td>June 15, 2016</td>
</tr>
<tr class="odd cross">
<td>Notification of Acceptance</td>
<td>July 1, 2016</td>
</tr>
<tr class="cross">
<td>Early Registration Deadline</td>
<td>July 15, 2016</td>
</tr>
<tr class="odd cross">
<td>Regular Registration Deadline</td>
<td>August 15, 2016</td>
</tr>
<tr>
<td>Workshops</td>
<td>October 12, 2016</td>
</tr>
<tr class="odd">
<td>Conference Start</td>
<td>October 13, 2016</td>
</tr>
<tr>
<td>Conference End</td>
<td>October 14, 2016</td>
</tr>
<tr class="odd">
<td>Sightseeing tour (facultative)</td>
<td>October 15, 2016</td>
</tr>
</table>
</div>
</div>
</section>
-->
<!-- REGISTER -->
<section id="register">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="uppercase">presentations</h2>
</div>
<div class="col-lg-12 text-center">
<p class="lead">
<a class="button button-big button-dark reg" target="_blank" data-scroll href="https://github.com/eRum2016/Book-of-abstracts/raw/master/output/boa.pdf">Book of abstracts</a><br>
<a class="button button-big button-dark reg" target="_blank" data-scroll href="https://github.com/eRum2016/Presentations-participants">Browse participants presentations</a>
<a class="button button-big button-dark reg" target="_blank" data-scroll href="https://www.youtube.com/playlist?list=PLCsJUtCRSFbejqCqAURNVOFFpoDCMeuO5">Watch invited talks</a>
</p>
</div>
</div>
</div>
</section>
<!-- SPONSORS -->
<section id="sponsors">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="uppercase">sponsors & partners</h2>
<h3 class="uppercase">platinum sponsor</h3>
<div class="sponsor-slider">
<a href="http://www.mckinsey.com/business-functions/mckinsey-analytics/our-insights" target="_blank"><img class="img-responsive" src="img/sponsor_p_mckinsey.jpg" alt="logo"></a>
</div>
<h3 class="uppercase">gold sponsor</h3>
<div class="sponsor-slider">
<a href="https://www.microsoft.com/pl-pl" target="_blank"><img class="img-responsive" src="img/sponsor_g_microsoft.jpg" alt="logo"></a>
</div>
<h3 class="uppercase">silver sponsors</h3>
<div class="sponsor-slider">
<a href="https://www.eoda.de/en/" target="_blank"><img class="img-responsive" src="img/sponsor_s_eoda.png" alt="logo"></a>
<a href="http://www.analyx.com/" target="_blank"><img class="img-responsive" src="img/sponsor_s_analyx.png" alt="logo"></a>
<br>
<a href="http://tidk.pl/" target="_blank"><img style="padding:10px" class="img-responsive" src="img/sponsor_s_tidk.png" alt="logo"></a>
</div>
<h3 class="uppercase">bronze sponsors</h3>
<div class="sponsor-slider">
<a href="https://www.datacamp.com/" target="_blank"><img class="img-responsive" src="img/sponsor_b_datacamp.png" alt="logo"></a>
<a href="http://www.wlogsolutions.com/" target="_blank"><img class="img-responsive" src="img/sponsor_b_wlog.png" alt="logo"></a>
<br>
<a href="http://www.quantide.com/" target="_blank"><img class="img-responsive" src="img/sponsor_b_quantide.jpg" alt="logo"></a>
<a href="https://www.rstudio.com/" target="_blank"><img class="img-responsive" src="img/sponsor_b_rstudio.png" alt="logo"></a>
</div>
<h3 class="uppercase">community partners</h3>
<div class="sponsor-slider">
<a href="http://smarterpoland.pl/" target="_blank"><img class="img-responsive" src="img/logo_smarterpoland_small.jpg" alt="logo"></a>
<a href="http://www.r-bloggers.com/" target="_blank"><img class="img-responsive" src="img/logo_rbloggers.png" alt="logo"></a>
</div>
<h3 class="uppercase">patronages</h3>
<div class="sponsor-slider">
<p>The Honorary Patronage of the Rector of the Poznan University of Economics, Professor Maciej Żukowski</p>
<p>The Honorary Patronage of the Rector of the Poznan University of Life Sciences, Professor Jan Pikul</p>
<p>The Honorary Patronage of the Director of the Statistical Office in Poznan, Jacek Kowalewski Ph.D.</p>
<a href="http://poznan.stat.gov.pl/" target="_blank"><img class="img-responsive" src="img/logo_us.png" alt="logo"></a>
<a href="http://www.pti.poznan.pl/" target="_blank"><img class="img-responsive" src="img/patron_pti.jpg" alt="logo"></a>
<a href="http://www.polbiom.up.poznan.pl/" target="_blank"><img class="img-responsive" src="img/logo_ptb.gif" alt="logo"></a>
<a href="http://pts.stat.gov.pl/" target="_blank"><img class="img-responsive" src="img/patron_pts.jpg" alt="logo"></a>
</div>
</div>
</div>
</div>
</section>
<!-- VENUE -->
<section id="venue">
<div class="venue">
<div class="container">
<div class="row">
<div class="venue-address">
<h2 class="uppercase">venues</h2>
<p>Poznan University of Economics and Business</p>
<p class="address">
<i class="fa fa-2x fa-map-marker fa-inverse"></i> Niepodleglosci avenue 10
</p>
<a class="button button-light" href="http://ue.poznan.pl/en/" target="_blank">more info</a>
<a class="button button-light" href="https://goo.gl/maps/6E8XvPor7qj" target="_blank">virtual sightseeing</a>
<p>Poznan University of Life Sciences</p>
<p class="address">
<i class="fa fa-2x fa-map-marker fa-inverse"></i> Wojska Polskiego street 28
</p>
<a class="button button-light" href="http://en.puls.edu.pl/" target="_blank">more info</a>
<p>Statistical Office in Poznan</p>
<p class="address">
<i class="fa fa-2x fa-map-marker fa-inverse"></i> Wojska Polskiego street 27/29
</p>
<a class="button button-light" href="http://poznan.stat.gov.pl/en/" target="_blank">more info</a>
</div>
</div>
</div>
</div>
</section>
<!-- ORGANIZERS -->
<section id="sponsors">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h2 class="uppercase text-center">organizing committee</h2>
<ul>
<li>Maciej Beresewicz (Chair), Poznan University of Economics and Business</li>
<li><a href="http://adolfoalvarez.cl/" target="_blank">Adolfo Alvarez</a>, Analyx</li>
<li><a href="http://biecek.pl/" target="_blank">Przemyslaw Biecek</a>, MIM University of Warsaw, MiNI Warsaw University of Technology</li>
<li>Marcin Dyderski, Institute of Dendrology of the Polish Academy of Sciences, Poznan University of Life Sciences</li>
<li><a href="http://r-addict.com/" target="_blank">Marcin Kosinski</a>, <a href="http://www.meetup.com/Spotkania-Entuzjastow-R-Warsaw-R-Users-Group-Meetup/" target="_blank">Warsaw R Enthusiasts</a></li>
<li><a href="http://nowosad.github.io" target="_blank">Jakub Nowosad</a>, Adam Mickiewicz University in Poznan, University of Cincinnati</li>
<li>Kamil Rotter, Poznan University of Economics and Business</li>
<li>Alicja Szabelska, Poznan University of Life Sciences</li>
<li>Marcin Szymkowiak, Poznan University of Economics and Business</li>
<li>Lukasz Wawrowski, Poznan University of Economics and Business</li>
<li>Joanna Zyprych-Walczak, Poznan University of Life Sciences</li>
</ul>
<h3 class="uppercase text-center">main organizers</h3>
<div class="sponsor-slider text-center">
<p>
<a href="https://www.facebook.com/sknEstymator/" target="_blank"><img class="img-responsive" src="img/logo_estymator.png" alt="logo">
<br>
</a>
</p>
<p>
<a href="http://ue.poznan.pl/en/" target="_blank"><img class="img-responsive" src="img/logo_uep.png" alt="logo"></a>
<br>Department of statistics</p>
</div>
<br/>
<h3 class="uppercase text-center">co-organizer</h3>
<div class="sponsor-slider text-center">
<a href="http://en.puls.edu.pl/" target="_blank"><img class="img-responsive" src="img/logo_up.jpg" alt="logo"></a>
<br> Department of mathematical and statistical methods
</div>
<h3 class="uppercase text-center">supporting organizers</h3>
<div class="sponsor-slider text-center">
<a href="http://mi2-warsaw.github.io/SER/" target="_blank"><img class="img-responsive" src="img/logo_ser.jpg" alt="logo"></a>
<a href="http://www.meetup.com/Poznan-R-User-Group-PAZUR/" target="_blank"><img class="img-responsive" src="img/logo_pazur.png" alt="logo"></a>
</div>
</div>
</div>
</div>
</section>
<!-- FAQ and GALLERY -->
<section id="faq-gallery">
<div class="container">
<div class="row">
<div class="col-md-6 col-lg-6">
<div class="panel-group" id="faq">
<h3>eRum 2016 photos</h3>
<p><a href="https://goo.gl/photos/qZs4tDiaWwB1WKMs5" target="_blank">Workshops</a>|<a href="https://goo.gl/photos/UbJAa96DDBNT1apq8" target="_blank">Conference</a>|<a href="https://goo.gl/photos/A5f6mAtSYQD58Fbj9" target="_blank">Group photos</a></p>
<a class="image-link col-md-12 col-lg-12" href="img/group_photo.jpg"><img class="img-responsive" src="img/min-group_photo.jpg" alt=""></a>
</div>
</div>
<div class="col-md-6 col-lg-6">
<div id="gallery">
<h3>Polish R users meeting 2014</h3>
<p>More info at <a href="http://estymator.ue.poznan.pl/pazur/eng/index.html">PAZUR 2014</a></p>
<div class="row">
<a class="image-link col-md-4 col-lg-4" href="img/zdj1.jpg"><img class="img-responsive" src="img/min-zdj1.jpg" alt=""></a>
<a class="image-link col-md-4 col-lg-4" href="img/zdj2.jpg"><img class="img-responsive" src="img/min-zdj2.jpg" alt=""></a>
<a class="image-link col-md-4 col-lg-4" href="img/zdj3.jpg"><img class="img-responsive" src="img/min-zdj3.jpg" alt=""></a>
<a class="image-link col-md-4 col-lg-4" href="img/zdj4.jpg"><img class="img-responsive" src="img/min-zdj4.jpg" alt=""></a>
<a class="image-link col-md-4 col-lg-4" href="img/zdj5.jpg"><img class="img-responsive" src="img/min-zdj5.jpg" alt=""></a>
<a class="image-link col-md-4 col-lg-4" href="img/zdj6.jpg"><img class="img-responsive" src="img/min-zdj6.jpg" alt=""></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- CONTACT -->
<section id="contact">
<!-- map -->