-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
1119 lines (475 loc) · 29.5 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>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="theme" content="hugo-academic">
<meta name="generator" content="Hugo 0.53" />
<meta name="author" content="R-Ladies Chicago">
<meta name="description" content="The Chicago Chapter of R-Ladies!">
<link rel="alternate" hreflang="en-us" href="/">
<meta name="theme-color" content="#0095eb">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/github.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha512-6MXa8B6uaO18Hid6blRMetEIoPqHf7Ux1tnyIQdpt9qI5OACx7C+O3IVTr98vwGnlcg0LOLa02i9Y1HpVhlfiw==" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/academicons/1.8.6/css/academicons.min.css" integrity="sha256-uFVgMKfistnJAfoCUQigIl+JfUaP47GrRKjf6CTPVmw=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha512-SfTiTlX6kk+qitfevl/7LibUOeJWlt9rbyDn92a1DqWOw9vWG2MFoays0sgObmWazO5BQPiFucnnEAjpAB+/Sw==" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.2.5/jquery.fancybox.min.css" integrity="sha256-ygkqlh3CYSUri3LhQxzdcm0n1EQvH2Y+U5S2idbLtxs=" crossorigin="anonymous">
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Montserrat:400,700%7cRoboto:400,400italic,700%7cRoboto+Mono">
<link rel="stylesheet" href="/styles.css">
<link rel="alternate" href="/index.xml" type="application/rss+xml" title="R-Ladies Chicago">
<link rel="feed" href="/index.xml" type="application/rss+xml" title="R-Ladies Chicago">
<link rel="manifest" href="/site.webmanifest">
<link rel="icon" type="image/png" href="/img/icon.png">
<link rel="apple-touch-icon" type="image/png" href="/img/icon-192.png">
<link rel="canonical" href="/">
<meta property="twitter:card" content="summary_large_image">
<meta property="twitter:site" content="@https://twitter.com/RLadiesChicago">
<meta property="twitter:creator" content="@https://twitter.com/RLadiesChicago">
<meta property="og:site_name" content="R-Ladies Chicago">
<meta property="og:url" content="/">
<meta property="og:title" content="R-Ladies Chicago">
<meta property="og:description" content="The Chicago Chapter of R-Ladies!">
<meta property="og:locale" content="en-us">
<meta property="og:updated_time" content="2018-05-09T00:00:00+00:00">
<title>R-Ladies Chicago</title>
</head>
<body id="top" data-spy="scroll" data-target="#navbar-main" data-offset="71" >
<nav class="navbar navbar-default navbar-fixed-top" id="navbar-main">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse"
data-target=".navbar-collapse" aria-expanded="false">
<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="/"><img src="/img/rladies-chicago_banner_plain.jpg" alt="R-Ladies Chicago"></a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="nav-item">
<a href="/#talks" data-target="#talks">
<span>Events</span>
</a>
</li>
<li class="nav-item">
<a href="/#projects" data-target="#projects">
<span>Info</span>
</a>
</li>
<li class="nav-item">
<a href="/#posts" data-target="#posts">
<span>Blog</span>
</a>
</li>
<li class="nav-item">
<a href="/#contact" data-target="#contact">
<span>Contact</span>
</a>
</li>
<li class="nav-item">
<a href="/home/execboard/" data-target="/home/execboard/">
<span>Leadership Team</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
<span id="homepage" style="display: none"></span>
<section id="about" class="home-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>Welcome to <br/>R-Ladies Chicago!</h1>
<p><a href="https://www.meetup.com/rladies-chicago/" target="_blank">Meetup</a> <br/> <a href="https://twitter.com/RLadiesChicago" target="_blank">Twitter</a> <br/> <a href="https://github.com/rladies-chicago" target="_blank">Github</a> <br/> <a href="https://rladies-chicago.slack.com" target="_blank">Slack</a> <br/> <a href="#sponsors">Sponsors</a></p>
</div>
<div class="col-xs-12 col-md-8">
<p><img src="/img/rladieschi_group_2.png" alt="R-Ladies Chicago!" /></p>
<p></p>
<p>R-Ladies Chicago was founded in July 2017 with the goal of supporting women and gender minorities who use R. Anyone with an interest in R is welcome - our group includes data scientists, career transitioners, academic researchers, industry experts, students, interested individuals, and others. Whether you’re a beginner or an expert, we encourage you to attend a monthly Meetup!</p>
<p>Past R-Ladies events have included R workshops, career panels, networking events, and talks from package developers. If you’re interested in sharing your work at a R-Ladies event, we encourage you to reach out to <strong><a href="mailto:chicago@rladies.org" target="_blank">chicago@rladies.org</a>.</strong></p>
<p>To see our upcoming meetings, check out our <strong><a href="https://www.meetup.com/rladies-chicago/" target="_blank">Meetup Page</a>.</strong></p>
<p>R-Ladies is a global community! Check out <strong><a href="https://rladies.org/" target="_blank">R-Ladies Global</a>.</strong></p>
<p>R-Ladies is dedicated to providing a harassment-free experience for everyone. We do not tolerate harassment of participants in any form. We follow the <strong><a href="https://github.com/rladies/starter-kit/wiki/Code-of-Conduct" target="_blank">R-Ladies International Code of Conduct</a>.</strong></p>
<p><em>This website was made via <a href="https://github.com/rstudio/blogdown" target="_blank">blogdown</a> using the Academic theme. If you find a typo, please feel free to submit an issue / PR to this <a href="https://github.com/rladies-chicago/rladies-chicago.github.io" target="_blank">repo</a>.</em></p>
</div>
</div>
</div>
</section>
<section id="talks" class="home-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>Events</h1>
<p>See our <a href="https://www.meetup.com/rladies-chicago/" target="_blank">Meetup Page</a> for the most up-to-date info about our upcoming events!</p>
<p class="view-all">
<a href="/talk/">
More Talks
<i class="fa fa-angle-double-right"></i>
</a>
</p>
</div>
<div class="col-xs-12 col-md-8">
<div class="pub-list-item" style="margin-bottom: 1rem" itemscope itemtype="http://schema.org/Event">
<i class="fa fa-comment-o pub-icon" aria-hidden="true"></i>
<span itemprop="name"><a href="/talk/2020-08-31-meetup/">An Antarctic Tour of the Tidyverse</a></span>
<div itemprop="startDate">
Aug 31, 2020
5:30 PM
</div>
<div class="talk-metadata">
An Antarctic Tour of the Tidyverse
</div>
<div class="talk-links">
</div>
</div>
<div class="pub-list-item" style="margin-bottom: 1rem" itemscope itemtype="http://schema.org/Event">
<i class="fa fa-comment-o pub-icon" aria-hidden="true"></i>
<span itemprop="name"><a href="/talk/2020-05-05-meetup/">Learning & Community Building in Data Science: Conference Talks!</a></span>
<div itemprop="startDate">
May 5, 2020
6:00 PM
</div>
<div class="talk-metadata">
R-Ladies Chicago Technical Meetup
</div>
<div class="talk-links">
</div>
</div>
<div class="pub-list-item" style="margin-bottom: 1rem" itemscope itemtype="http://schema.org/Event">
<i class="fa fa-comment-o pub-icon" aria-hidden="true"></i>
<span itemprop="name"><a href="/talk/2020-03-18-meetup/">Career Series Part II: Our Best Resource is Each Other, A Q&A Panel</a></span>
<div itemprop="startDate">
Mar 18, 2020
6:00 PM
</div>
<div class="talk-metadata">
R-Ladies Chicago Career Series
</div>
<div class="talk-links">
</div>
</div>
</div>
</div>
</div>
</section>
<section id="projects" class="home-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>Info</h1>
<p>Learn more about how to get involved in R-Ladies.</p>
</div>
<div class="col-xs-12 col-md-8">
<div class="row isotope projects-container js-layout-masonry">
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-6 project-item isotope-item community meetups rladies">
<div class="card">
<a href="/project/join/" title="" class="card-image hover-overlay"
>
<img src="/img/join_cover.jpg" alt="" class="img-responsive">
</a>
<div class="card-text">
<h4><a href="/project/join/" >Join Us!</a></h4>
<div class="card-desription">
<p>Join the R-Ladies Chicago Community!</p>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-6 project-item isotope-item community meetups rladies">
<div class="card">
<a href="/project/support/" title="" class="card-image hover-overlay"
>
<img src="/img/support.png" alt="" class="img-responsive">
</a>
<div class="card-text">
<h4><a href="/project/support/" >Support Us!</a></h4>
<div class="card-desription">
<p>R-Ladies relies on community support to host inclusive and informative events.</p>
</div>
</div>
</div>
</div>
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-6 project-item isotope-item study-groups dataviz nlp astrostatistics">
<div class="card">
<a href="/project/studygroups/" title="" class="card-image hover-overlay"
>
<img src="/img/study_groups.jpg" alt="" class="img-responsive">
</a>
<div class="card-text">
<h4><a href="/project/studygroups/" >Study Groups</a></h4>
<div class="card-desription">
<p>Study groups meet separately from our monthly meetups to talk about specific topics in R.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="posts" class="home-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>Blog</h1>
<p class="view-all">
<a href="/post/">
More Posts
<i class="fa fa-angle-double-right"></i>
</a>
</p>
</div>
<div class="col-xs-12 col-md-8">
<div class="card-simple" itemscope itemprop="blogPost" itemtype="http://schema.org/BlogPosting">
<div class="article-metadata">
<span class="article-date">
<time datetime="2020-05-11 21:13:14 -0500 CDT" itemprop="datePublished dateModified">
May 11, 2020
</time>
</span>
<span itemscope itemprop="author publisher" itemtype="http://schema.org/Person">
<meta itemprop="name" content="R-Ladies Chicago">
</span>
<span class="middot-divider"></span>
<span class="article-reading-time">
1 min read
</span>
<span class="middot-divider"></span>
<span class="article-categories">
<i class="fa fa-folder"></i>
<a href="/categories/r/">R</a>
</span>
</div>
<h3 class="article-title" itemprop="headline">
<a href="/post/2020_05_11_book_club/" itemprop="url">R-Ladies Book Club</a>
</h3>
<div class="article-style" itemprop="articleBody">
<p>Come beat those quarentine blues! Outside of the huge number of tools and packages in R, we can continue to expand our knowledge of the statistical engine behind these. We will particularly focus on developing starter questions for data analysis projects.
You can sign up <a href="https://bit.ly/3b125El">here</a>.</p>
</div>
<p class="read-more" itemprop="mainEntityOfPage">
<a href="/post/2020_05_11_book_club/" class="btn btn-primary btn-outline">
CONTINUE READING
</a>
</p>
</div>
<div class="card-simple" itemscope itemprop="blogPost" itemtype="http://schema.org/BlogPosting">
<div class="article-metadata">
<span class="article-date">
<time datetime="2020-02-07 21:13:14 -0500 -0500" itemprop="datePublished dateModified">
Feb 7, 2020
</time>
</span>
<span itemscope itemprop="author publisher" itemtype="http://schema.org/Person">
<meta itemprop="name" content="R-Ladies Chicago">
</span>
<span class="middot-divider"></span>
<span class="article-reading-time">
2 min read
</span>
<span class="middot-divider"></span>
<span class="article-categories">
<i class="fa fa-folder"></i>
<a href="/categories/meetups/">meetups</a>
</span>
</div>
<h3 class="article-title" itemprop="headline">
<a href="/post/2020-02-07-career-series/" itemprop="url">Introducing our 2020 Career Series!</a>
</h3>
<div class="article-style" itemprop="articleBody">
R-Ladies Chicago is proud to host our three-part Career Series in February, March, and April. With hiring season on the horizon, our Career Series will empower R-Ladies with the skills necessary to succeed in the data field. Join us for any/all of these events!
Thank you to Groupon for hosting! All events will take place at Groupon Corporate Headquarters (600 W. Chicago Avenue; Chicago, IL 60654).
Please check in at the front desk then go up to the third floor
</div>
<p class="read-more" itemprop="mainEntityOfPage">
<a href="/post/2020-02-07-career-series/" class="btn btn-primary btn-outline">
CONTINUE READING
</a>
</p>
</div>
</div>
</div>
</div>
</section>
<section id="execboard" class="home-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>Leadership Team</h1>
</div>
<div class="col-xs-12 col-md-8">
<h2 id="meet-the-chicago-executive-board">Meet the Chicago Executive Board!</h2>
<h3 id="angela-li">Angela Li</h3>
<p><img src="/img/exec/Angela.jpg" align="left" style="margin: 5px 10px" alt=""></p>
<p><strong>Angela Li</strong> is the R Spatial Advocate for the Center for Spatial Data Science at the University of Chicago, where she teaches R to the UChicago community! She is the founder of R-Ladies Chicago, having founded our chapter in July 2017. She received her Bachelor’s Degree from UChicago in June 2018. Angela loves using R to make maps!</p>
<h3 id="kristi-angel">Kristi Angel</h3>
<p><img src="/img/exec/Kristi.jpg" align="left" style="margin: 5px 10px" alt=""></p>
<p><strong>Kristi Angel</strong> is a Data Scientist on the experimentation platform team at <a href="https://www.builtinchicago.org/2017/08/29/spotlight-working-at-groupon" target="_blank">Groupon</a>. She has a meandering background that includes a brief stint in the Army and more than a decade in the food and beverage industry! Kristi earned her B.S. in Physics from the University of Washington and her M.S. in Statistics at Loyola University Chicago. She enjoys mentoring developing data scientists and members of marginalized groups navigating career pivots. Beyond utilizing R as a means to make sense from data, she feels connected to the R community’s commitment to inclusion and diversity, and the opinionated application of programming best practices in the statistical and data sciences.</p>
<h3 id="winnie-cai">Winnie Cai</h3>
<p><img src="/img/exec/Winnie.jpg" align="left" style="margin: 5px 10px" alt=""></p>
<p><strong>Winnie Cai, CFA,</strong> has extensive experience in various fields in the investment industry. She is currently a CMBS Analyst at S&P Global. Previously, she worked as a Modeling Consultant at Thomson Reuters where she used APIs powered by Python and R to assist her clients with their investment research needs. Winnie Cai graduated from University of Illinois at Chicago with a Master’s Degree in Business Administration with a concentration in Financial Markets & Risk Management. Winnie Cai is dedicated to helping corporations improve operating efficiency using advanced technologies.</p>
<h3 id="zaynaib-giwa">Zaynaib Giwa</h3>
<p><img src="/img/exec/Ola.jpg" align="left" style="margin: 5px 10px" alt=""></p>
<p><strong>Zaynaib (Ola) Giwa</strong> is a Clinical Data Analyst at the University of Illinois at Chicago. Zaynaib Giwa is a self-taught programmer who uses her talents as a consultant of small businesses and startups. Zaynaib has redesigned and maintains a website for the City of Champaign- Urbana Regional Planning Commission, the Illinois Sustainable Technology Center, and Performers Music. She is a graduate of the University of Illinois with a Bachelor’s Degree in Statistics and a Masters Degree in Library and Information Sciences. You can read about her latest projects on her blog, <a href="https://zenagiwa.wordpress.com/" target="_blank">zenagiwa.wordpress.com</a>.</p>
<h3 id="sushmita-gopalan">Sushmita Gopalan</h3>
<p><img src="/img/exec/Sush.jpg" align="left" style="margin: 5px 10px" alt=""></p>
<p><strong>Sushmita Gopalan</strong> is a data scientist at the Northwestern Neighbourhood and Network Initiative at Northwestern University. She uses network and spatial analysis to understand the ways in which social ties, space and their intersection influence behaviour. She has a B.A./M.A. in Economics from the Indian Institute of Technology Madras and an M.A. in Computational Social Science from the University of Chicago. Sushmita uses R to wrangle data and make pretty maps and graphs.</p>
<h3 id="katherine-simeon">Katherine Simeon</h3>
<p><img src="/img/exec/Katherine.jpg" align="left" style="margin: 5px 10px" alt=""></p>
<p><strong>Katherine Simeon</strong> is a PhD Candidate in Communication Sciences & Disorders at Northwestern University. Her research looks at how experience with sound (or lack thereof) impacts language processing in children and individuals with hearing loss, specifically cochlear implant users. Katherine uses R for data cleaning, statistical analyses, & data visualization. In her free time, she enjoys knitting (both literally and with knitr) and running.</p>
<h3 id="abby-smith">Abby Smith</h3>
<p><img src="/img/exec/Abby.jpg" align="left" style="margin: 5px 10px" alt=""></p>
<p><strong>Abby Smith</strong> is PhD Candidate in Statistics at Northwestern University. Her research looks at the impact of entity resolution error on social network inferences, with an interest in global health and development. She also is a teaching assistant for the Data Science sequence, which focuses on using R for data cleaning and machine learning pipelines. She is currently a Women in Data Science (WiDS) ambassador for Chicago. When not talking about the beauty of R to anyone who will listen, she enjoys running, hiking, and drinking dangerous amounts of coffee.</p>
<h3 id="aarthi-vemuri">Aarthi Vemuri</h3>
<p><img src="/img/exec/Aarthi.jpg" align="left" style="margin: 5px 10px" alt=""></p>
<p><strong>Aarthi Vemuri</strong> is a Senior Marketing & Modeling Analyst at Swanson Health Products. She uses R to understand the impact of marketing promotions on consumer behavior and to conduct pricing analyses. She graduated from BITS, Pilani with a Information Systems degree and a M.S. in Business Analytics from University of Connecticut. Along with work, Aarthi enjoys painting and photography.</p>
<h3 id="scarlett-winters">Scarlett Winters</h3>
<p><img src="/img/exec/Scarlett.jpg" align="left" style="margin: 5px 10px" alt=""></p>
<p><strong>Scarlett Winters</strong> is a Data Integration Analyst at Strata Decision Technology and a Master’s student in Information Systems Management at Loyola Quinlan School of Business. She is interested in how to use R to explore inequalities toward the LGBTQ community, healthcare issues, as well as broader social-political topics. Scarlett has previous experience conducting analyses and visualizations within the telemedicine sector and academia. Presently, Scarlett is working with her Loyola colleagues to build an application based on emergency response data for Puerto Rican communities to use before, during, and after natural disasters. In her spare time, Scarlett enjoys running, traveling, cooking, and butch fashion.</p>
<p></p>
<h2 id="board-alumni">Board Alumni</h2>
<p><img src="/img/exec/board_archive.png" align="center" style="margin: 5px 10px" alt=""></p>
<p></p>
<p><em>We are grateful to former R-Ladies Chicago Board Members:</em></p>
<p><strong>Amy Yang</strong> (2018-2019)<br />
<strong>Anne Corinne Carroll</strong> (2018-2019)<br />
<strong>Abhinaya Konduru</strong> (2018-2019)<br />
<strong>Caroline K. Williams</strong> (2018-2019)<br />
<strong>Amanda Dobbyn</strong> (2017-2018)<br />
<strong>Kaelen Medeiros</strong> (2017-2018)</p>
</div>
</div>
</div>
</section>
<section id="contact" class="home-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>Contact</h1>
</div>
<div class="col-xs-12 col-md-8">
<ul class="fa-ul" itemscope>
<li>
<i class="fa-li fa fa-envelope fa-2x" aria-hidden="true"></i>
<span id="person-email" itemprop="email"><a href="mailto:chicago@rladies.org">chicago@rladies.org</a></span>
</li>
<li>
<i class="fa-li fa fa-map-marker fa-2x" aria-hidden="true"></i>
<span id="person-address" itemprop="address">Chicago, Illinois</span>
</li>
</ul>
</div>
</div>
</div>
</section>
<section id="sponsors" class="home-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>Sponsors</h1>
<p>Interested in sponsoring R-Ladies Chicago? Please email us at <a href="mailto:chicago@rladies.org" target="_blank">chicago@rladies.org</a>.</p>
</div>
<div class="col-xs-12 col-md-8">
<p>We are grateful to the following sponsors for supporting R-Ladies Chicago:</p>
<p><img src="/img/rladies_sponsors_v3.jpg" alt="We are grateful to our sponsors for their essential contributions to R-Ladies Chicago" /></p>
</div>
</div>
</div>
</section>
<section id="tags" class="home-section">
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-4 section-heading">
<h1>Tags</h1>
</div>
<div class="col-xs-12 col-md-8">
<div id="tag-cloud">
<a href="/tags/astrostatistics/" style="font-size:0.8rem">astrostatistics</a
>
<a href="/tags/beginners/" style="font-size:0.8rem">beginners</a
>
<a href="/tags/career/" style="font-size:0.8rem">career</a
>
<a href="/tags/chicago/" style="font-size:1.611106133023426rem">chicago</a
>
<a href="/tags/community/" style="font-size:2.2366666680242364rem">community</a
>
<a href="/tags/data/" style="font-size:0.8rem">data</a
>
<a href="/tags/dataviz/" style="font-size:0.8rem">dataviz</a
>
<a href="/tags/learning/" style="font-size:0.8rem">learning</a
>
<a href="/tags/meetups/" style="font-size:1.8235019852575358rem">meetups</a
>
<a href="/tags/nlp/" style="font-size:0.8rem">nlp</a
>
<a href="/tags/package-development/" style="font-size:0.8rem">package-development</a
>