-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.xml
1891 lines (1454 loc) · 111 KB
/
index.xml
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
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>Janani Ravi</title>
<link>https://jananiravi.github.io/</link>
<description>Recent content on Janani Ravi</description>
<generator>Source Themes Academic (https://sourcethemes.com/academic/)</generator>
<language>en-us</language>
<copyright>&copy; Janani Ravi, {year}</copyright>
<lastBuildDate>Fri, 05 Apr 2019 00:00:00 -0400</lastBuildDate>
<atom:link href="https://jananiravi.github.io/index.xml" rel="self" type="application/rss+xml" />
<item>
<title>Research</title>
<link>https://jananiravi.github.io/group/</link>
<pubDate>Fri, 05 Apr 2019 00:00:00 -0400</pubDate>
<guid>https://jananiravi.github.io/group/</guid>
<description></description>
</item>
<item>
<title>Using Tidyverse for Genomics workshop</title>
<link>https://jananiravi.github.io/talk/2019-iitm/</link>
<pubDate>Tue, 05 Mar 2019 14:00:00 -0500</pubDate>
<guid>https://jananiravi.github.io/talk/2019-iitm/</guid>
<description></description>
</item>
<item>
<title>Tidyverse workshop</title>
<link>https://jananiravi.github.io/talk/2019-plb/</link>
<pubDate>Wed, 13 Feb 2019 09:00:00 -0500</pubDate>
<guid>https://jananiravi.github.io/talk/2019-plb/</guid>
<description></description>
</item>
<item>
<title>Simple rules to make an effective scientific presentation</title>
<link>https://jananiravi.github.io/talk/2019-cvm/</link>
<pubDate>Thu, 24 Jan 2019 12:00:00 -0500</pubDate>
<guid>https://jananiravi.github.io/talk/2019-cvm/</guid>
<description></description>
</item>
<item>
<title>Join us!</title>
<link>https://jananiravi.github.io/joinus/</link>
<pubDate>Tue, 15 Jan 2019 00:00:00 -0500</pubDate>
<guid>https://jananiravi.github.io/joinus/</guid>
<description>
<h1 id="open-positions">Open positions</h1>
<h2 id="undergraduate-student-research">Undergraduate Student Research</h2>
<p>We are looking for highly motivated and quantitatively-minded undergraduate students to work on a research project developing computational approaches to accelerate drug-/vaccine-target discovery against infectious diseases. Currently, we prefer students coming in with fellowships/scholarships (<em>e.g.,</em> SROP, ENSURE, other department/college-level awards).</p>
<p>We are happy to train them in many aspects of data-intensive biology. A keen interest in bioinformatics, computational biology, statistics/biostatistics, computer science, genetics, or related fields, and prior programming experience in R, Python, Perl, and/or C/C++ would be a huge plus. As part of this project, they will have the opportunity to work closely with a senior scientist and learn to: a) work with large datasets, b) write structured, well-documented code to analyze, integrate, and visualize these datasets, c) interpret the results in the context of pathogenesis, and d) communicate the results in the form of a paper and presentation.</p>
<p>We have high expectations for their level of commitment to research, and we are keen on incorporating their contributions into co-authored papers in conferences/journals. As an undergraduate student, if you are interested in discussing research opportunities, please send me <a href="mailto:janani@msu.edu" target="_blank">an email</a> to set up a time to talk.</p>
<h2 id="graduate-student-research">Graduate Student Research</h2>
<p>We are looking for a highly motivated Masters student who is looking to do an internship or a long-term project (6mo–1yr) in developing computational approaches to accelerate drug-/vaccine-target discovery against infectious diseases. You will be a perfect fit if you have a background in bioinformatics, computational biology, statistics/biostatistics, computer science, genetics, or related fields. Having programming experience in R, Python, Perl, and/or C/C++ is a huge plus. In addition to these technical qualifications, we are looking for someone who can work well in a team, work hard, and give/take constructive feedback.</p>
<p>This research experience will give you the opportunity to i) use data analysis and visualization to address key biological questions as pertaining to molecular evolution, diagnosis, and treatment (using R), ii) present at group meetings, journals, technical workshops and conferences, iii) develop high coding standards for writing efficient, clear, well-documented, version-controlled code, iv) equip yourself professional for your next career step.</p>
<p><em>Start a conversation</em>
Please send me your latest CV and a cover letter that includes i) a summary of your academic/work experience, ii) description of relevant coursework, research experience (incl. publications, conference talks/posters), iii) a brief note on familiarity in the field of phylogenetics, molecular evolution, and comparative pathogenomics, iv) coding experience, if any. If you are already at MSU, please <a href="mailto:janani@msu.edu" target="_blank">email me</a> to set a time to <a href="//jananiravi.github.io/#contact" target="_blank">meet</a> and discuss your interest.</p>
<h2 id="visiting-scientist">Visiting Scientist</h2>
<p>We welcome visiting scientists to come and collaborate with us for a short period (summer/6mo). If you have a burning question or an interesting idea that is directly related to or complements our research project(s), we would be glad to share our space, experience, and resources with you to develop your project and execute it. Having your own funding would be the easiest way to make this happen. There are some funding sources that you can apply to (e.g., <a href="http://www.biologists.com/travelling-fellowships/" target="_blank">CoB</a>). Please send me an <a href="mailto:janani@msu.edu" target="_blank">email</a> to discuss this opportunity.</p>
<h2 id="collaboration">Collaboration</h2>
<p>If you are interested in any of our specific areas of research or have other great ideas that we could work on together, <a href="mailto:janani@msu.edu" target="_blank">email me</a> right away!</p>
<p><a href="https://jananiravi.github.io/#contact" target="_blank">Contact details</a></p>
</description>
</item>
<item>
<title>2018: Year in Review | RLEL</title>
<link>https://jananiravi.github.io/post/rlel-2018/rlel-2018/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 -0500</pubDate>
<guid>https://jananiravi.github.io/post/rlel-2018/rlel-2018/</guid>
<description>
<p>Thanks to everyone who attended, participated or sponsored <a href="https://rladies-eastlansing.github.io" target="_blank">R-Ladies East Lansing</a> in 2018! We had a fantastic start &amp; a very successful first 6mo <a href="http://bit.ly/rlel-venue" target="_blank">on campus</a>! We hosted 7 meetups since July 2018 including two very well-attended workshops (70+ attendees) and a DataViz challenge! Help us continue spreading the R &amp; Data Science spirit across MSU in 2019! Contact us <a href="mailto:eastlansing@rladies.org" target="_blank">eastlansing@rladies.org</a> about co-hosting or sponsoring a meetup/workshop in Spring 2019. As always, R-Ladies events are open to all R-users across all levels of expertise including students, faculty and staff, and non-MSU folks.</p>
<h1 id="2018-year-in-review">2018: Year in Review</h1>
<h2 id="the-team">The Team</h2>
<p><strong>Organizers</strong>: <a href="https://jananiravi.github.io" target="_blank">Janani Ravi</a>, <a href="https://icer.msu.edu/about/directory/archer" target="_blank">Camille Archer</a></p>
<p><strong>Co-organizers</strong>: Kayla Johnson, Arjun Krishnan, Nate Davis (~ <a href="https://thekrishnanlab.org" target="_blank">Krishnan Lab</a>)</p>
<h2 id="meetup-presentations-material">Meetup Presentations/Material</h2>
<p><a href="https://github.com/rladies-eastlansing/meetup-presentations-eastlansing/tree/master/presentations" target="_blank">GitHub</a> | <a href="http://bit.ly/rlel-meetup-presentations-gd" target="_blank">Google Drive</a> | <a href="http://bit.ly/rlel-pics-2018" target="_blank">Photos</a></p>
<h2 id="2018-sponsors">2018 Sponsors</h2>
<p><img src="https://jananiravi.github.io/rlel-2018/index_files/rlel-sponsors-2018.jpg" alt="" />
Grand Traverse Pie (2018-12) | Business Analytics (2018-11) | SSDA (2018-10) |
Krishnan Lab (2018-09) | College of Veterinary Medicine (2018-09) |
BEACON (2018-08) | iCER (2018-07)</p>
<h2 id="2018-meetups">2018 Meetups</h2>
<h3 id="kickoff-meeting">Kickoff meeting</h3>
<p>Welcome to RLEL | Who We Are | What We Do | Upcoming Meetups</p>
<h3 id="lightning-talks">Lightning talks</h3>
<h4 id="aug-13-2018">Aug 13, 2018</h4>
<ul>
<li>Git &amp; R by Melissa Dale</li>
<li>Experimental languages w/ R by Le Ni La</li>
<li>Having fun w/ Rcade by Kayla Johnson</li>
<li>Websites w/ R by Camille Archer</li>
<li>UpSet plots w/ R by Janani Ravi</li>
<li>BigDataIgnite conference promo</li>
</ul>
<h4 id="sep-10-2018">Sep 10, 2018</h4>
<ul>
<li>Morphospaces w/ #Geomorph by Acacia Ackles</li>
<li>Integrating Python &amp; R w/ #Reticulate by Anna Yannakopoulos</li>
<li>Literature Survey w/ #Bibliometrix by Veronica Frans</li>
<li>GLM w/ #glmulti by Lauren Wisnieski</li>
<li>Cool #dataviz resources Data-to-Viz RGraph Gallery by Janani Ravi</li>
</ul>
<h4 id="sep-24-2018">Sep 24, 2018</h4>
<ul>
<li>Spatial Humanities w/ R Rachael White</li>
<li>R/qtl Miranda Haus</li>
<li>Hyenas, Microbes &amp; R Connie Rojas</li>
<li>Publication quality figures w/ #ggpubr by Taylor Dunivin</li>
<li>R+LaTeX=knitr Cara Feldscher</li>
</ul>
<h3 id="workshops">Workshops</h3>
<ul>
<li>Intro to Tidy Data Workshop: <a href="https://github.com/rladies-eastlansing/meetup-presentations-eastlansing/tree/master/presentations/20181105-workshop-tidydata" target="_blank">GitHub</a> • <a href="https://bit.ly/rlel-20181105" target="_blank">Google Drive</a></li>
<li>Data Visualization Workshop: <a href="https://github.com/rladies-eastlansing/meetup-presentations-eastlansing/tree/master/presentations/20181008-workshop-dataviz" target="_blank">GitHub</a> • <a href="https://drive.google.com/drive/folders/1tSrhZ_TymJfxeZbe8hAdtPjcmhoeAJls?usp=sharing" target="_blank">Google Drive</a></li>
</ul>
<h2 id="year-in-pictures">Year in pictures</h2>
<div class="gallery">
<a data-fancybox="gallery-gallery" href="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/2018-rlel-sponsors.png" data-caption="2018: Meetup Sponsors">
<img src="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/2018-rlel-sponsors_hubce25919d144db2df6f7db803ac6af17_6917740_0x190_resize_lanczos_2.png" alt="">
</a>
<a data-fancybox="gallery-gallery" href="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20180706-rlel-chicago.jpg" >
<img src="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20180706-rlel-chicago_hu42fc7509618802349aa988fbd7243a25_514640_0x190_resize_q90_lanczos.jpg" alt="">
</a>
<a data-fancybox="gallery-gallery" href="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20180725-kickoff-activities.jpg" >
<img src="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20180725-kickoff-activities_hufb152286910be5f1f97a12c3ee9ba939_334772_0x190_resize_q90_lanczos.jpg" alt="">
</a>
<a data-fancybox="gallery-gallery" href="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20180725-kickoff-group.jpg" data-caption="July 2018: Kickoff meeting">
<img src="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20180725-kickoff-group_hu58b28802711a3c8afea9155c7bae7e71_394797_0x190_resize_q90_lanczos.jpg" alt="">
</a>
<a data-fancybox="gallery-gallery" href="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20180813-collage.jpg" >
<img src="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20180813-collage_hu57bfde7ce0f63a8f2911579dde681ddf_813532_0x190_resize_q90_lanczos.jpg" alt="">
</a>
<a data-fancybox="gallery-gallery" href="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20180826-rladies-collage.jpg" >
<img src="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20180826-rladies-collage_hu4f1e9fea0b3fc71314fb730919eec33b_1109597_0x190_resize_q90_lanczos.jpg" alt="">
</a>
<a data-fancybox="gallery-gallery" href="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20180910-collage.jpg" >
<img src="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20180910-collage_hu8e0f1e6eb80c4af61623ed9a1842f9f2_782112_0x190_resize_q90_lanczos.jpg" alt="">
</a>
<a data-fancybox="gallery-gallery" href="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20180924-collage.jpg" >
<img src="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20180924-collage_hua01839f5a1afcaad4f452bacfbebc633_206950_0x190_resize_q90_lanczos.jpg" alt="">
</a>
<a data-fancybox="gallery-gallery" href="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20181008-collage.jpg" >
<img src="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20181008-collage_hua99e81342a4312203de795a4b6c302ad_811467_0x190_resize_q90_lanczos.jpg" alt="">
</a>
<a data-fancybox="gallery-gallery" href="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20181105-collage.jpg" >
<img src="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20181105-collage_huf67a94b4b49f7252ca2125810aa6a32d_335840_0x190_resize_q90_lanczos.jpg" alt="">
</a>
<a data-fancybox="gallery-gallery" href="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20181203-collage.jpg" >
<img src="https://jananiravi.github.io/post/rlel-2018/rlel-2018/gallery/20181203-collage_huca736b01f7059b1c46c063b99a96199f_1034725_0x190_resize_q90_lanczos.jpg" alt="">
</a>
</div>
<h1 id="you-r-ladies-east-lansing">You &amp; R-Ladies East Lansing</h1>
<ul>
<li>Join the R-Ladies Community on Slack (<a href="https://bit.ly/rlel-slack-#" target="_blank">https://bit.ly/rlel-slack-#</a>)</li>
<li>Lead (or team-lead) presentations/discussions in a meetup</li>
<li>Help run the meetup(s) (help R-newbies, help pick up pizza)</li>
<li>Contribute to Blog Entries, Webpage (<a href="https://rladies-eastlansing.github.io" target="_blank">https://rladies-eastlansing.github.io</a>)</li>
<li>Be a Social Butterfly (<a href="https://twitter.com/RLadiesELansing" target="_blank">Twitter</a> | <a href="https://facebook.com/rladieseastlansing" target="_blank">Facebook</a> | Courier pigeon?)</li>
<li>Sponsor a meeting (OR help find us monthly meeting sponsors; &lt;$75)</li>
<li>Bring in a speaker and/or Bring in fellow R-users!</li>
<li><p>Suggest a topic &amp; bring in volunteers from the 200+ Meetup/Slack R-Ladies!</p></li>
<li><p>Getting Involved @ R-Ladies: <a href="https://rladies.org/about-us/help/" target="_blank">https://rladies.org/about-us/help/</a></p></li>
</ul>
<h2 id="how-to-be-in-touch">How to be in touch?</h2>
<p>Access our presentations, R scripts and more on <a href="//github.com/rladies-eastlansing" target="_blank">Github</a> and follow us on twitter to stay up to date about R-Ladies news! <em>Join the <a href="https://meetup.com/rladies-east-lansing/" target="_blank">Meetup group</a> to be notified of our upcoming meetings!</em></p>
<ul>
<li><a href="https://www.rladies.org" target="_blank">R-Ladies Global</a>
<ul>
<li>Meetup: <a href="https://meetup.com/rladies-east-lansing/" target="_blank">https://meetup.com/rladies-east-lansing/</a>
<ul>
<li>Twitter: <a href="http://twitter.com/RLadiesELansing" target="_blank">@RLadiesELansing</a> &amp; <a href="http://twitter.com/RLadiesGlobal" target="_blank">@RLadiesGlobal</a></li>
</ul></li>
<li>Slack: <a href="https://rladies-eastlansing.slack.com" target="_blank">https://rladies-eastlansing.slack.com</a></li>
<li>Github: <a href="https://github.com/rladies-eastlansing" target="_blank">@rladies-eastlansing</a> &amp; <a href="https://github.com/rladies" target="_blank">@rladies</a></li>
<li>E-mail:
<ul>
<li>eastlansing [at] rladies [dot] org</li>
<li>janani [at] rladies [dot] org</li>
<li>info [at] rladies [dot] org</li>
</ul></li>
</ul></li>
</ul>
<h2 id="organizers">Organizers</h2>
<p><a href="janani@rladies.org" target="_blank">Janani Ravi</a> &amp; <a href="camille@rladies.org" target="_blank">Camille Archer</a></p>
<p><em>PS</em> Community Policies &amp; Code of Conduct:</p>
<p>Full community guidelines are found here: <a href="https://github.com/rladies/starter-kit/wiki" target="_blank">https://github.com/rladies/starter-kit/wiki</a></p>
</description>
</item>
<item>
<title>2019: RLEL Upcoming Events</title>
<link>https://jananiravi.github.io/post/rlel-upcoming-2019/rlel-2019-upcoming/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 -0500</pubDate>
<guid>https://jananiravi.github.io/post/rlel-upcoming-2019/rlel-2019-upcoming/</guid>
<description>
<h2 id="a-little-background">A little background</h2>
<p><a href="https://rladies-eastlansing.github.io" target="_blank">R-Ladies East Lansing</a> welcomes R-enthusiasts of all proficiency levels, including aspiring and experienced R programmers, who are interested in mentoring, networking &amp; expertise upskilling. This non-profit, civil society community is designed to develop members’ R skills &amp; knowledge through social, collaborative learning &amp; sharing. Supporting minority identity access to STEM skills &amp; careers, the Free Software Movement, and contributing to the global R community!</p>
<p>Anyone and everyone interested in R/Data Science should join the group. We encourage members to actively participate, contributing as learners, teachers, developers or innovators! We encourage women and minority genders to present/lead most sessions, conversations but we have no restrictions whatsoever about who can participate in membership, discussions and other activities. Please join us and bring your R-family &amp; R-friends!</p>
<h1 id="2019-what-s-next">2019: What’s next?</h1>
<h2 id="upcoming-workshops">Upcoming Workshops</h2>
<ul>
<li>Intro to Statistics w/ R (Spring; workshop series)</li>
<li>Intro to RMarkdown (Summer)</li>
<li>Intro to Shiny (Summer)</li>
<li>Intro to Version Control (Git) w/ R (Summer)</li>
</ul>
<p><strong>Register &amp; RSVP on Meetup</strong>: <a href="https://meetup.com/rladies-eastlansing" target="_blank">https://meetup.com/rladies-eastlansing</a></p>
<p>Would you like to <em>team-lead a workshop</em>? Contact us if you’d to present for 5–10 min slots within the workshop or longer if desired.</p>
<p><strong>Join</strong> the channels on <strong>Slack</strong>: #workshop-rstats #workshop-shiny #workshop-rmarkdown OR Email us: <a href="mailto:eastlansing@rladies.org" target="_blank">eastlansing@rladies.org</a></p>
<h2 id="introduce-a-girl-to-engineering-2019-02-16">Introduce a Girl to Engineering (2019-02-16)</h2>
<p>Register for R-Ladies East Lansing’s activity booth: <a href="http://meetu.ps/e/Gfntz/yBMBS/f" target="_blank">http://meetu.ps/e/Gfntz/yBMBS/f</a></p>
<p>MSU Women in Engg. outreach: <a href="http://bit.ly/msu-wie-k12-outreach" target="_blank">http://bit.ly/msu-wie-k12-outreach</a></p>
<h2 id="women-in-data-science-conference-2019-04">Women in Data Science Conference (2019-04)</h2>
<p><a href="https://widsconference.org" target="_blank">https://widsconference.org</a></p>
<p><strong>Register</strong>: TBA</p>
<p>Would like to give a talk/present a poster? Stay tuned on <a href="https://meetup.com/rladies-eastlansing" target="_blank">Meetup</a>.
Contact us: <a href="mailto:eastlansing@rladies.org" target="_blank">eastlansing@rladies.org</a></p>
<h2 id="r-ladies-east-lansing-bookclub">R-Ladies East Lansing Bookclub</h2>
<h3 id="academic-incl">Academic incl.</h3>
<ul>
<li>R for Data Science</li>
<li>Learning Statistics with R</li>
<li>R programming for Data Science</li>
<li>Hands-On Programming with R</li>
</ul>
<h3 id="nonfiction-incl">Nonfiction incl.</h3>
<ul>
<li>Algorithms to Live by</li>
<li>Weapons of Math Destruction</li>
</ul>
<h3 id="blog-posts-articles-incl">Blog posts &amp; Articles incl.</h3>
<ul>
<li>Excuse me, do you have a moment to talk about version control?</li>
<li>Good enough practices in Scientific Computing</li>
<li>Happy Git w/ R</li>
</ul>
<h2 id="meetup-presentations-material">Meetup Presentations/Material</h2>
<p><a href="https://github.com/rladies-eastlansing/meetup-presentations-eastlansing/tree/master/presentations" target="_blank">GitHub</a> | <a href="http://bit.ly/rlel-meetup-presentations-gd" target="_blank">Google Drive</a> | <a href="http://bit.ly/rlel-pics-2018" target="_blank">Photos</a></p>
<h1 id="you-r-ladies-east-lansing">You &amp; R-Ladies East Lansing</h1>
<ul>
<li>Join the R-Ladies Community on Slack (<a href="https://bit.ly/rlel-slack-#" target="_blank">https://bit.ly/rlel-slack-#</a>)</li>
<li>Lead (or team-lead) presentations/discussions in a meetup</li>
<li>Help run the meetup(s) (help R-newbies, help pick up pizza)</li>
<li>Contribute to Blog Entries, Webpage (<a href="https://rladies-eastlansing.github.io" target="_blank">https://rladies-eastlansing.github.io</a>)</li>
<li>Be a Social Butterfly (<a href="https://twitter.com/RLadiesELansing" target="_blank">Twitter</a> | <a href="https://facebook.com/rladieseastlansing" target="_blank">Facebook</a> | Courier pigeon?)</li>
<li>Sponsor a meeting (OR help find us monthly meeting sponsors; &lt;$75)</li>
<li>Bring in a speaker and/or Bring in fellow R-users!</li>
<li><p>Suggest a topic &amp; bring in volunteers from the 200+ Meetup/Slack R-Ladies!</p></li>
<li><p>Getting Involved @ R-Ladies: <a href="https://rladies.org/about-us/help/" target="_blank">https://rladies.org/about-us/help/</a></p></li>
</ul>
<h2 id="how-to-be-in-touch">How to be in touch?</h2>
<p>Access our presentations, R scripts and more on <a href="//github.com/rladies-eastlansing" target="_blank">Github</a> and follow us on twitter to stay up to date about R-Ladies news! <em>Join the <a href="https://meetup.com/rladies-east-lansing/" target="_blank">Meetup group</a> to be notified of our upcoming meetings!</em></p>
<ul>
<li><a href="https://www.rladies.org" target="_blank">R-Ladies Global</a>
<ul>
<li>Meetup: <a href="https://meetup.com/rladies-east-lansing/" target="_blank">https://meetup.com/rladies-east-lansing/</a>
<ul>
<li>Twitter: <a href="http://twitter.com/RLadiesELansing" target="_blank">@RLadiesELansing</a> &amp; <a href="http://twitter.com/RLadiesGlobal" target="_blank">@RLadiesGlobal</a></li>
</ul></li>
<li>Slack: <a href="https://rladies-eastlansing.slack.com" target="_blank">https://rladies-eastlansing.slack.com</a></li>
<li>Github: <a href="https://github.com/rladies-eastlansing" target="_blank">@rladies-eastlansing</a> &amp; <a href="https://github.com/rladies" target="_blank">@rladies</a></li>
<li>E-mail:
<ul>
<li>eastlansing [at] rladies [dot] org</li>
<li>janani [at] rladies [dot] org</li>
<li>info [at] rladies [dot] org</li>
</ul></li>
</ul></li>
</ul>
<h2 id="the-team">The Team</h2>
<p><strong>Organizers</strong>: <a href="janani@rladies.org" target="_blank">Janani Ravi</a>, <a href="camille@rladies.org" target="_blank">Camille Archer</a></p>
<p><strong>Co-organizers</strong>: Kayla Johnson, Arjun Krishnan (~ <a href="https://thekrishnanlab.org" target="_blank">Krishnan Lab</a>)</p>
<p><em>PS</em> Community Policies &amp; Code of Conduct:</p>
<p>Full community guidelines are found here: <a href="https://github.com/rladies/starter-kit/wiki" target="_blank">https://github.com/rladies/starter-kit/wiki</a></p>
</description>
</item>
<item>
<title>Bio</title>
<link>https://jananiravi.github.io/bio/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 -0500</pubDate>
<guid>https://jananiravi.github.io/bio/</guid>
<description></description>
</item>
<item>
<title>2018: Year in Books | Goodreads</title>
<link>https://jananiravi.github.io/post/goodreads-2018/goodreads-2018/</link>
<pubDate>Tue, 01 Jan 2019 00:00:00 +0000</pubDate>
<guid>https://jananiravi.github.io/post/goodreads-2018/goodreads-2018/</guid>
<description>
<p>Find my latest reads &amp; recommendations on <a href="//goodreads.com/jananiravi">Goodreads</a>!</p>
<div id="myyearinbooks-summary-stats" class="section level4">
<h4><a href="https://www.goodreads.com/user/year_in_books/2018/1671098">2018: #MyYearInBooks Summary Stats</a></h4>
</div>
<div id="book-read" class="section level4">
<h4><a href="https://www.goodreads.com/review/list/1671098-janani-ravi?shelf=2018-reads">Book Read</a></h4>
</div>
</description>
</item>
<item>
<title>Useful Resources</title>
<link>https://jananiravi.github.io/post/useful-links/useful-resources/</link>
<pubDate>Mon, 12 Nov 2018 00:00:00 +0000</pubDate>
<guid>https://jananiravi.github.io/post/useful-links/useful-resources/</guid>
<description>
<p><em>My posts with some <a href="https://jananiravi.github.io/categories/resources">#useful-resources</a>.</em></p>
<div id="great-posts-academic" class="section level2">
<h2>Great posts | academic</h2>
<ul>
<li><a href="https://blogs.scientificamerican.com/guest-blog/the-awesomest-7-year-postdoc-or-how-i-learned-to-stop-worrying-and-love-the-tenure-track-faculty-life/">The Awesomest 7-year Postdoc <em>by</em> Radhika Nagpal | Scientific American</a></li>
<li><a href="https://jananiravi.github.io/post/2016/matt-might-blog/">Matt Might’s Blog</a></li>
<li><a href="https://jananiravi.github.io/post/2018/modelers-hippocratic-oath">Modeler’s Hippocratic oath</a></li>
</ul>
</div>
<div id="bioinformatics" class="section level2">
<h2>Bioinformatics</h2>
<ul>
<li><a href="https://c2-d2.github.io/hanage-lab/Microbial-Bioinformatics-starter-kit/">Microbial Bioinformatics Starter Kit <em>by</em> Lauren Cowley</a></li>
<li>Microbial genome annotation <em>by</em> Michael Eisen
<ul>
<li><a href="https://twitter.com/phylogenomics/status/999406494859718662">Twitter thread</a> &amp; <a href="https://twitter.com/i/moments/999641962025074696">moment</a></li>
</ul></li>
<li><a href="https://holtlab.net/2015/02/25/tools-for-bacterial-comparative-genomics/">Tools for bacterial comparative genomes <em>by</em> Holt lab</a></li>
</ul>
</div>
<div id="r" class="section level2">
<h2>R</h2>
<ul>
<li><a href="https://jananiravi.github.io/post/2018/git-github-links">Git, GitHub and R</a></li>
<li><a href="https://paulvanderlaken.com/2017/08/10/r-resources-cheatsheets-tutorials-books/">R resources</a> <em>by</em> <a href="paulvanderlaken.com">Paul Vanderlaken</a></li>
<li>Related post: <a href="https://paulvanderlaken.com/2018/05/21/r-tips-and-tricks/">R Tips and Tricks</a></li>
</ul>
</div>
<div id="data-visualization" class="section level2">
<h2>Data Visualization</h2>
<ul>
<li><a href="https://holtlab.net/2015/10/03/plotting-trees-data/">Plotting trees + data <em>by</em> Holt Lab</a></li>
</ul>
</div>
<div id="blogdown-hugo-academic-r-markdown" class="section level2">
<h2>Blogdown, Hugo, Academic &amp; R Markdown</h2>
<ul>
<li><a href="https://bookdown.org/yihui/blogdown/">Blogdown: Creating websites with R Markdown <em>by</em> Yihui Xie</a></li>
<li><a href="https://github.com/gohugoio">Hugo</a>
<ul>
<li><a href="https://discourse.gohugo.io/">Hugo discussion forum</a></li>
</ul></li>
<li><a href="https://github.com/gcushen/hugo-academic">Hugo Academic <em>by</em> George Cushen</a>
<ul>
<li><a href="https://sourcethemes.com/academic/">Academic</a></li>
</ul></li>
<li><a href="https://rmarkdown.rstudio.com/index.html">R Markdown</a></li>
<li><a href="http://mcdussault.rbind.io/post/building-your-blog-using-blogdown/">Building your blog using blogdown <em>by</em> Marie Dussault</a></li>
</ul>
</div>
<div id="blogging-tips" class="section level2">
<h2>Blogging tips</h2>
<ul>
<li><a href="http://hackerspace.lifehacker.com/top-tips-for-writing-a-blog-post-in-30-minutes-1688838523">Lifehacker</a></li>
<li><a href="http://matt.might.net/articles/how-to-blog-as-an-academic/">6 tips for low-cost academic blogging <em>by</em> Matt Might</a></li>
<li><a href="http://www.masalmon.eu/rladiesct/slides#1">Ready to start your data science blog? <em>by</em> Maëlle Salmon</a></li>
</ul>
</div>
</description>
</item>
<item>
<title>Bacterial Stress Response</title>
<link>https://jananiravi.github.io/projects/stress-response/</link>
<pubDate>Wed, 07 Nov 2018 00:00:00 -0500</pubDate>
<guid>https://jananiravi.github.io/projects/stress-response/</guid>
<description>
<h2 id="summary">Summary</h2>
<p>During my postdoctoral research at Rutgers University, I focused on using computational approaches to study various facets of host and pathogen biology including:</p>
<ul>
<li>delineating the molecular mechanism underlying a newly identified stress response operon in the tubercle bacterium involving the phage-shock-proteins (psp);</li>
<li>unraveling the evolution of bacterial stress response systems (psp) across the tree of life using protein sequence-structure-function relationships;</li>
<li>reconstructing and analyzing the mycobacterial sigma factor regulatory network.</li>
</ul>
<h2 id="related-publications">Related publications</h2>
<ul>
<li>The evolution, conservation, and covariation of the Psp envelope-stress-response system across the tree of life, <em>in preparation.</em></li>
<li><a href="https://jananiravi.github.io/publication/2018/anto">Variations on a theme: evolution of the phage-shock-protein system in Actinobacteria</a></li>
<li><a href="https://jananiravi.github.io/publication/2015/molmicro">The Psp system of <em>Mycobacterium tuberculosis</em> integrates envelope stress-sensing and envelope-preserving functions</a></li>
<li><a href="https://jananiravi.github.io/publication/2016/natcomm">Reconstruction and topological characterization of the sigma factor regulatory network of <em>Mycobacterium tuberculosis</em></a></li>
</ul>
<h2 id="collaborators">Collaborators</h2>
<h4 id="rutgers-university">Rutgers University</h4>
<ul>
<li>Marila Gennaro</li>
<li>Pratik Datta</li>
<li>Matt Neiditch</li>
<li>Arnold Barton</li>
<li>Rasel Khan</li>
<li>Rinki Chauhan</li>
</ul>
<h4 id="ncbi-nih">NCBI, NIH</h4>
<ul>
<li>L Aravind</li>
<li>Vivek Anantharaman</li>
</ul>
<h4 id="suny-buffalo">SUNY Buffalo</h4>
<ul>
<li>Gabor Balazsi</li>
</ul>
<h2 id="rice-university">Rice University</h2>
<ul>
<li>Oleg Igoshin</li>
</ul>
</description>
</item>
<item>
<title>R-Ladies East Lansing | Workshop on Intro to Tidy Data w/ R</title>
<link>https://jananiravi.github.io/talk/2018-rlel-tidydata/</link>
<pubDate>Mon, 05 Nov 2018 18:00:00 -0500</pubDate>
<guid>https://jananiravi.github.io/talk/2018-rlel-tidydata/</guid>
<description><p><img src="https://github.com/rladies-eastlansing/meetup-presentations-eastlansing/blob/master/event-planning-promos/201811-Meetup-flyer.png?raw=true" width="60%" /></p>
<p>Workshop material: <a href="https://github.com/rladies-eastlansing/meetup-presentations-eastlansing/tree/master/presentations/20181105-workshop-tidydata" target="_blank">GitHub</a> • <a href="https://bit.ly/rlel-20181105" target="_blank">Google Drive</a></p>
</description>
</item>
<item>
<title>R-Ladies East Lansing | Workshop on Intro to Data Visualization w/ R</title>
<link>https://jananiravi.github.io/talk/2018-rlel-dataviz/</link>
<pubDate>Mon, 08 Oct 2018 18:00:00 -0400</pubDate>
<guid>https://jananiravi.github.io/talk/2018-rlel-dataviz/</guid>
<description><p><img src="https://github.com/rladies-eastlansing/meetup-presentations-eastlansing/blob/master/event-planning-promos/201810-Meetup-flyer.png?raw=true" width="60%" /></p>
<p>Workshop material: <a href="https://github.com/rladies-eastlansing/meetup-presentations-eastlansing/tree/master/presentations/20181008-workshop-dataviz" target="_blank">GitHub</a> • <a href="https://drive.google.com/drive/folders/1tSrhZ_TymJfxeZbe8hAdtPjcmhoeAJls?usp=sharing" target="_blank">Google Drive</a></p>
</description>
</item>
<item>
<title>Using computational appraches to understand host-pathogen biology</title>
<link>https://jananiravi.github.io/talk/2018-ismb/</link>
<pubDate>Mon, 09 Jul 2018 15:50:00 -0400</pubDate>
<guid>https://jananiravi.github.io/talk/2018-ismb/</guid>
<description></description>
</item>
<item>
<title>Launching R-Ladies East Lansing!</title>
<link>https://jananiravi.github.io/post/rlel-launch/rlel-launch/</link>
<pubDate>Sun, 01 Jul 2018 00:00:00 +0000</pubDate>
<guid>https://jananiravi.github.io/post/rlel-launch/rlel-launch/</guid>
<description>
<div id="welcome-to-our-new-chapter" class="section level2">
<h2><em>Welcome to our new chapter!</em></h2>
</div>
<div id="what-were-about" class="section level2">
<h2>What we’re about</h2>
<p><em>R-Ladies East Lansing</em> is a local chapter of R-Ladies Global. We meet to discuss, learn, teach, present, work on all things R! Our priority is to provide a safe community space for anyone identifying as a minority gender who is interested in and/or working with R. The group exists to promote gender diversity in the R community worldwide. We are pro-actively inclusive of queer, trans, and all minority identities, with additional sensitivity to intersectional identities.</p>
</div>
<div id="who-should-join" class="section level2">
<h2>Who should join?</h2>
<p>R-Ladies East Lansing welcomes members of <strong>all R proficiency levels</strong>, whether you are a new or aspiring R user, or an experienced R programmer interested in mentoring, networking &amp; expert upskilling. Our non-profit, civil society community is designed to develop our members’ R skills &amp; knowledge through social, collaborative learning &amp; sharing. <em>Supporting minority identity access to STEM skills &amp; careers, the Free Software Movement, and contributing to the global R community!</em></p>
<p><em>Anyone and everyone interested in R/Data Science</em> should join our group and participate/contribute in any way you can, be they learners, teachers, developers or innovators! We encourage women and minority genders to present/lead most sessions, conversations but we have <em>no restrictions</em> whatsoever when it comes to membership, participation, and discussions. So, please join us and bring your R-family &amp; R-friends!</p>
</div>
<div id="how-to-be-in-touch" class="section level2">
<h2>How to be in touch?</h2>
<p>Access our presentations, R scripts and more on <a href="//github.com/rladies-eastlansing">Github</a> and follow us on twitter to stay up to date about R-Ladies news! <em>Join the <a href="https://meetup.com/rladies-east-lansing/">Meetup group</a> to be notified of the first meeting in July!</em></p>
<ul>
<li><a href="https://www.rladies.org">R-Ladies Global</a>
<ul>
<li>Meetup: <a href="https://meetup.com/rladies-east-lansing/" class="uri">https://meetup.com/rladies-east-lansing/</a>
<ul>
<li>Twitter: <a href="http://twitter.com/RLadiesELansing">@RLadiesELansing</a> &amp; <a href="http://twitter.com/RLadiesGlobal">@RLadiesGlobal</a></li>
</ul></li>
<li>Slack: <a href="https://rladies-eastlansing.slack.com" class="uri">https://rladies-eastlansing.slack.com</a></li>
<li>Github: <a href="https://github.com/rladies-eastlansing">@rladies-eastlansing</a> &amp; <a href="https://github.com/rladies">@rladies</a></li>
<li>E-mail:
<ul>
<li>eastlansing [at] rladies [dot] org</li>
<li>janani [at] rladies [dot] org</li>
<li>info [at] rladies [dot] org</li>
</ul></li>
</ul></li>
</ul>
</div>
<div id="organizers" class="section level2">
<h2>Organizers</h2>
<p><a href="janani@msu.edu">Janani Ravi</a> &amp; <a href="archerc5@msu.edu">Camille Archer</a></p>
</div>
<div id="ps-community-policies-code-of-conduct" class="section level2">
<h2><em>PS</em> Community Policies &amp; Code of Conduct:</h2>
<p>Full community guidelines are found here: <a href="https://github.com/rladies/starter-kit/wiki" class="uri">https://github.com/rladies/starter-kit/wiki</a></p>
</div>
</description>
</item>
<item>
<title>Modeler's Hippocratic Oath</title>
<link>https://jananiravi.github.io/post/modelers-oath/modelers-hippocratic-oath/</link>
<pubDate>Thu, 24 May 2018 00:00:00 +0000</pubDate>
<guid>https://jananiravi.github.io/post/modelers-oath/modelers-hippocratic-oath/</guid>
<description>
<p>I recently came across the <strong>Modeler&rsquo;s Hippocratic Oath</strong> while reading <a href="//twitter.com/mathbabedotorg" target="_blank">Cathy O&rsquo;Neil&rsquo;s</a> &lsquo;Weapons of Math Destruction&rsquo;.</p>
<p>This was originally written by <a href="//twitter.com/EmanuelDerman" target="_blank">Emanuel Derman</a> and <a href="//twitter.com/wilmott" target="_blank">Paul Wilmott</a> in the wake of the 2008 financial crisis.</p>
<h2 id="the-oath">The Oath</h2>
<ul>
<li>I will remember that I didn’t make the world, and it doesn’t satisfy my equations.</li>
<li>Though I will use models boldly to estimate value, I will not be overly impressed by mathematics.</li>
<li>I will never sacrifice reality for elegance without explaining why I have done so.</li>
<li>Nor will I give the people who use my model false comfort about its accuracy. Instead, I will make explicit its assumptions and oversights.</li>
<li>I understand that my work may have enormous effects on society and the economy, many of them beyond my comprehension.
<img src="https://jananiravi.github.io/post/2018-05-24-modelers-hippocratic-oath-md_files/modelers_hippocratic_oath.jpg" alt="" width="300px" height="300px"/></li>
</ul>
</description>
</item>
<item>
<title>R-Ladies East Lansing</title>
<link>https://jananiravi.github.io/projects/rladies-eastlansing/</link>
<pubDate>Mon, 07 May 2018 00:00:00 -0400</pubDate>
<guid>https://jananiravi.github.io/projects/rladies-eastlansing/</guid>
<description><p><a href="https://jananiravi.github.io/tags/rladies">R-Ladies East Lansing Posts &amp; Workshops</a></p>
<p><img src="https://jananiravi.github.io/interests/rladies_files/rladies.jpeg" alt="" width="200px" height="200px"/></p>
</description>
</item>
<item>
<title>Reading</title>
<link>https://jananiravi.github.io/reading/</link>
<pubDate>Mon, 07 May 2018 00:00:00 -0400</pubDate>
<guid>https://jananiravi.github.io/reading/</guid>
<description><p>Check out my <a href="//goodreads.com/jananiravi" target="_blank">Goodreads</a> profile for my latest reads and recommendations! :)</p>
</description>
</item>
<item>
<title>Resources</title>
<link>https://jananiravi.github.io/resources/</link>
<pubDate>Mon, 07 May 2018 00:00:00 -0400</pubDate>
<guid>https://jananiravi.github.io/resources/</guid>
<description>
<p>My posts with some <a href="https://jananiravi.github.io/categories/resources">useful resources</a></p>
<ul>
<li><a href="https://jananiravi.github.io/post/2018/git-github-links">Git, GitHub and R</a></li>
<li><a href="https://jananiravi.github.io/post/2018/modelers-hippocratic-oath">Modeler&rsquo;s Hippocratic oath</a></li>
</ul>
<h2 id="great-posts-academic">Great posts | academic</h2>
<ul>
<li><a href="https://blogs.scientificamerican.com/guest-blog/the-awesomest-7-year-postdoc-or-how-i-learned-to-stop-worrying-and-love-the-tenure-track-faculty-life/" target="_blank">The Awesomest 7-year Postdoc <em>by</em> Radhika Nagpal | Scientific American</a></li>
</ul>
<h2 id="bioinformatics">Bioinformatics</h2>
<ul>
<li><a href="https://c2-d2.github.io/hanage-lab/Microbial-Bioinformatics-starter-kit/" target="_blank">Microbial Bioinformatics Starter Kit <em>by</em> Lauren Cowley</a></li>
<li>Microbial genome annotation <em>by</em> Michael Eisen
<ul>
<li><a href="https://twitter.com/phylogenomics/status/999406494859718662" target="_blank">Twitter thread</a> &amp; <a href="https://twitter.com/i/moments/999641962025074696" target="_blank">moment</a></li>
</ul></li>
<li><a href="https://holtlab.net/2015/02/25/tools-for-bacterial-comparative-genomics/" target="_blank">Tools for bacterial comparative genomes <em>by</em> Holt lab</a></li>
</ul>
<h2 id="r">R</h2>
<ul>
<li><a href="https://paulvanderlaken.com/2017/08/10/r-resources-cheatsheets-tutorials-books/" target="_blank">R resources</a> <em>by</em> <a href="paulvanderlaken.com" target="_blank">Paul Vanderlaken</a>
<ul>
<li>Related post: <a href="https://paulvanderlaken.com/2018/05/21/r-tips-and-tricks/" target="_blank">R Tips and Tricks</a></li>
</ul></li>
</ul>
<h2 id="blogdown-hugo-academic-r-markdown">Blogdown, Hugo, Academic &amp; R Markdown</h2>
<ul>
<li><a href="https://bookdown.org/yihui/blogdown/" target="_blank">Blogdown: Creating websites with R Markdown <em>by</em> Yihui Xie</a></li>
<li><a href="https://github.com/gohugoio" target="_blank">Hugo</a>
<ul>
<li><a href="https://discourse.gohugo.io/" target="_blank">Hugo discussion forum</a></li>
</ul></li>
<li><a href="https://github.com/gcushen/hugo-academic" target="_blank">Hugo Academic <em>by</em> George Cushen</a>
<ul>
<li><a href="https://sourcethemes.com/academic/" target="_blank">Academic</a></li>
</ul></li>
<li><a href="https://rmarkdown.rstudio.com/index.html" target="_blank">R Markdown</a></li>
<li><a href="http://mcdussault.rbind.io/post/building-your-blog-using-blogdown/" target="_blank">Building your blog using blogdown <em>by</em> Marie Dussault</a></li>
</ul>
<h2 id="data-visualization">Data Visualization</h2>
<ul>
<li><a href="https://holtlab.net/2015/10/03/plotting-trees-data/" target="_blank">Plotting trees + data <em>by</em> Holt Lab</a></li>
</ul>
<h2 id="blogging-tips">Blogging tips</h2>
<ul>
<li><a href="http://hackerspace.lifehacker.com/top-tips-for-writing-a-blog-post-in-30-minutes-1688838523" target="_blank">Lifehacker</a></li>
<li><a href="http://matt.might.net/articles/how-to-blog-as-an-academic/" target="_blank">6 tips for low-cost academic blogging <em>by</em> Matt Might</a></li>
<li><a href="http://www.masalmon.eu/rladiesct/slides#1" target="_blank">Ready to start your data science blog? <em>by</em> Maëlle Salmon</a></li>
</ul>
</description>
</item>
<item>
<title>Useful Git/GitHub links</title>
<link>https://jananiravi.github.io/post/git-links/git-github-links/</link>
<pubDate>Thu, 03 May 2018 00:00:00 +0000</pubDate>
<guid>https://jananiravi.github.io/post/git-links/git-github-links/</guid>
<description>
<div id="see-also" class="section level2">
<h2>See also:</h2>
<ul>
<li><a href="https://twitter.com/janani137/status/926516970920562688">My tweet dated: 2017-03-11</a></li>
<li><a href="https://jananiravi.github.io/interests/resources/">Resources</a> for more links related to Blogdown, Rmarkdown &amp; GitHub</li>
</ul>
</div>
<div id="git" class="section level1">
<h1>Git</h1>
<ul>
<li>Version control with <a href="http://swcarpentry.github.io/git-novice/">Git on Software Carpentry</a></li>
<li><a href="https://sklise.com/2012/10/07/git-workflow-beginner/">Git workflow for beginners</a></li>
<li><a href="https://mozilla.github.io/open-leadership-training-series/articles/get-your-project-online/">Mozilla Git</a></li>
<li><a href="http://guides.beanstalkapp.com/version-control/getting-started-with-git.html">Getting started with Git</a></li>
<li><a href="http://rogerdudler.github.io/git-guide/">Git, the simple guide</a></li>
<li><a href="https://github.com/cbattista/learn-github/wiki/Learn-Github-Exercises">Git exercises</a></li>
<li><a href="https://githowto.com/">GitHowTo</a></li>
<li><a href="https://sklise.com/2012/09/22/introduction-to-git/">Introduction to Git and command line</a></li>
<li><a href="https://kirstiejane.github.io/friendly-github-intro/">Friendly introduction to Git, Jane</a></li>
<li><a href="https://speakerdeck.com/alicebartlett/git-for-humans">Git for humans, slides by Bartlett</a></li>
<li><a href="http://learngitbranching.js.org">Learn Git branching</a></li>
<li><a href="https://medium.freecodecamp.com/git-cheat-sheet-and-best-practices-c6ce5321f52">Git cheat sheet and best practices</a></li>
<li><a href="http://ohshitgit.com">Getting yourself out of a Git mess</a></li>
<li><a href="https://try.github.io">Try Git</a></li>
</ul>
</div>
<div id="git-and-github" class="section level1">
<h1>Git and GitHub</h1>
<ul>
<li><a href="https://github.com/kbroman/github_tutorial">GitHub tutorial, Broman</a></li>
<li><a href="https://github.com/new">New GitHub repo</a></li>
<li><a href="http://seankross.com/the-unix-workbench/git-and-github.html">Git &amp; Github | Seankross</a></li>
<li><a href="https://mac.github.com/help.html">GitHub on Mac</a></li>
</ul>
</div>
<div id="r-and-git" class="section level1">
<h1>R and Git</h1>
<ul>
<li><a href="http://happygitwithr.com/big-picture.html">R with Git and GitHub</a></li>
</ul>
</div>
<div id="github-pages-gists-jekyll" class="section level1">
<h1>GitHub Pages, Gists | Jekyll</h1>
<ul>
<li>Github pages <a href="https://guides.github.com/features/pages/">#1</a> <a href="https://pages.github.com/">#2</a></li>
<li><a href="https://help.github.com/categories/gists/">Creating gists on Github</a></li>
<li><a href="https://jekyllrb.com/docs/installation/">Jekyll</a></li>
<li><a href="https://gcc.gnu.org/install/">GCC</a></li>
<li><a href="https://www.ruby-lang.org/en/downloads/">Ruby</a></li>
<li><a href="https://rubygems.org/pages/download">Ruby Gems</a></li>
</ul>
</div>
</description>
</item>
<item>
<title>Variations on a theme: evolution of the phage-shock-protein system in Actinobacteria</title>
<link>https://jananiravi.github.io/publication/psp-actino/anto/</link>
<pubDate>Tue, 27 Feb 2018 00:00:00 -0500</pubDate>
<guid>https://jananiravi.github.io/publication/psp-actino/anto/</guid>
<description></description>
</item>
<item>
<title>2017: Year in Books | Goodreads</title>
<link>https://jananiravi.github.io/post/goodreads-2017/goodreads-2017/</link>
<pubDate>Sun, 31 Dec 2017 00:00:00 +0000</pubDate>
<guid>https://jananiravi.github.io/post/goodreads-2017/goodreads-2017/</guid>
<description>
<p>Find my latest reads &amp; recommendations on <a href="//goodreads.com/jananiravi">Goodreads</a>!</p>
<div id="myyearinbooks-summary-stats" class="section level4">
<h4><a href="https://www.goodreads.com/user/year_in_books/2017/1671098">2017: #MyYearInBooks Summary Stats</a></h4>
</div>
<div id="books-read" class="section level4">
<h4><a href="https://www.goodreads.com/review/list/1671098-janani-ravi?shelf=2017-reads">Books Read</a></h4>
</div>
</description>
</item>
<item>
<title>Black Swan by Nassim Taleb</title>
<link>https://jananiravi.github.io/post/black-swan/black-swan-nassim-taleb/</link>
<pubDate>Wed, 26 Apr 2017 00:00:00 +0000</pubDate>
<guid>https://jananiravi.github.io/post/black-swan/black-swan-nassim-taleb/</guid>
<description>
<div id="book-review" class="section level1">
<h1>Book Review</h1>
<p>I find myself increasingly drawn to the field of Behavioral Economics (so much so that I was considering a second PhD to channelize my love!), and how beautifully evasive these concepts are in real life.
Starting with Daniel Kahneman’s Thinking Fast and Slow, followed by the writings and blogs of Steven Levitt, Dan Ariely, Nate Silver and Barry Schwartz (and still others like Malcolm Gladwell), has set me thinking a lot about how insane and illogical we are. We do see ourselves as logical and reasonably intelligent people who do not fall for the usual traps (OK, maybe you didn’t see me that way, but we’ll let that slide for now…), but how fool-proof are we? What about the narrative fallacy - ‘aah, that makes sense now’ or ‘I thought so’ or confirmation biases?</p>
<p>‘The Black Swan’ by Nassim Nicholas Taleb (<a href="http://fooledbyrandomness.com/" class="uri">http://fooledbyrandomness.com/</a>) has been on my list ever since I first got infatuated with this topic. I finally finished it last month. Man, is it it well-written! The guy is brilliant, and his wit and humor are unmatchable! Among other things, he leads (and concludes) with our love for everything normal, statistically speaking and otherwise, and how we can’t but help make the obvious blunders of predicting, quite erroneously, based on the past, even though we know fully well that life doesn’t present itself as a series of bell curves stringed together just so that we can get away with some easy math! You’ll hear a lot about epistemology (defined in PS3; truth be told, I hadn’t heard of this word until last month), mediocristan (the Gaussian life) vs extremistan (scale-free distributions encountered more often than not in real-life)</p>
<p>Here’s a snippet: <a href="https://drive.google.com/file/d/0B7_wAV4HsNrkQmdFMndHSHhldFE/view" class="uri">https://drive.google.com/file/d/0B7_wAV4HsNrkQmdFMndHSHhldFE/view</a> Never mind if you don’t get it. I enjoyed every last bit of the book, and hope that you do too!
Give it a try - whether you love it or hate it, it would be time well-spent! :)</p>
<p><em>Happy reading!</em></p>
<p>PS1. I’ve heard that people either love it or hate it. Clearly, I fall in the bin #1. Do I agree with everything? Well, yeah, almost everything.
PS2. Luckily, none of you are directly tied to economics or financial sectors. :D Well, scientists and statisticians have been insulted too, but the elegance of it makes it OK! Lots to think about.:)
PS3. Epistemology studies the nature of knowledge, justification, and the rationality of belief. Much of the debate in epistemology centers on four areas: (1) the philosophical analysis of the nature of knowledge and how it relates to such concepts as truth, belief, and justification, (2) various problems of skepticism, (3) the sources and scope of knowledge and justified belief, and (4) the criteria for knowledge and justification.</p>
<div id="tags" class="section level2">
<h2>Tags</h2>
<p>#behavioraleconomics #books #suggestions #mustread #randomness #economics #business #philosophy</p>
<p>blurb, review, snapshot below</p>
</div>
</div>
<div id="blurb" class="section level1">
<h1>Blurb</h1>
<p>A black swan is a highly improbable event with three principal characteristics: It is unpredictable; it carries a massive impact; and, after the fact, we concoct an explanation that makes it appear less random, and more predictable, than it was.</p>
<p>The astonishing success of Google was a black swan; so was 9/11. For Nassim Nicholas Taleb, black swans underlie almost everything about our world, from the rise of religions to events in our own personal lives.</p>
<p>Why do we not acknowledge the phenomenon of black swans until after they occur? Part of the answer, according to Taleb, is that humans are hardwired to learn specifics when they should be focused on generalities.</p>
<p>We concentrate on things we already know and time and time again fail to take into consideration what we don’t know. We are, therefore, unable to truly estimate opportunities, too vulnerable to the impulse to simplify, narrate, and categorize, and not open enough to rewarding those who can imagine the “impossible.”</p>
<p>For years, Taleb has studied how we fool ourselves into thinking we know more than we actually do. We restrict our thinking to the irrelevant and inconsequential, while large events continue to surprise us and shape our world. Now, in this revelatory book, Taleb explains everything we know about what we don’t know. He offers surprisingly simple tricks for dealing with black swans and benefiting from them.</p>
<p>Elegant, startling, and universal in its applications ‘The Black Swan’ will change the way you look at the world. Taleb is a vastly entertaining writer, with wit, irreverence, and unusual stories to tell. He has a polymathic command of subjects ranging from cognitive science to business to probability theory.</p>
<p>‘The Black Swan’ is a landmark book – itself a black swan.</p>
</div>
</description>
</item>
<item>
<title>Evolution and Conservation of the Psp Envelope Stress-Response System</title>
<link>https://jananiravi.github.io/talk/2017-asm-tb/</link>
<pubDate>Mon, 03 Apr 2017 17:00:00 -0400</pubDate>
<guid>https://jananiravi.github.io/talk/2017-asm-tb/</guid>
<description></description>