forked from katherinesimeon/WeAreRLadies-text-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rocur_tweets_thru_June2019.csv
We can't make this file beautiful and searchable because it's too large.
4051 lines (3249 loc) · 662 KB
/
rocur_tweets_thru_June2019.csv
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
Tweet.id,Tweet.permalink,Tweet.text,date,time_only,time,impressions,engagements,engagement.rate,retweets,replies,likes,Start,End,Curator,Twitter,Student
1.03565E+18,https://twitter.com/WeAreRLadies/status/1035648425033785344,"_ÙÔÜ, thanks for a lovely week! It's been a delight to be your curator! If nothing else, I hope you _ÙÕÏ purrr & glue a little more & consider joining the #rchickenladies _ÙÓ fun!_ÙÎÈ, @LucyStats https://t.co/a5eWyxWpXq",8/31/18,22:00,2018-08-31 22:00 +0000,2278,82,0.035996488,3,1,34,8/27/18,9/1/18,Lucy,LucyStats,0
1.03564E+18,https://twitter.com/WeAreRLadies/status/1035641811862216704,"@DataCamp @eamcvey @daattali I didn't realize this was launching _Ù_Û today, but how timely!https://t.co/09pb91me3F",8/31/18,21:33,2018-08-31 21:33 +0000,948,6,0.006329114,0,1,4,8/27/18,9/1/18,Lucy,LucyStats,0
1.03564E+18,https://twitter.com/WeAreRLadies/status/1035640875169144832,"Would YOU like to be one of our #RLadies curators? We have slots still available in _Ù_Ä October, _Ù November, and beyond!_Ù_Ñ All #rstats skill levels are welcome!‰Ï•ü Sign up here: https://t.co/aIoLVvcO3I https://t.co/Er1XgzgE3e",8/31/18,21:30,2018-08-31 21:30 +0000,6663,182,0.027315023,9,1,17,8/27/18,9/1/18,Lucy,LucyStats,0
1.03563E+18,https://twitter.com/WeAreRLadies/status/1035633324243345408,"_٪Π@kellrstats has a delightful series of posts on the @rOpenSci blog, featuring many luminaries ‰÷Û•ü in the #rstats community including @juliasilge, @noamross, @juliesquid, @_inundata, @JennyBryan, @dataandme, and @revodavid _ÙÓÑ https://t.co/YJ5n8fSFxu https://t.co/KDOZIZ2CLu",8/31/18,21:00,2018-08-31 21:00 +0000,11885,138,0.011611275,17,0,35,8/27/18,9/1/18,Lucy,LucyStats,0
1.03562E+18,https://twitter.com/WeAreRLadies/status/1035618231375953920,"Already know some #rstats Shiny basics? Try one of these @DataCamp courses:_ÙÕ» @eamcvey's flexdashboard https://t.co/7KEXxfNk93_ÙÒ_ @daattali's case studies https://t.co/r1n3sLfRDT‰Ï¬ shinydashboard https://t.co/ABwgnC6hhX https://t.co/7YywSVdBk7",8/31/18,20:00,2018-08-31 20:00 +0000,1746,43,0.024627721,1,1,10,8/27/18,9/1/18,Lucy,LucyStats,0
1.0356E+18,https://twitter.com/WeAreRLadies/status/1035603128220037120,"‰Ï¬ Want to build interactive web apps using #rstats? Check out @minebocek's (free!) @DataCamp course on Shiny!_ÙÓÑ https://t.co/wmghg5wOuo https://t.co/ncCdJfutbW",8/31/18,19:00,2018-08-31 19:00 +0000,2607,153,0.058688147,7,0,48,8/27/18,9/1/18,Lucy,LucyStats,0
1.03559E+18,https://twitter.com/WeAreRLadies/status/1035588685008457728,"_Ù__ This presentation by @rctatman on data ethics is _ÙÕø. Check out ""What you can, can‰Ûªt & shouldn‰Ûªt do w/ social media data"":_ÙÓÑ https://t.co/JoGFwcDXS1 https://t.co/WugT8CPfaw",8/31/18,18:02,2018-08-31 18:02 +0000,1389,40,0.028797696,0,1,6,8/27/18,9/1/18,Lucy,LucyStats,0
1.03557E+18,https://twitter.com/WeAreRLadies/status/1035572937615503360,"‰÷•ü more spreadsheet reference! @kara_woo & @kwbroman's paper on Data Organization in Spreadsheets is always worth a read (and re-read! and re-re-read!)_ÙÓÑ https://t.co/ieBLVyPfSX https://t.co/M4oZtiDnGH",8/31/18,17:00,2018-08-31 17:00 +0000,2850,79,0.027719298,4,0,16,8/27/18,9/1/18,Lucy,LucyStats,0
1.03556E+18,https://twitter.com/WeAreRLadies/status/1035557826750382080,"_Ù_ª Speaking of spreadsheets, give this @DataCamp podcast featuring @JennyBryan _ÙÔü a listen. It features gems _ÙÕ_ such as_ÙªÛ scary excel stories https://t.co/UaOTBst0ak_Ù_Â sanesheets, a rant about spreadsheets https://t.co/1brCBauRrq_ÙÓÑ https://t.co/g423yR0iIz",8/31/18,16:00,2018-08-31 16:00 +0000,6691,206,0.030787625,18,0,49,8/27/18,9/1/18,Lucy,LucyStats,0
1.03554E+18,https://twitter.com/WeAreRLadies/status/1035542735510536192,"‰Ï¬ Interested in tidying up a Very Messy spreadsheet using #rstats? Take a look at @sharlagelfand's post! _ÙÓÑ https://t.co/QE1ZMHFxFp https://t.co/YEQluQJ0ln",8/31/18,15:00,2018-08-31 15:00 +0000,4555,162,0.035565313,12,2,32,8/27/18,9/1/18,Lucy,LucyStats,0
1.03553E+18,https://twitter.com/WeAreRLadies/status/1035527633977524226,"_Ù__ Interested in making slides using #rstats?_ÙÕÏ Planning on giving an #RLadies presentation?@apreshill has created a xaringan template for you! Check out her blog post:_ÙÓÑ https://t.co/jzKcGzq2ui_Ù__ Want to learn more about @xieyihui's xaringan? _ÙÓÑ https://t.co/FKD7GVtsq8",8/31/18,14:00,2018-08-31 14:00 +0000,3775,119,0.031523179,7,0,43,8/27/18,9/1/18,Lucy,LucyStats,0
1.03551E+18,https://twitter.com/WeAreRLadies/status/1035512529710133248,"_ÙÔÜ For my final day as curator, I am going to highlight some of my favorite #RLadies' ‰Ï•ü blogposts _Ù__ presentations _Ù_ª podcasts_ÙÒÄ articles _ÙÔ©‰Û_ÙÇ courses_ÙÑ£ Tweet out YOUR work with the #Rladies hashtag & I'll retweet! https://t.co/XsAPcmU5Q2",8/31/18,13:00,2018-08-31 13:00 +0000,13769,147,0.010676157,8,0,23,8/27/18,9/1/18,Lucy,LucyStats,0
1.04E+18,https://twitter.com/WeAreRLadies/status/1035344145299197952,"@RuariRhodes I'm not sure about onedrive. There are other #rstats _ÙÒ_s for googledrive-like services like:_ÙÑÄ Dropbox: @_inundata's rdrop2 https://t.co/DJoHGMf5gQ ‰_ Box: boxr https://t.co/2wswzZAnzV",8/31/18,1:50,2018-08-31 01:50 +0000,342,14,0.040935673,0,1,1,8/27/18,9/1/18,Lucy,LucyStats,0
1.03534E+18,https://twitter.com/WeAreRLadies/status/1035343470351790081,"@AnnaDWilson It looks like there is a _ÙÒ_ called boxr that can handle this:https://t.co/2wswzZAnzVI've never used it, but it looks like box_write() may be the function you're looking for!",8/31/18,1:48,2018-08-31 01:48 +0000,271,6,0.022140221,0,0,1,8/27/18,9/1/18,Lucy,LucyStats,0
1.03525E+18,https://twitter.com/WeAreRLadies/status/1035247724331974661,"@hadleywickham In this example I just used the default template (Seti) which looks like it does some highlighting, but not strings. Most of the time I change the template to Solarized Light, which would have better highlighting ‰Ï¬",8/30/18,19:27,2018-08-30 19:27 +0000,617,5,0.008103728,0,0,1,8/27/18,9/1/18,Lucy,LucyStats,0
1.03498E+18,https://twitter.com/WeAreRLadies/status/1034977568548638722,"@niemasd @juliasilge @JennyBryan I think it really depends on your collaborators. When I have GitHub-savvy ones, that is my preference, but many of the folks I work with have never seen GitHub, so Google Drive is an lower bar version control system that they can utilize.",8/30/18,1:34,2018-08-30 01:34 +0000,82,2,0.024390244,0,0,1,8/27/18,9/1/18,Lucy,LucyStats,0
1.03497E+18,https://twitter.com/WeAreRLadies/status/1034969993883144194,"_ÙÒ¡ Hot off the press! Grab a tinyurl from @yoniceedee's _ÙÒ_Sharing pretty code is easy as _Ù´¤_ÙÓÑ https://t.co/aDdvd4qqIH https://t.co/c10cOq6VNF",8/30/18,1:04,2018-08-30 01:04 +0000,8230,637,0.077399757,13,3,50,8/27/18,9/1/18,Lucy,LucyStats,0
1.03492E+18,https://twitter.com/WeAreRLadies/status/1034919469456474113,@yoniceedee _ÙÑ£ What are YOUR favorite #rstats tips and tricks? https://t.co/vC5lwaopW6,8/29/18,21:43,2018-08-29 21:43 +0000,8448,146,0.017282197,4,4,23,8/27/18,9/1/18,Lucy,LucyStats,0
1.03E+18,https://twitter.com/WeAreRLadies/status/1034911369836077056,"_Ù÷_ Final (meta) #rstats tip: Create clean code images using @yoniceedee's carbonate _ÙÒ_‰÷•ü Copy code you'd like to share to your clipboard _ÙÒ܉ÏΕü Run this code to generate the image and view it in your browserx <- carbonate::carbon$new()x$browse()_ÙÓÑ https://t.co/ErMdbvThFK https://t.co/DiZ6wWnCrS",8/29/18,21:11,2018-08-29 21:11 +0000,7899,349,0.044182808,14,3,71,8/27/18,9/1/18,Lucy,LucyStats,0
1.03488E+18,https://twitter.com/WeAreRLadies/status/1034878352845234176,"_ÙÐ My fifth #rstats tip: Hate emailing _ÙÒ¤ Word documents back and forth? Send that doc you just knit from your .Rmd file to Google Drive!googledrive::drive_upload( ‰ÛÏmy_document.docx‰Û, type = ‰ÛÏdocument‰Û) https://t.co/TM0sX7ilgG",8/29/18,19:00,2018-08-29 19:00 +0000,13356,752,0.056304283,23,7,130,8/27/18,9/1/18,Lucy,LucyStats,0
1.03486E+18,https://twitter.com/WeAreRLadies/status/1034864557901180929,"_Ù_÷_Ù_÷ My fourth #rstats tip: Have a collaborator that would prefer for your documents _ÙÒÄ to be in Word? You can render .Rmd files into Word documents:_ÙÔä update your yaml:output: word_document-or-_ÙÔärmarkdown::render( ""my_document.Rmd"", output_format = ""word_document"") https://t.co/Dx49LROBuJ",8/29/18,18:05,2018-08-29 18:05 +0000,20690,495,0.023924601,14,5,62,8/27/18,9/1/18,Lucy,LucyStats,0
1.03E+18,https://twitter.com/WeAreRLadies/status/1034851483903315968,@henningsway The pipe really does always make things look prettier _Ù÷_ÙÕÉ https://t.co/DnVtmxDuqj,8/29/18,17:13,2018-08-29 17:13 +0000,2075,85,0.040963855,3,1,8,8/27/18,9/1/18,Lucy,LucyStats,0
1.03485E+18,https://twitter.com/WeAreRLadies/status/1034848541481623553,"_ÙÔÎ My third #rstats tip: glue ‰Ï¬ that broom output into some nice sentences for a manuscript:m <- lm(mpg ~ qsec + wt, data = mtcars)t <- broom::tidy(m)glue::glue_data(t, ""The point estimate for the {term} term is {round(estimate, 3)} (p-value = {signif(p.value, 2)})."") https://t.co/b70G0hgsmf",8/29/18,17:01,2018-08-29 17:01 +0000,28379,1053,0.037104902,43,2,179,8/27/18,9/1/18,Lucy,LucyStats,0
1.03E+18,https://twitter.com/WeAreRLadies/status/1034833056442413059,"‰ÏΕü My second #rstats tip: use broom::tidy() _ÙÝ to get a nice data frame of your model results:m <- lm(mpg ~ qsec + wt, data = mtcars)broom::tidy(m) https://t.co/WcBRd7ETah",8/29/18,16:00,2018-08-29 16:00 +0000,8215,266,0.032379793,15,2,68,8/27/18,9/1/18,Lucy,LucyStats,0
1.03482E+18,https://twitter.com/WeAreRLadies/status/1034817323922804737,"‰÷•ü My first #rstats tip: use purrr::map_df() to read all .csv files in a _ÙÒâ and stick them in a single data frame:f <- list.files( ""my_folder"", pattern = ""*.csv"", full.names = TRUE)d <- purrr::map_df(f, readr::read_csv, .id = ""id"") https://t.co/JWxI5ecr0k",8/29/18,14:57,2018-08-29 14:57 +0000,44625,1659,0.037176471,109,8,545,8/27/18,9/1/18,Lucy,LucyStats,0
1.0348E+18,https://twitter.com/WeAreRLadies/status/1034801405213724672,"_ÙÇ Happy Wednesday! In the spirit of @robinson_es's Lesser Known ‰_•üs of the Tidyverse (_ÙÒ_ https://t.co/8jlqDWrmf2), today I am going to be sharing some of my favorite #rstats tricks! https://t.co/6fa1uIajYD",8/29/18,13:54,2018-08-29 13:54 +0000,27442,526,0.019167699,43,2,145,8/27/18,9/1/18,Lucy,LucyStats,0
1.03448E+18,https://twitter.com/WeAreRLadies/status/1034482994675941377,_ÙÜ•ü‰Û‰ªÛ•ü Interested in getting some #rstats practice? Try out this week's _Ùö #TidyTuesday! https://t.co/fmpXjoetLG,8/28/18,16:49,2018-08-28 16:49 +0000,4509,57,0.012641384,7,0,25,8/27/18,9/1/18,Lucy,LucyStats,0
1.03442E+18,https://twitter.com/WeAreRLadies/status/1034422460274356225,Good morning! _ÙÕÄ Kick off your Tuesday by replying to @cantabile's fun #rstats question! _ÙÔà https://t.co/lruIdyUvV4,8/28/18,12:48,2018-08-28 12:48 +0000,3471,27,0.007778738,4,0,16,8/27/18,9/1/18,Lucy,LucyStats,0
1.03418E+18,https://twitter.com/WeAreRLadies/status/1034176223465766912,"Don't see an #RLadies chapter nearby? Checkout @RLadiesRemote! _ÙÒ¤ Sign un for emails & join the @SlackHQ group https://t.co/OCM1Gl1Obc‰÷¥•ü Check out the next coffee chat, scheduled for Aug 29th https://t.co/nDcuU0yvXb",8/27/18,20:30,2018-08-27 20:30 +0000,1732,28,0.016166282,4,0,6,8/27/18,9/1/18,Lucy,LucyStats,0
1.03415E+18,https://twitter.com/WeAreRLadies/status/1034153581442523136,"On the lookout for an #RLadies _ÙÕÏ_ÙÔø‰Û‰ªÛ•ü chapter to join? @d4tagirl has made it easy to see if there is one near you! _ÙÕÈ #rstats code https://t.co/ZXbAmer4cO_ÙÓÑ join a chapter: https://t.co/E1FyvUySJ5 https://t.co/GZVHd5ZEGz",8/27/18,19:00,2018-08-27 19:00 +0000,4967,143,0.028790014,16,1,35,8/27/18,9/1/18,Lucy,LucyStats,0
1.03E+18,https://twitter.com/WeAreRLadies/status/1034136561607168000,"@LucyStats #rchickenladies is mostly just a fun way to express one's ‰_•ü of chickens _ÙÓ and #rstats, all in one place! Also, we have stickers! https://t.co/spcV6ztr5I",8/27/18,17:52,2018-08-27 17:52 +0000,1154,36,0.031195841,1,1,11,8/27/18,9/1/18,Lucy,LucyStats,0
1.03413E+18,https://twitter.com/WeAreRLadies/status/1034134473233846272,"I (@LucyStats) am SO pleased you asked! _Ùö The movement began with #rcatladies, a hashtag that grew into @RCatLadies following useR2014_Ù¥ Since, more have joined: #rdogladies #rsharkladies, etc_ÙÓ Along with _ÙÒ aficionados, @juliasilge, @ma_salmon, we started #rchickenladies https://t.co/iq2p8ZqygO",8/27/18,17:44,2018-08-27 17:44 +0000,6382,125,0.019586337,3,3,26,8/27/18,9/1/18,Lucy,LucyStats,0
1.03E+18,https://twitter.com/WeAreRLadies/status/1034105213597229056,"_ÙÕÁ Inspired by @RebeccaB2820 to start your own blog? Check out blogger extraordinaire @ma_salmon's slide deck on ‰Ï•ü writing and _ÙÑ£ promoting your blog!_Ù__ https://t.co/l59YDGbplp",8/27/18,15:47,2018-08-27 15:47 +0000,1302,54,0.041474654,2,1,9,8/27/18,9/1/18,Lucy,LucyStats,0
1.0341E+18,https://twitter.com/WeAreRLadies/status/1034104000612843525,"_ÙÎÈ Good morning! Let's kick off the week with @DallasRladies organizer @RebeccaB2820's first blog post - _ÙÒã‰_Á•ü_ÙÒ_ Extracting data from pdfs! _ÙÓÑ https://t.co/kcfyPL9c98",8/27/18,15:43,2018-08-27 15:43 +0000,658,19,0.02887538,0,0,5,8/27/18,9/1/18,Lucy,LucyStats,0
1.03349E+18,https://twitter.com/WeAreRLadies/status/1033491025141084161,Thank you to @dataandme for an *awesome* week!!! Get ready for a new #RLadies curator on Monday!,8/25/18,23:07,2018-08-25 23:07 +0000,3915,85,0.021711367,6,0,34,8/20/18,8/25/18,Mara Averick,dataandme,0
1.03309E+18,https://twitter.com/WeAreRLadies/status/1033088083657412608,"Gonna close-out my week o' @WeAreRLadies curation with a post of my own. Why? Because I want the #rstats goodness to keep on coming! _ÙÔÜ_ÙÕÐ, @dataandmehttps://t.co/osjOVg6Lrh",8/24/18,20:26,2018-08-24 20:26 +0000,9957,237,0.02380235,5,1,38,8/20/18,8/25/18,Mara Averick,dataandme,0
1.03302E+18,https://twitter.com/WeAreRLadies/status/1033024131980177409,"_ÙÒö I may not use base plotting much, but a cheatsheet I've never seen before is hard to turn down‰Û_ https://t.co/R87odL4p9I via @R_Graph_Gallery #rstats #dataviz https://t.co/tAwNSyaWmo",8/24/18,16:12,2018-08-24 16:12 +0000,13800,975,0.070652174,35,3,92,8/20/18,8/25/18,Mara Averick,dataandme,0
1.03294E+18,https://twitter.com/WeAreRLadies/status/1032940543205093376,"_ÙÑ£ Wherein @juliasilge makes PCA unreasonably entertaining‰Û__ÙÒ¼ ""Understanding PCA using Shiny & StackOverflow data""https://t.co/wmwHwjovuF #rstats https://t.co/oOmsGAt0UH",8/24/18,10:39,2018-08-24 10:39 +0000,19308,811,0.042003315,22,1,121,8/20/18,8/25/18,Mara Averick,dataandme,0
1.03269E+18,https://twitter.com/WeAreRLadies/status/1032691434615390209,"_Ù_ø_ÙÏ nice lil' write-up on getting started w/ testing‰Û_""testing as debugging"" ‰Ï•ü @cantabile https://t.co/jZc48Ro1I9 #rstats https://t.co/txOkuAThf7",8/23/18,18:09,2018-08-23 18:09 +0000,2824,88,0.031161473,7,2,14,8/20/18,8/25/18,Mara Averick,dataandme,0
1.03259E+18,https://twitter.com/WeAreRLadies/status/1032594552232861696,"_Ù÷¥ ‰à¬ _Ù÷_ slides, code, + great animation‰Û__ÙÒ_ ""Take a Sad Plot & Make It Better"" _ÙÔ©‰Û_Ù__ @apreshill https://t.co/og6uOFAPWP #rstats #dataviz https://t.co/b43Nd7T5io",8/23/18,11:45,2018-08-23 11:45 +0000,17230,698,0.040510737,38,2,148,8/20/18,8/25/18,Mara Averick,dataandme,0
1.03236E+18,https://twitter.com/WeAreRLadies/status/1032359743845740544,"_Ù÷È visual guides from #100DaysOfMLCode""100 Days Of ML Code"" _ÙÔ¬‰Û_Ù_¬ @_AvikJain_ https://t.co/nrsVPmJHVB https://t.co/GKa3CyzgGZ",8/22/18,20:11,2018-08-22 20:11 +0000,14392,1262,0.087687604,41,3,170,8/20/18,8/25/18,Mara Averick,dataandme,0
1.03232E+18,https://twitter.com/WeAreRLadies/status/1032322760960290816,"_ÙÕÁan illuminating step-by-step:""Intro to TensorFlow in R"" _ÙÔ¬‰Û_ÙÇ @theotheredgar https://t.co/JchCq3FpJn #rstats #tensorflow #tensorboard https://t.co/wN1oJ0DWXb",8/22/18,17:45,2018-08-22 17:45 +0000,6161,306,0.049667262,18,0,67,8/20/18,8/25/18,Mara Averick,dataandme,0
1.03228E+18,https://twitter.com/WeAreRLadies/status/1032284256934850560,"_ÙÕÐ I love the FAQ almost as much as the cheatsheet itself‰Û_""R syntax comparison"" _Ù_÷ @AmeliaMNhttps://t.co/5KzMkmYOPx #rstats https://t.co/EEXiBbEd86",8/22/18,15:12,2018-08-22 15:12 +0000,21523,801,0.037216001,32,0,124,8/20/18,8/25/18,Mara Averick,dataandme,0
1.03221E+18,https://twitter.com/WeAreRLadies/status/1032213840757510145,"_ÙÕ_ an ode to @JennyBryan's _ÙÒ_!""reprex-cellence _ÙÔÔ"" https://t.co/Yh75OUCtNu #rstats https://t.co/wxbMeFS7Tf",8/22/18,10:32,2018-08-22 10:32 +0000,1071,38,0.035480859,1,0,8,8/20/18,8/25/18,Mara Averick,dataandme,0
1.03E+18,https://twitter.com/WeAreRLadies/status/1031980167063891968,"_ÙÒ projects? packages? blogs? @zabormetrics has you covered!""Creating websites in R""https://t.co/PnCe8cFn9Z#rstats #rmarkdown https://t.co/BHpcznWjFj",8/21/18,19:03,2018-08-21 19:03 +0000,4660,300,0.064377682,17,1,71,8/20/18,8/25/18,Mara Averick,dataandme,0
1.03192E+18,https://twitter.com/WeAreRLadies/status/1031920358931058688,"_Ù_¬ A trip down @RLadiesGlobal-memory-lane‰Û_'The making of ""We R-Ladies""' _ÙÔ_ @LucyStats and @ma_salmonhttps://t.co/aKyNuHhqVL #rstats #RLadies https://t.co/2DNpW2Ns4q",8/21/18,15:06,2018-08-21 15:06 +0000,11467,404,0.035231534,19,2,38,8/20/18,8/25/18,Mara Averick,dataandme,0
1.03186E+18,https://twitter.com/WeAreRLadies/status/1031862225663864832,"_ÙÔ©‰Û_Ù_¬ strings or factors, _Ùà¼_Ùàü or _ÙàÇ_Ùàá, @LVaudor's visuals are always _Ù :""Manipulation of factors w/ forcats""_Ùö_Ùö_Ùö_Ùöhttps://t.co/RvWrRxBdWJ #rstats #tidyverse https://t.co/uArFWRrsvS",8/21/18,11:15,2018-08-21 11:15 +0000,12794,660,0.051586681,28,1,90,8/20/18,8/25/18,Mara Averick,dataandme,0
1.03168E+18,https://twitter.com/WeAreRLadies/status/1031677352340869120,"_٪Π@StephdeSilva's guide to starting your [data] relationship off right‰Û__Ù_Ó ""Data Analysis: Questions to Ask the First Time""https://t.co/DxHLWkpGy5 https://t.co/Dgwu7nDweE",8/20/18,23:00,2018-08-20 23:00 +0000,19553,1198,0.06126937,38,1,151,8/20/18,8/25/18,Mara Averick,dataandme,0
1.03163E+18,https://twitter.com/WeAreRLadies/status/1031634712773775361,"We are R-Ladies @WeAreRLadies_Ùö An #RLadies classic from @jent103‰Û__ÙÒ_: ""RLadies Intro to purrr""https://t.co/XgcltZgF0z #rstats #purrr https://t.co/PsHPZpfRBz",8/20/18,20:10,2018-08-20 20:10 +0000,4681,289,0.061738945,14,1,42,8/20/18,8/25/18,Mara Averick,dataandme,0
1.03158E+18,https://twitter.com/WeAreRLadies/status/1031576845442076673,"_ÙÔà an absolute must-read for you *and* your colleagues‰Û__ÙÑã ""Data Organization in Spreadsheets"" _ÙÐÜ @kara_woo & @kwbromanhttps://t.co/ieBLVz6Rhx",8/20/18,16:21,2018-08-20 16:21 +0000,4196,196,0.046711153,17,3,38,8/20/18,8/25/18,Mara Averick,dataandme,0
1.0315E+18,https://twitter.com/WeAreRLadies/status/1031501159331246081,"_ÙÕÐ starting off my (@dataandme) week o' curation w/ a fave tool for feeding R some wild-caught data‰Û__Ù""datapasta: R Tools for Data Copy-Pasta"" _Ù_÷ @MilesMcBainhttps://t.co/haQcbNFho7 #rstats https://t.co/FJh283OQds",8/20/18,11:20,2018-08-20 11:20 +0000,10828,425,0.039250092,29,3,97,8/20/18,8/25/18,Mara Averick,dataandme,0
1.03148E+18,https://twitter.com/WeAreRLadies/status/1031480969633718273,Happy Monday! Get ready for our first ever #RLadies #RoCur curator @dataandme! https://t.co/zENk9xJHZL,8/20/18,10:00,2018-08-20 10:00 +0000,23443,864,0.036855351,19,2,66,8/20/18,8/25/18,Mara Averick,dataandme,0
1.04579E+18,https://twitter.com/WeAreRLadies/status/1045786294457118720,"It's friday night here in Belgium so time for me to say goodbye as your RLadies curator! I had a sneak peek at the schedule for the next weeks, and you'll be in excellent hands! _Ù_ä This week was so much fun! Y'all are an amazing _ÙÔ community! _ÙÔ Don't be a stranger! _Ù_©",9/28/18,21:24,2018-09-28 21:24 +0000,15977,168,0.010515115,3,4,61,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04578E+18,https://twitter.com/WeAreRLadies/status/1045783944262807552,@danawanzer That wasn't the plan but i might change my mind ;),9/28/18,21:14,2018-09-28 21:14 +0000,208,4,0.019230769,0,0,4,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1045665680220205056,"#forcats tip 3: Nothing earth shattering, but using fct_infreq will save you the time to count, and reorder based on n manually. #rstats https://t.co/HT6jWW4faj",9/28/18,13:25,2018-09-28 13:25 +0000,4591,376,0.081899368,15,0,89,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04566E+18,https://twitter.com/WeAreRLadies/status/1045657700078669827,#forcats tip 2: moving elements of your factors around. https://t.co/8dxEGsGXrW,9/28/18,12:53,2018-09-28 12:53 +0000,2729,261,0.095639428,9,0,32,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1045644751465304065,"And if you want more control, you can add a 'drop' or 'keep' argument https://t.co/6U7voqO746",9/28/18,12:01,2018-09-28 12:01 +0000,2398,386,0.160967473,2,4,28,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1045644294181335040,"I've been looking through the #forcats package the last few days. Here some of the useful nuggets I found! #leaRningoutloud #rstats Tip 1: dropping elements easily inside an ""other"" category https://t.co/rb40zwO50c",9/28/18,12:00,2018-09-28 12:00 +0000,24704,1012,0.040965026,41,4,158,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.0456E+18,https://twitter.com/WeAreRLadies/status/1045598995978969090,"When you have a nested list (or a dataframe with lists), calling str() can fill up your console like crazy. _Ùªö _Ùªö If you really want to explore it's structure you can add a 'max.level' argument to keep it a bit more controlled. https://t.co/0VuDsf2IOT",9/28/18,9:00,2018-09-28 09:00 +0000,6074,318,0.052354297,14,2,87,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1045580689889021952,"I love the quote @dataandme shares in her ""That's not data science"" talks. Being kind and encouraging to beginners is incredibly important! https://t.co/PpVlfb7jt0 https://t.co/8fhKNE3JZ2",9/28/18,7:47,2018-09-28 07:47 +0000,7188,237,0.032971619,12,1,30,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04542E+18,https://twitter.com/WeAreRLadies/status/1045418889071546369,@contefranz You're welcome!,9/27/18,21:04,2018-09-27 21:04 +0000,219,0,0,0,0,0,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04542E+18,https://twitter.com/WeAreRLadies/status/1045418789649739776,@scottyd22 great!! ‰_,9/27/18,21:03,2018-09-27 21:03 +0000,194,0,0,0,0,0,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04535E+18,https://twitter.com/WeAreRLadies/status/1045354063251075073,Nearly getting started with our @RladiesBrussels workshop! #rladies #rstats https://t.co/xCSskziXbt,9/27/18,16:46,2018-09-27 16:46 +0000,3278,121,0.036912752,6,0,27,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04527E+18,https://twitter.com/WeAreRLadies/status/1045273597034532864,More purrr than you can read in a day but soooo much good stuff in here. @dataandme made a roundup of top notch #purrr #rstats tutorials. https://t.co/2OIVlUbXbl,9/27/18,11:27,2018-09-27 11:27 +0000,8248,754,0.091416101,41,0,134,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04525E+18,https://twitter.com/WeAreRLadies/status/1045248354425491456,"Still one of my favourite posts from @juliasilge : In Jane Austen's world Women remember, read, and feel while men stop, take, and reply. #rstats #tidytext https://t.co/JDQqrW9s1Z https://t.co/Uysj1aMEdd",9/27/18,9:46,2018-09-27 09:46 +0000,7633,747,0.097864536,27,1,72,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04522E+18,https://twitter.com/WeAreRLadies/status/1045216773501521920,@nic_crane @SuzanBaert *blush blush blush*. Thank you! ‰_•ü But really really all the honour goes to all the people @rstudio and beyond making and maintaining these packages! _ÙÔ_ÙÔ_ÙÔ,9/27/18,7:41,2018-09-27 07:41 +0000,151,5,0.033112583,0,1,3,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1045049154416898060,"One last trick for the day: after webscraping you often get these vectors with punctuation and additional words, when you just want numbers. I find readr::parse_number() even shorter than regexing the digits out of it. _Ù_ä #rstats https://t.co/C8XdKvkSAb",9/26/18,20:35,2018-09-26 20:35 +0000,70004,3443,0.049182904,107,17,572,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04504E+18,https://twitter.com/WeAreRLadies/status/1045040315709587456,SQL is an important skill for anyone working with data. This is one of my favourite resources by @datadotworld https://t.co/zl0d2vww1e. The resources > date section gets a lot of views from me _Ù÷ä,9/26/18,20:00,2018-09-26 20:00 +0000,4871,273,0.056045986,20,1,66,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04502E+18,https://twitter.com/WeAreRLadies/status/1045024404844023809,Busy on the material for tomorrow's @RladiesBrussels workshop on API's and webscraping. _Ù_ä https://t.co/KnAD85xIkd,9/26/18,18:56,2018-09-26 18:56 +0000,4152,160,0.038535645,6,2,26,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04E+18,https://twitter.com/WeAreRLadies/status/1044946906500222976,@thatdanchapman It is! Plus it teaches a lot of how ggplot2 works!,9/26/18,13:48,2018-09-26 13:48 +0000,193,4,0.020725389,0,0,3,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04495E+18,https://twitter.com/WeAreRLadies/status/1044946797658034177,@apreshill No worries! Still good to learn how those plots are made _Ù÷,9/26/18,13:48,2018-09-26 13:48 +0000,207,2,0.009661836,0,0,2,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04494E+18,https://twitter.com/WeAreRLadies/status/1044937129783103488,"More plots? I love this ""Take a sad plot and make it better"" deck by @apreshill. I've actually studied her code to see how she did it _Ù_ä_Ù_ähttps://t.co/nK1PzMGpjA https://t.co/U9F4mNgINV",9/26/18,13:10,2018-09-26 13:10 +0000,2936,262,0.089237057,5,1,25,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04494E+18,https://twitter.com/WeAreRLadies/status/1044935368364056576,Better plots in R (tip3): And this by @drsimonj is looking _ÙÎÙ_ÙÎÙ. Need to try urgently! https://t.co/DftNBYKCR8,9/26/18,13:03,2018-09-26 13:03 +0000,1890,156,0.082539683,0,0,22,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04494E+18,https://twitter.com/WeAreRLadies/status/1044935116412280833,Better plots in R (tip2): But there is a gghighlight package by @yutannihilat_en that makes it even easier: https://t.co/anvFZQpOJK,9/26/18,13:02,2018-09-26 13:02 +0000,1668,99,0.059352518,1,0,15,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04493E+18,https://twitter.com/WeAreRLadies/status/1044934864980533248,Better plots in R (tip 1): I learned my highlight plots last year from this post by @drsimonj https://t.co/ZVhdE9fYIE,9/26/18,13:01,2018-09-26 13:01 +0000,5477,483,0.088186964,14,0,85,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04493E+18,https://twitter.com/WeAreRLadies/status/1044934617814380546,Everyone can benefit from making better plots! https://t.co/qOyce9wIxh,9/26/18,13:00,2018-09-26 13:00 +0000,1894,11,0.005807814,1,0,5,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04493E+18,https://twitter.com/WeAreRLadies/status/1044927232303681536,"@LeafyEricScott No photoshop, i promise _Ù÷ä",9/26/18,12:30,2018-09-26 12:30 +0000,107,4,0.037383178,0,0,1,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04493E+18,https://twitter.com/WeAreRLadies/status/1044926958247833601,@chrissuthy This is partially coming for a series of tutorials I made. (Not really 1hour material though but definitely worth it). There is also a basic vignette on dplyr: https://t.co/7cKnAq8sBW,9/26/18,12:29,2018-09-26 12:29 +0000,633,48,0.075829384,1,0,6,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04493E+18,https://twitter.com/WeAreRLadies/status/1044926293379338240,@kpivert @SuzanBaert Thank you! _Ù_ä,9/26/18,12:26,2018-09-26 12:26 +0000,107,1,0.009345794,0,0,0,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04491E+18,https://twitter.com/WeAreRLadies/status/1044913946665398272,@maubarsom Both exist! Here is the link to the gathered tips and a blog link is there as well! https://t.co/gQV69BD9Qi,9/26/18,11:37,2018-09-26 11:37 +0000,655,34,0.051908397,2,1,4,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.0449E+18,https://twitter.com/WeAreRLadies/status/1044904419912036352,Fun projects with twitter data? Here is one by @ma_salmon: Name a b*tch badder than Taylor Swift _Ù÷âhttps://t.co/BLmd4bIvX9,9/26/18,11:00,2018-09-26 11:00 +0000,3869,108,0.02791419,2,2,16,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.0449E+18,https://twitter.com/WeAreRLadies/status/1044900967861358593,@gabyfarries Finding out about mutate_all and its friends changed my R life. Not even kidding! _Ù_ä,9/26/18,10:46,2018-09-26 10:46 +0000,139,2,0.014388489,0,1,0,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.0449E+18,https://twitter.com/WeAreRLadies/status/1044900288107302912,@_vdeni_ You're very welcome! _Ù_ä,9/26/18,10:43,2018-09-26 10:43 +0000,215,1,0.004651163,0,0,0,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04489E+18,https://twitter.com/WeAreRLadies/status/1044889316122656770,Twitter is a goldmine for fun personal projects and learning #rstats. And this _ÙÔ is _ÙÔ an _ÙÔ amazing _ÙÔ resource by @hrbrmstr https://t.co/D9MWW7a8nX https://t.co/DS3kZqt2Dw,9/26/18,10:00,2018-09-26 10:00 +0000,3392,319,0.094044811,8,0,32,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04489E+18,https://twitter.com/WeAreRLadies/status/1044886641108815872,@_RASenior And a lot easier to change afterwards if needed _Ù÷ä,9/26/18,9:49,2018-09-26 09:49 +0000,192,2,0.010416667,0,1,1,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04488E+18,https://twitter.com/WeAreRLadies/status/1044876056551989248,"@bastistician Yes, but harder to combine with other select calls. I often use them in comination _Ù÷ä",9/26/18,9:07,2018-09-26 09:07 +0000,622,1,0.001607717,0,0,1,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04488E+18,https://twitter.com/WeAreRLadies/status/1044875841853935617,"I'm still answering all the comments you all made last night! It's so amazing to see people this excited! _Ù_©_Ù_© #dplyr rules! For those who asked, I made the tips available on github! https://t.co/gQV69BD9Qi_Ù_©",9/26/18,9:06,2018-09-26 09:06 +0000,6410,285,0.044461778,14,1,66,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04E+18,https://twitter.com/WeAreRLadies/status/1044875311895252993,"@einerderklopft Yes, I just made them available on Github! https://t.co/gQV69BD9Qi",9/26/18,9:04,2018-09-26 09:04 +0000,1237,119,0.096200485,1,0,10,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04488E+18,https://twitter.com/WeAreRLadies/status/1044875246229229568,@danawanzer Have fun!,9/26/18,9:04,2018-09-26 09:04 +0000,573,1,0.001745201,0,0,1,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04E+18,https://twitter.com/WeAreRLadies/status/1044875181313921025,@cbirunda That is almost the face I made when I found out! _Ù÷ä,9/26/18,9:03,2018-09-26 09:03 +0000,561,0,0,0,0,0,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04488E+18,https://twitter.com/WeAreRLadies/status/1044875058433404928,@GrayAnalyst There is a pdf version no Github if you want! https://t.co/gQV69BD9Qi,9/26/18,9:03,2018-09-26 09:03 +0000,68,6,0.088235294,0,1,1,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04E+18,https://twitter.com/WeAreRLadies/status/1044874909606957056,@benmbrew You're welcome!,9/26/18,9:02,2018-09-26 09:02 +0000,128,2,0.015625,0,0,0,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04487E+18,https://twitter.com/WeAreRLadies/status/1044874867319996417,@DrLyndonWalker I have just made them available on github! https://t.co/gQV69BD9Qi,9/26/18,9:02,2018-09-26 09:02 +0000,286,12,0.041958042,1,0,2,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04487E+18,https://twitter.com/WeAreRLadies/status/1044871989637386241,@lam_mph The folks at @R4DScommunity introduced #tidytuesday. It's a great community and weekly challenge to learn. Can you share more with Laurie?,9/26/18,8:51,2018-09-26 08:51 +0000,461,10,0.021691974,0,0,3,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04487E+18,https://twitter.com/WeAreRLadies/status/1044871473813442561,@prec_analytics @accidental__aRt _Ù_©_Ù_©_Ù_©,9/26/18,8:49,2018-09-26 08:49 +0000,102,0,0,0,0,0,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04487E+18,https://twitter.com/WeAreRLadies/status/1044871046350991360,"@karthiks Absolutely! No need to invent the wheel again, just smartly borrow!",9/26/18,8:47,2018-09-26 08:47 +0000,146,4,0.02739726,0,1,0,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04487E+18,https://twitter.com/WeAreRLadies/status/1044870925685010432,@Melissa_Orobko That's when you know you have a new powerful tool in your toolbox! _ÙÕ»,9/26/18,8:46,2018-09-26 08:46 +0000,90,2,0.022222222,0,0,2,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04487E+18,https://twitter.com/WeAreRLadies/status/1044870625192550400,@palolili23 You're welcome!!,9/26/18,8:45,2018-09-26 08:45 +0000,82,1,0.012195122,0,0,1,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04E+18,https://twitter.com/WeAreRLadies/status/1044870564983255040,@bduckles Welcome to the case_when club _Ù_ä,9/26/18,8:45,2018-09-26 08:45 +0000,98,2,0.020408163,0,1,1,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04487E+18,https://twitter.com/WeAreRLadies/status/1044870311198560256,@jdtonkin agreed!,9/26/18,8:44,2018-09-26 08:44 +0000,102,1,0.009803922,0,0,1,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04487E+18,https://twitter.com/WeAreRLadies/status/1044870135213895686,@Shedimus Have fun! _Ù÷ä,9/26/18,8:43,2018-09-26 08:43 +0000,114,0,0,0,0,0,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04487E+18,https://twitter.com/WeAreRLadies/status/1044869459880685569,@itsallgravy4 Welcome to the case_when() club! _Ù_ä,9/26/18,8:41,2018-09-26 08:41 +0000,27,1,0.037037037,0,0,0,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04469E+18,https://twitter.com/WeAreRLadies/status/1044687127617970176,"There are many many more goodies in #dplyr than humanly possible to share in 10 tweets. If you want more, I wrote a series about the ones that changed my life when I learned about them: https://t.co/EMrT3Y4BnO . With a big thank you for everyone involved in this package!! _ÙÔ _ÙÔ_ÙÔ",9/25/18,20:36,2018-09-25 20:36 +0000,14915,810,0.054307744,43,4,126,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04468E+18,https://twitter.com/WeAreRLadies/status/1044678412705714176,"@NZambrano Once you know them, they change your life! If you want more info, I wrote some posts on them: https://t.co/EMrT3Y4BnO.",9/25/18,20:01,2018-09-25 20:01 +0000,204,1,0.004901961,0,0,0,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04467E+18,https://twitter.com/WeAreRLadies/status/1044672753582968832,Long live case_when! Now you hear it from someone else _Ù÷ä https://t.co/GBalz1DfzS,9/25/18,19:39,2018-09-25 19:39 +0000,4824,24,0.004975124,0,0,13,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04467E+18,https://twitter.com/WeAreRLadies/status/1044672132385517568,@gigi_rose Agreed!!,9/25/18,19:37,2018-09-25 19:37 +0000,213,2,0.009389671,0,0,0,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04467E+18,https://twitter.com/WeAreRLadies/status/1044672070720917506,@YamJolmqvist @gigi_rose You'll love it! _Ù÷ä,9/25/18,19:36,2018-09-25 19:36 +0000,247,2,0.008097166,0,0,2,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04467E+18,https://twitter.com/WeAreRLadies/status/1044671872493932544,"@netzstreuner You, me and many many others _Ù÷ä",9/25/18,19:35,2018-09-25 19:35 +0000,124,5,0.040322581,0,0,1,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04467E+18,https://twitter.com/WeAreRLadies/status/1044671790533021696,@FanninQED Thank _Ù_ä,9/25/18,19:35,2018-09-25 19:35 +0000,101,0,0,0,0,0,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04467E+18,https://twitter.com/WeAreRLadies/status/1044671704163905542,@B_A_Palmer Thank you! _Ù_ä,9/25/18,19:35,2018-09-25 19:35 +0000,88,4,0.045454545,0,0,1,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04467E+18,https://twitter.com/WeAreRLadies/status/1044671635259879426,I'm glad so many of you enjoyed the #dplyr tips today! Thanks for all the lovely comments and additional tricks. This community is the best _Ù_ä_Ù_ä https://t.co/sqPGiF0zl2,9/25/18,19:35,2018-09-25 19:35 +0000,3324,54,0.016245487,1,2,26,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04467E+18,https://twitter.com/WeAreRLadies/status/1044670830406496258,"@NZambrano You always need to make sure that the ""thing"" you want to happen is a function, otherwise it won't work. If you have to open the brackets for some extra arguments, you need to wrap it back into a function, either via a tilde or inside funs().",9/25/18,19:31,2018-09-25 19:31 +0000,222,7,0.031531532,0,1,2,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04466E+18,https://twitter.com/WeAreRLadies/status/1044662829771452416,"final #dplyr trick of the day: if you use the scoped versions of mutate and summarise, you know the variable names don't change. You can use funs() to add a tag identifying what this new measure is! #rstats https://t.co/rwlaqs8HMF",9/25/18,19:00,2018-09-25 19:00 +0000,9603,544,0.056648964,21,1,80,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04465E+18,https://twitter.com/WeAreRLadies/status/1044647734685388801,#dplyr trick number 9: going rowwise! _Ù_£‰Û‰ªÛ•ü_Ù_£‰Û‰ªÛ•ü_Ù_£‰Û‰ªÛ•ü https://t.co/2lRrV0rBt4,9/25/18,18:00,2018-09-25 18:00 +0000,13030,1098,0.084267076,36,1,136,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04463E+18,https://twitter.com/WeAreRLadies/status/1044632628060655617,#dplyr trick number 8: Nested if_else structures can be pure chaos. Case_when makes it a lot more readable and flexible _Ù_ä https://t.co/qhOiBUN15b,9/25/18,17:00,2018-09-25 17:00 +0000,42395,3118,0.073546409,91,6,451,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04462E+18,https://twitter.com/WeAreRLadies/status/1044617527039426560,"#dplyr trick 7: Before I found out about this option, there was some more tricky grouping and summarising going on... _Ù÷£ #rstats https://t.co/KbJwirQfZL",9/25/18,16:00,2018-09-25 16:00 +0000,11394,833,0.073108654,22,4,105,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04462E+18,https://twitter.com/WeAreRLadies/status/1044615560187850753,@netzstreuner I'm using the RLadies theme made by @apreshill. :tada: Here's the css code for fonts: https://t.co/Ojl6BK74MJ,9/25/18,15:52,2018-09-25 15:52 +0000,1159,27,0.023295945,0,1,6,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.0446E+18,https://twitter.com/WeAreRLadies/status/1044602429856272384,#dplyr trick number 6: the laziest way to find the top 5 observations _Ùü_Ùü https://t.co/DY8aFGBM17,9/25/18,15:00,2018-09-25 15:00 +0000,5040,382,0.075793651,19,0,61,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04459E+18,https://twitter.com/WeAreRLadies/status/1044592765143797761,"@HoloMarkeD It works perfectly fine. But if you ever choose a vector name that also happens to be a column name, you're not going to get what you expect. Adding the '!!' is playing it safe.",9/25/18,14:21,2018-09-25 14:21 +0000,1903,37,0.019442985,1,1,29,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04459E+18,https://twitter.com/WeAreRLadies/status/1044587331913756672,"#dplyr trick number 5: If you're not worried about cleaning up your variable names, but the observations itself _ÙÔÎ https://t.co/d6dNAhsykA",9/25/18,14:00,2018-09-25 14:00 +0000,26861,2155,0.08022784,47,1,217,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04458E+18,https://twitter.com/WeAreRLadies/status/1044576771352473600,@antonioacruz very true!! i like janitor _Ù÷ã the reason i still like to show people the rename_all function is that it can be more flexible for other cleaning needs (removing a part of the variable name for instance),9/25/18,13:18,2018-09-25 13:18 +0000,316,9,0.028481013,0,0,3,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04457E+18,https://twitter.com/WeAreRLadies/status/1044572235577475073,#dplyr trick number 4: bringing some order in your variable names _٪Πhttps://t.co/prTNk5f5MF,9/25/18,13:00,2018-09-25 13:00 +0000,5773,524,0.090767365,17,3,73,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04457E+18,https://twitter.com/WeAreRLadies/status/1044570503405588480,@MariannaFoos I call it everything_else in my head _Ù÷ä,9/25/18,12:53,2018-09-25 12:53 +0000,303,5,0.01650165,0,0,2,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04456E+18,https://twitter.com/WeAreRLadies/status/1044557129934426113,#dplyr trick number 3: for people who like to have some order in their columns _Ù÷_ #rstats https://t.co/yiSnUcCyf9,9/25/18,12:00,2018-09-25 12:00 +0000,11365,823,0.07241531,26,3,151,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04E+18,https://twitter.com/WeAreRLadies/status/1044543907055489026,#dplyr trick number 2: when you have no exact match to describe the columns you want. #rstats https://t.co/2TkDynkgJe,9/25/18,11:07,2018-09-25 11:07 +0000,6523,493,0.075578721,26,0,82,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04453E+18,https://twitter.com/WeAreRLadies/status/1044528935470415877,"In celebration of #tidytuesday I want to share a #dplyr trick every hour! And we're starting with a ""bang"".... https://t.co/KRqK4E772P",9/25/18,10:07,2018-09-25 10:07 +0000,48308,3827,0.079220833,95,13,460,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04448E+18,https://twitter.com/WeAreRLadies/status/1044481294888050688,@GabrielYospin It's my personal opinion that this should be included in every introductory R training _Ù_©,9/25/18,6:58,2018-09-25 06:58 +0000,156,4,0.025641026,0,0,3,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04432E+18,https://twitter.com/WeAreRLadies/status/1044320533788143616,@alexadiben You most certainly are not alone! _Ù÷â_Ù÷â,9/24/18,20:19,2018-09-24 20:19 +0000,88,2,0.022727273,0,0,1,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04431E+18,https://twitter.com/WeAreRLadies/status/1044310006231912449,Tomorrow.... #rstats https://t.co/elWr8IaVLg,9/24/18,19:38,2018-09-24 19:38 +0000,5892,506,0.085879158,6,3,32,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.0443E+18,https://twitter.com/WeAreRLadies/status/1044303144753287168,"When ggplot2 does exactly what you asked it to do, but not precisely what you wanted it to do... @accidental__aRt is one of my favourite accounts, featuring the below masterpieces by @susannah_rip, @veerlevanson, @tjmahr and @ArmitageDW https://t.co/yicHVi8pZg",9/24/18,19:10,2018-09-24 19:10 +0000,7375,1014,0.137491525,15,1,80,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04429E+18,https://twitter.com/WeAreRLadies/status/1044292865663406082,"Somewhat related to that... I didn't learn R in academia. I worked for 12 years with tools like SPSS and SAS JMP before switching to R last year. It's been a blast, in large part thanks to the wonderful #rstats community _Ù_ä_Ù_ä https://t.co/Ter2EzGdNB",9/24/18,18:29,2018-09-24 18:29 +0000,1806,54,0.029900332,1,0,15,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04429E+18,https://twitter.com/WeAreRLadies/status/1044291489382223872,It's funny how many people end to assume that everyone who uses R is a data scientist... Have you noticed that before? And I'm sure I'm not the only one out there...,9/24/18,18:24,2018-09-24 18:24 +0000,1660,30,0.018072289,0,1,8,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04429E+18,https://twitter.com/WeAreRLadies/status/1044290424167387136,I am @suzanbaert. I worked for the last 13 years in R&D but recently moved to Hedera Insights in Belgium as a Business Intelligence and Analytics consultant. Lots and lots of data in my future! _Ù_ä_Ù_ä,9/24/18,18:20,2018-09-24 18:20 +0000,4156,52,0.012512031,0,1,17,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04429E+18,https://twitter.com/WeAreRLadies/status/1044289434852773888,Good morning/afternoon/evening! I just got back from a wonderful long weekend in Austria's mountains and I'm all set to be this week's #RoCur for RLadies! https://t.co/mLloIgXpeP,9/24/18,18:16,2018-09-24 18:16 +0000,2193,24,0.010943912,0,0,9,9/24/18,9/29/18,Suzan Baert,SuzanBaert,0
1.04365E+18,https://twitter.com/WeAreRLadies/status/1043649468741095424,"Thanks @kaelen_medeiros, for a great curation week! We'll announce our next curator tomorrow! #rladies",9/22/18,23:53,2018-09-22 23:53 +0000,2363,32,0.013542107,0,1,11,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04E+18,https://twitter.com/WeAreRLadies/status/1043167124888408065,"I've been trying to improve my #dataviz skills lately, and ran across this amazing resource from @AmeliaMN and @AranLunzer. Read for an amazing explanation of histograms! https://t.co/JrXJGBXtBk",9/21/18,15:56,2018-09-21 15:56 +0000,2375,36,0.015157895,5,0,13,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04277E+18,https://twitter.com/WeAreRLadies/status/1042768031380922369,"There's a lot of great advice in this deck for dealing with imposter syndrome, something I am trying to deal with myself.thanks @beeonaposy for this virtual pep talk! _ÙÕÏ https://t.co/fI8IArbdzc",9/20/18,13:30,2018-09-20 13:30 +0000,1623,5,0.003080715,0,0,3,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04277E+18,https://twitter.com/WeAreRLadies/status/1042766400895549440,Collaboration is one of my favorite parts too! _Ùд•ü https://t.co/pjvgBrSni0,9/20/18,13:24,2018-09-20 13:24 +0000,1254,2,0.001594896,0,0,2,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04E+18,https://twitter.com/WeAreRLadies/status/1042562448430166016,"Today, I was ""confidence interval"". Who knows what I'll be tomorrow?? Anyone have any good stats/DS jokes? https://t.co/KnJ6JHFWOV",9/19/18,23:53,2018-09-19 23:53 +0000,1899,27,0.014218009,1,0,8,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04241E+18,https://twitter.com/WeAreRLadies/status/1042405713623109632,I'm going to try this from my personal account ASAP! Thanks @RallidaeRule for sharing this repo! Now I never have to leave R _Ù÷ #rstats https://t.co/zruJeUXexN,9/19/18,13:31,2018-09-19 13:31 +0000,1333,6,0.004501125,0,0,2,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04241E+18,https://twitter.com/WeAreRLadies/status/1042405401113837568,"This is my favorite part, and I feel so blessed to be able to do it _٪Πhttps://t.co/oJeelXDjlz",9/19/18,13:29,2018-09-19 13:29 +0000,997,1,0.001003009,0,0,1,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04224E+18,https://twitter.com/WeAreRLadies/status/1042239137703751680,"@ayanalytics I literally had said ""time with my cat"" in the first draft of this tweet! You know me so well.",9/19/18,2:29,2018-09-19 02:29 +0000,36,1,0.027777778,0,0,1,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04216E+18,https://twitter.com/WeAreRLadies/status/1042158274374787072,"I've been thinking about burnout and trying to be more intentional about preventing it. For me, it's been the gym, baths, time with friends, and learning more DS in a lower-stress situation that have been working.Some great tips in this thread, plus feel free to share more! https://t.co/TLX1kBozrm",9/18/18,21:07,2018-09-18 21:07 +0000,1762,20,0.011350738,2,1,9,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04213E+18,https://twitter.com/WeAreRLadies/status/1042126709024321538,100% yes to this: https://t.co/A4U9PCGbE2,9/18/18,19:02,2018-09-18 19:02 +0000,989,5,0.005055612,1,0,2,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04213E+18,https://twitter.com/WeAreRLadies/status/1042126567785279489,_ÙÔÑ_ÙÕÄ yes!! https://t.co/W9fE01Xzym,9/18/18,19:01,2018-09-18 19:01 +0000,996,3,0.003012048,1,0,1,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04213E+18,https://twitter.com/WeAreRLadies/status/1042126384867487744,"So true! I've been lucky enough to work with so many talented surgeons, hospital administrators, project managers, engineers, and other statisticians in my career so far, and I can't wait for even more collaboration! https://t.co/zJiF5NgIfE",9/18/18,19:01,2018-09-18 19:01 +0000,1158,10,0.008635579,2,0,4,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04206E+18,https://twitter.com/WeAreRLadies/status/1042060602401857536,"What a great point! I know that I do this, and have done it quite a bit with experimental design and quality-related work, but have never thought to phrase it this way. https://t.co/QJnyVljkAb",9/18/18,14:39,2018-09-18 14:39 +0000,860,1,0.001162791,0,0,1,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04206E+18,https://twitter.com/WeAreRLadies/status/1042060369148235776,I learned Shiny recently and I love it more and more every day! https://t.co/dFRw6hwlqS,9/18/18,14:38,2018-09-18 14:38 +0000,973,7,0.007194245,1,0,5,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04206E+18,https://twitter.com/WeAreRLadies/status/1042060284704243712,I love that so many of y'all brought up community _ÙÕÏ https://t.co/8Md7NRwq9e,9/18/18,14:38,2018-09-18 14:38 +0000,895,7,0.007821229,1,0,4,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04206E+18,https://twitter.com/WeAreRLadies/status/1042059773754179584,_Ù¤ª‰Û‰ªÛ•ü_ÙÓ¨_Ù¤ª‰Û‰ªâ•ü https://t.co/KSdObsmXNG,9/18/18,14:36,2018-09-18 14:36 +0000,842,7,0.008313539,1,0,4,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04206E+18,https://twitter.com/WeAreRLadies/status/1042058924302757889,"The last sentence - I think every day about how I and everyone around me are building the future of science and DS, and it's terrifying and cool! https://t.co/xaxsPmkNRt",9/18/18,14:33,2018-09-18 14:33 +0000,751,3,0.003994674,1,0,1,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04206E+18,https://twitter.com/WeAreRLadies/status/1042058688423518209,"Yes! This is what I love about rstats/data science twitter, about @RLadiesGlobal, and many other meetups and organized groups. Thank you all for your work and contributions to making this community what it is! https://t.co/QbAWfWYJdp",9/18/18,14:32,2018-09-18 14:32 +0000,877,6,0.006841505,1,0,5,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04206E+18,https://twitter.com/WeAreRLadies/status/1042058009420197892,"Ooh yes good point!Data viz, and especially good practice for data viz, is always something I'm trying to get better at. Feel free to share recs! https://t.co/BXt1rbrjes",9/18/18,14:29,2018-09-18 14:29 +0000,923,5,0.005417118,0,1,2,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04178E+18,https://twitter.com/WeAreRLadies/status/1041778884243595265,"What do you LOVE about statistics and/or data science? Reply and tell me!I love that I get to keep learning forever. It's impossible to know everything & the lifelong pursuit of knowledge is something I value. I also like solving puzzles & work often feels like a big puzzle.",9/17/18,20:00,2018-09-17 20:00 +0000,8190,160,0.01953602,8,19,62,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04174E+18,https://twitter.com/WeAreRLadies/status/1041736458896375808,"In honor of Renee's episode of #DataFramed, here's a roundup of some of the key links on the @BecomingDataSci blog! I remember reading the first when I joined twitter at the end of grad school in 2016, and it's great advice! https://t.co/6fQ4rYADfV",9/17/18,17:11,2018-09-17 17:11 +0000,6340,48,0.007570978,4,1,11,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04E+18,https://twitter.com/WeAreRLadies/status/1041698693974568961,"Was delighted this morning to read this excellent blog post from @kierisi detailing the @R4DScommunity and the journey to becoming a data scientist. I was also the first in my family to go to college, let alone get an MS, and feel lucky to do what I do every day! https://t.co/NIBKg3dCkb",9/17/18,14:41,2018-09-17 14:41 +0000,3147,33,0.010486177,2,1,18,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04168E+18,https://twitter.com/WeAreRLadies/status/1041684437875019777,"Good morning from NYC, I'm @kaelen_medeiros and I will be your #RLadies #rocur this week! I work at @DataCamp as a Content Quality Analyst, meaning I maintain courses - content, autograding, the works, and I use #rstats and and #shiny almost every day!",9/17/18,13:44,2018-09-17 13:44 +0000,2041,34,0.016658501,0,1,20,9/17/18,9/22/18,Kaelen Medeiros,kaelen_medeiros,0
1.04106E+18,https://twitter.com/WeAreRLadies/status/1041061045287055361,"Well it certainly didn't turn out to be the most *informative* poll but it was interesting to see your responses achieve such a uniform distribution _Ù÷Ü_Ù÷â#Rladies if you're in the bay, be sure to come to my #meetup Wednesday! Details here: https://t.co/HeXBM5jsXO https://t.co/4ouQJyCk0T",9/15/18,20:27,2018-09-15 20:27 +0000,1444,29,0.020083102,1,0,6,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.04E+18,https://twitter.com/WeAreRLadies/status/1040749938517336064,"Running out of the office on a Friday afternoon when my undergrad asks about tidy eval ‰Ñ‰Ñ... unfortunately I don't think my explanation was as good as this_ÙÔà_Ù÷âhttps://t.co/Y3NrBu8Ex9",9/14/18,23:51,2018-09-14 23:51 +0000,1104,53,0.048007246,2,0,12,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.04064E+18,https://twitter.com/WeAreRLadies/status/1040640232599646208,"@RLadiesSF And in case you're wondering what my presentation is actually going to be about, check out my latest blog about my summer at Rstudio working on #ggplot2 and #scales _ÙÒ_‰_Еü: https://t.co/edJrkNjo2a",9/14/18,16:35,2018-09-14 16:35 +0000,580,13,0.022413793,0,0,1,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.04064E+18,https://twitter.com/WeAreRLadies/status/1040639411149451266,@RLadiesSF My favorite package _ÙÒ_ for presentation style is the rmdshower _Ù_Àpkg https://t.co/Pm6Pe3yDJ5 but there are many many more!,9/14/18,16:32,2018-09-14 16:32 +0000,673,28,0.041604755,1,1,5,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.04064E+18,https://twitter.com/WeAreRLadies/status/1040638943987789825,"Happy Friday _ÙÎ_! Today I'm making time to start my slides for next week's @RLadiesSF talk! Did you know you can build presentations using #Rmarkdown inside #Rstudio? Even knit to powerpoint if that's your thing _Ù_ø! Learn more here: https://t.co/S2I0MDhWmT",9/14/18,16:30,2018-09-14 16:30 +0000,1622,95,0.058569667,2,1,35,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.04031E+18,https://twitter.com/WeAreRLadies/status/1040308724869476352,@kara_woo oh duh! how did I miss this one?!?! thx!,9/13/18,18:38,2018-09-13 18:38 +0000,272,1,0.003676471,0,0,0,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.0403E+18,https://twitter.com/WeAreRLadies/status/1040302719775301632,"@ggfinerty Hmm yeah. It may turn out to be easiest to just regularize on the smallest fix schedule for the collar, setting as many NAs as necessary, and trimming them or using them to split into bursts after the fact.",9/13/18,18:14,2018-09-13 18:14 +0000,42,0,0,0,0,0,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.0403E+18,https://twitter.com/WeAreRLadies/status/1040301306127167488,"@ggfinerty It's hard to sort out exactly what to suggest on twitter and without seeing your data, but if there is a common pattern to the transition that you are able to spot ""by hand"", than you can likely write a function that would identify the change in schedule for you.",9/13/18,18:08,2018-09-13 18:08 +0000,53,2,0.037735849,0,1,0,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.0403E+18,https://twitter.com/WeAreRLadies/status/1040296802967183361,"_ÙÒ_‰ÒWhat are some of your favorite network visualizations packages? I've been playing around with geomnet and igraph and am intrigued by visNetwork and ggnet2... Anyone have a favorite? #DataViz #rstats https://t.co/6Uehb60Fqw",9/13/18,17:51,2018-09-13 17:51 +0000,3682,54,0.014665942,1,7,8,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.0403E+18,https://twitter.com/WeAreRLadies/status/1040295427273183232,@ggfinerty I typically use adehabitatLT (check out their setNA and setTO functions) to regularize my collar data but you will likely need to break your trajectories up into bursts to handle the schedule shift. Their pkg vignette is really thorough! https://t.co/spwEHjKbxV,9/13/18,17:45,2018-09-13 17:45 +0000,58,11,0.189655172,0,1,1,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.0403E+18,https://twitter.com/WeAreRLadies/status/1040295146338713600,@ggfinerty I would start by extracting the difftime between each relocation; this would be an easy way to spot a shift in a regular fix schedule. Is this a case where the frequency of fixes changes or just the time of day of the fixes changes?,9/13/18,17:44,2018-09-13 17:44 +0000,66,7,0.106060606,0,2,0,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.04025E+18,https://twitter.com/WeAreRLadies/status/1040254273219485701,"Fact: #purrr and #dplyr are some of the most powerful tools in my R toolbox _ÙÔá‰Û‰ªÛ•üNew to the map functions? Start here ‰_Á•ühttps://t.co/fPy7pmlt13 https://t.co/DWjJACYcA9",9/13/18,15:02,2018-09-13 15:02 +0000,3778,144,0.038115405,11,1,47,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.04003E+18,https://twitter.com/WeAreRLadies/status/1040025083882815488,"@texastacos Ooo, I will check it out! And yes _Ù÷É, realistically these are just explorations -- I don't actually want a way to put all of these distributions on a single plot!",9/12/18,23:51,2018-09-12 23:51 +0000,62,1,0.016129032,0,0,1,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.04E+18,https://twitter.com/WeAreRLadies/status/1040003842262192129,"Ooo _ÙÔÛWhat I would give to go to this! I'll start the job hunt early next year, time to get my portfolio in shape! _ÙÕ» https://t.co/lvWvL3EmOc",9/12/18,22:26,2018-09-12 22:26 +0000,1577,14,0.008877616,0,0,6,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.03998E+18,https://twitter.com/WeAreRLadies/status/1039975150303604736,#Git only became a daily part of my workflow a year ago when I first had to teach it! Now I count it as one of my most valuable skills! @JennyBryan's https://t.co/vCN5jkxUmp is a great place to start for #Rstudio users new to git & for teachers who want to use it in classroom! _ÙÎÙ,9/12/18,20:32,2018-09-12 20:32 +0000,10756,403,0.03746746,42,1,141,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.03993E+18,https://twitter.com/WeAreRLadies/status/1039932856229814272,"@RoelandtN42 When I'm searching earthworks, I am usually on the hunt for something not directly related to my research. I think I last pulled down landcover data for California and shapefiles of administrative boundaries and features in HongKong.",9/12/18,17:44,2018-09-12 17:44 +0000,52,2,0.038461538,0,1,1,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.03992E+18,https://twitter.com/WeAreRLadies/status/1039921961839689728,"@nathcun Oo that's an interesting idea, I'll have to try that out! I am ultimately interested in the time component (for at least one of my analyses) but spatial aggregation is important too!",9/12/18,17:01,2018-09-12 17:01 +0000,98,1,0.010204082,0,0,0,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.03969E+18,https://twitter.com/WeAreRLadies/status/1039693752657272832,"So much this _ÙÔàBreaking things is the only way I learn how to put them back together again. And I bet it's a whole lot less scary when your first interactive rebase isn't amidst your first PR for ggplot2. _Ù÷â _Ù÷Â#git #GitHub https://t.co/UjhPssAPJS",9/12/18,1:54,2018-09-12 01:54 +0000,2304,32,0.013888889,3,0,16,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.03968E+18,https://twitter.com/WeAreRLadies/status/1039683293715693568,"For the curious, this density plot can help the spaghetti interpretation _Ù_Ó_Ù_Ù÷ÜSame data, different presentation.""7 elephants in Etosha Ntl Park"" https://t.co/8UiyTy7FsA",9/12/18,1:13,2018-09-12 01:13 +0000,1911,76,0.039769754,1,1,10,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.04E+18,https://twitter.com/WeAreRLadies/status/1039663298096979969,_ÙÔAdds titles to never ending to-read pile.... _ÙÒ_ https://t.co/M6mIdBtm2I,9/11/18,23:53,2018-09-11 23:53 +0000,934,2,0.002141328,0,0,0,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.03965E+18,https://twitter.com/WeAreRLadies/status/1039654443589881856,"@palolili23 @EpiEllie Ooo! I actually have gotten really good at cleaning and regularizing time series data, at least in the form of GPS points. Let me know if you have a specific sticking point I might be able to help with!",9/11/18,23:18,2018-09-11 23:18 +0000,247,16,0.064777328,0,1,4,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.03965E+18,https://twitter.com/WeAreRLadies/status/1039653576958570496,"Spaghetti art or smoothed distance distributions of elephant pairs?? Who can say? _Ù_£ Ultimately this sort of visualization doesn't tell me much but it's interesting to see who may hang together. I have 470 of these path pairs _Ù÷± Anyone have a better idea? _Ùª #dataviz https://t.co/RRphxlTiT3",9/11/18,23:15,2018-09-11 23:15 +0000,3265,182,0.055742726,3,4,15,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.03962E+18,https://twitter.com/WeAreRLadies/status/1039618715963273216,To make this gif I just adapted @thomasp85's gist here: https://t.co/T7FKW9TPSw,9/11/18,20:56,2018-09-11 20:56 +0000,1022,28,0.02739726,0,0,6,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.03961E+18,https://twitter.com/WeAreRLadies/status/1039605264163340288,"Sometimes I like to use #gganimate (https://t.co/jGdypGFgqg) to make #EDA a little more fun. Here I was trying to figure out when the collars were really retrieved from two of our elephants. Notice when the dots stop moving, the collars were sitting at camp. https://t.co/LK2bKKedpW",9/11/18,20:03,2018-09-11 20:03 +0000,1825,65,0.035616438,3,1,7,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.04E+18,https://twitter.com/WeAreRLadies/status/1039602459360935936,"Today in R, I am working on building simulations and devising ways to visualize distances between pairs of elephants _Ù÷through time. I have GPS data from 39 els over ~11 yrs, but they are not all sampled at the same frequency or over the same periods, adding to the challenge!",9/11/18,19:51,2018-09-11 19:51 +0000,4023,137,0.034054188,2,3,47,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.0396E+18,https://twitter.com/WeAreRLadies/status/1039600044381372417,"Specifically for spatial data I also like to use https://t.co/mEqeC70qnq although I wish more of it were open access! My berkeley credentials get me a lot of access that I will miss dearly when I graduate!",9/11/18,19:42,2018-09-11 19:42 +0000,720,7,0.009722222,0,1,2,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.0396E+18,https://twitter.com/WeAreRLadies/status/1039599260843405312,"Have you guys tried this out yet?? Google launched a new search engine for open data last week _ÙÎ! This is a great resource for researchers and educators like me!https://t.co/LYSqCzRdKj https://t.co/FGCkvGzgns",9/11/18,19:39,2018-09-11 19:39 +0000,1935,77,0.039793282,11,1,23,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.03934E+18,https://twitter.com/WeAreRLadies/status/1039335493601611776,"Apropos of nothing, this #girlswhocode #rladies #github octocat is the best sticker in my collection by far. I got her a year ago now and have never seen her elsewhere! She's basically the perfect avatar for my life. ‰÷¥_ÙÕÈ_Ù÷ https://t.co/SdnuJsU8oq",9/11/18,2:11,2018-09-11 02:11 +0000,1136,83,0.07306338,0,0,15,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.03933E+18,https://twitter.com/WeAreRLadies/status/1039333257794412545,"Also, though I have no allegiance _Ù÷Üand sadly no pets _Ù÷¢, I'm clearly missing something here.... Who can hook me up with an #rcatladies sticker?!? https://t.co/LzR3JjxFjI",9/11/18,2:02,2018-09-11 02:02 +0000,1172,89,0.075938567,0,3,6,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.04E+18,https://twitter.com/WeAreRLadies/status/1039325294128128000,"If you‰Ûªve not heard of the @R4DScommunity before, it‰Ûªs a great group to check out especially if you‰Ûªre new to R or the #tidyverse! #rstats #tidytuesday",9/11/18,1:30,2018-09-11 01:30 +0000,10511,124,0.011797165,6,0,13,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.03933E+18,https://twitter.com/WeAreRLadies/status/1039325192533635074,"I admit I don't find time to participate every week _Ù_Çbut #tidytuesday is a great way to practice your #dataviz skills within a supportive and diverse community! This week is for the #rcatladies _Ùö and #rdogladies _Ù¥among us! Anyone want to give it a go with me? https://t.co/laE1PFksqB",9/11/18,1:30,2018-09-11 01:30 +0000,19341,166,0.008582803,7,2,35,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.04E+18,https://twitter.com/WeAreRLadies/status/1039263772991401984,So I have used Jim's gmailr package _ÙÒ_ https://t.co/GH3AgbvCWU before to automatically to notify me after some of my longest spatial analyses but this .Rprofile trick is next level _ÙÔ_ÙÔ_ÙÔ https://t.co/5JEQltuyIq,9/10/18,21:26,2018-09-10 21:26 +0000,3834,34,0.008868023,5,1,18,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.03923E+18,https://twitter.com/WeAreRLadies/status/1039225127915769856,"Relative risk and odds ratios are super relevant to my PhD work and often so hard to explain! They definitely trip me up sometimes! Great explainer blogpost, I'll be saving this one! (h/t last week's host @juliasilge) https://t.co/idCAiUVLoZ",9/10/18,18:52,2018-09-10 18:52 +0000,3578,61,0.017048631,3,0,33,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.0392E+18,https://twitter.com/WeAreRLadies/status/1039203951395012609,@ma_salmon @RLadiesSF Wonderful! Please tell them to specifically say hi!,9/10/18,17:28,2018-09-10 17:28 +0000,238,5,0.021008403,0,0,2,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.03918E+18,https://twitter.com/WeAreRLadies/status/1039176169164169221,"#Rladies! Only 5 days left to submit your talk/poster ideas and/or to apply for the 38(!!!) diversity scholarships available for RStudio::conf(2019). It's going to be an amazing conference and I can't wait to meet _ÙÔäyou in Austin! scholarship info -> https://t.co/SCKxJhabbr https://t.co/bUMNa6clPZ",9/10/18,15:38,2018-09-10 15:38 +0000,20669,146,0.007063719,9,0,22,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.03916E+18,https://twitter.com/WeAreRLadies/status/1039160640634380288,"I‰Ûªm really excited to share what I‰Ûªm up to in R this week with all of you (including writing my talk for next week‰Ûªs @RLadiesSF meetup _Ù_Ò)! And, I‰Ûªd love to hear from you about what you want to learn and what piques your interest most, so please AMA! https://t.co/qaPSBgg87A",9/10/18,14:36,2018-09-10 14:36 +0000,2679,42,0.015677492,2,1,13,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.03916E+18,https://twitter.com/WeAreRLadies/status/1039158451870392320,"By biologists' standards, I've had a pretty unconventional PhD: taking time off (post quals) to do two internships - one at GoogleMaps as an analyst and just this summer at RStudio doing development on the #ggplot2 _ÙÒ_ and scales ‰_Еü pkgs _ÙÒ_with the #tidyverse team!",9/10/18,14:27,2018-09-10 14:27 +0000,1029,27,0.026239067,0,0,14,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.03916E+18,https://twitter.com/WeAreRLadies/status/1039158070872395779,"Hey everybody _ÙÔÜ! Good morning from the west coast! I (@dpseidel) am so delighted to be your curator for the week! By day (and night, lets be real), I'm a PhD candidate in my last year @UCBerkeley using R to explore _Ù÷, _Ù_Ò & _Ù_Îmovement.",9/10/18,14:26,2018-09-10 14:26 +0000,4849,109,0.022478862,1,2,40,9/10/18,9/15/18,Dana Seidel,dpseidel,1
1.04E+18,https://twitter.com/WeAreRLadies/status/1038451914323582977,"Thank you all for joining me this week! I have so enjoyed being your curator and look forward to hearing more from different #rladies! _ÙÔÜ_ÙÕÐ,@juliasilge https://t.co/Flu9rybvtb",9/8/18,15:40,2018-09-08 15:40 +0000,3472,74,0.021313364,1,0,39,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03844E+18,https://twitter.com/WeAreRLadies/status/1038438065314779136,"It was my first time to use furrr in a post too! You should check it out if you are a purrr user who ever wishes your work ran faster:https://t.co/EFkguh8QNP",9/8/18,14:45,2018-09-08 14:45 +0000,805,27,0.033540373,0,0,3,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03844E+18,https://twitter.com/WeAreRLadies/status/1038437966140465155,"I am really excited about this post, because it lays out some workflows around evaluating topic models using tidy data principles. ‰Ï¬",9/8/18,14:44,2018-09-08 14:44 +0000,808,4,0.004950495,0,1,0,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03844E+18,https://twitter.com/WeAreRLadies/status/1038437303222325253,"Remember that blog post I was ""finishing"" on Monday? I finally got it published today. _Ù÷É https://t.co/vibxtu9P48",9/8/18,14:42,2018-09-08 14:42 +0000,4272,41,0.009597378,3,2,21,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03808E+18,https://twitter.com/WeAreRLadies/status/1038080906450198529,"Check out that whole thread, fleshed out in this blog post, for coping strategies and survival tips for the at-times challenging work environment in tech:https://t.co/QVTQiQI73G",9/7/18,15:05,2018-09-07 15:05 +0000,1191,43,0.036104114,4,0,8,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03808E+18,https://twitter.com/WeAreRLadies/status/1038079953248481280,"Making lunch/breakfast/coffee dates to connect with other women in tech has been a great survival tip for me! https://t.co/gmuDcvqNn6",9/7/18,15:02,2018-09-07 15:02 +0000,1097,10,0.00911577,0,1,7,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.04E+18,https://twitter.com/WeAreRLadies/status/1038079434530516992,"This morning I had breakfast ‰÷¥•üwith my friend Amy, who is a data scientist at Pluralsight. She may be a PyLady rather than an R-Lady like me but friends like her are so valuable! _ÙÕ_ https://t.co/Rz01C54M0c",9/7/18,14:59,2018-09-07 14:59 +0000,1698,54,0.03180212,0,1,16,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.04E+18,https://twitter.com/WeAreRLadies/status/1037858241374375937,"And if your geography or circumstances prevent you from joining a user group IRL, be sure to keep tabs on the great work that @RLadiesRemote is doing! _ÙÔø‰Û‰ªÛ•ü",9/7/18,0:21,2018-09-07 00:21 +0000,810,16,0.019753086,0,0,6,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03786E+18,https://twitter.com/WeAreRLadies/status/1037856390939729920,"@_R_Foundation Especially if you are a gender minority in #rstats, look to see if there is an @RLadiesGlobal group near you:https://t.co/hDJ4RfsqhOI have gained so much by being connected and learning from people in my community via user groups. _ÙÕÏ",9/7/18,0:13,2018-09-07 00:13 +0000,2564,38,0.014820593,4,1,10,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03786E+18,https://twitter.com/WeAreRLadies/status/1037855863136899072,"If you are interested in finding local #rstats community, check out RUGs supported by the @_R_Foundation here:https://t.co/XXIzyPMSfZAnd a list compiled by Jumping Rivers here:https://t.co/uS28wVYP4x",9/7/18,0:11,2018-09-07 00:11 +0000,1944,46,0.023662551,3,1,8,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03786E+18,https://twitter.com/WeAreRLadies/status/1037855030806687745,"Our meetup was interesting AND fun. _Ù÷Ä As a meetup organizer, it's always a relief when that comes together. https://t.co/tiU9ou0yuu",9/7/18,0:08,2018-09-07 00:08 +0000,2096,15,0.007156489,0,1,11,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03772E+18,https://twitter.com/WeAreRLadies/status/1037721107363590145,@UtahRUG I've thought a lot about an _ÙÕÏ R-Ladies _ÙÕÏ chapter for SLC but am focusing on the general RUG for now.,9/6/18,15:16,2018-09-06 15:16 +0000,630,3,0.004761905,0,0,2,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03772E+18,https://twitter.com/WeAreRLadies/status/1037720572329902080,"@UtahRUG I started co-organizing the SLC RUG late last year, when we moved the group from email lists to Meetup so folks could find us & started up regular monthly meetings. SLC folks have a couple of data science, big data, and Python meetups to participate in, but just us for #rstats!",9/6/18,15:13,2018-09-06 15:13 +0000,747,7,0.009370817,1,1,2,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03772E+18,https://twitter.com/WeAreRLadies/status/1037719620420026368,"@UtahRUG The speaker for today is actually really old school and either a) would hate that joke or b) not have any idea what it meant. _Ù÷âHe gave a really great talk earlier this year about simulations for power analyses and I expect today to be great, though!",9/6/18,15:10,2018-09-06 15:10 +0000,462,3,0.006493506,0,1,0,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03772E+18,https://twitter.com/WeAreRLadies/status/1037719085969072128,"I'm working this morning, then getting ready to host this month's @UtahRUG at lunch time._Ù÷ BAYES FOR BAES today _Ù÷ https://t.co/B7einWtLQh",9/6/18,15:08,2018-09-06 15:08 +0000,1433,16,0.011165387,0,2,7,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03744E+18,https://twitter.com/WeAreRLadies/status/1037443588223684608,It's been really fun to watch the tweets coming from #LatinR2018 over the past few days! https://t.co/FVWKAWGye9,9/5/18,20:53,2018-09-05 20:53 +0000,1302,23,0.017665131,1,0,12,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03738E+18,https://twitter.com/WeAreRLadies/status/1037375528922038273,"@juliasilge I just noticed those tweets didn't come from the account I mean them to.I'M VERY GOOD AT SOCIAL MEDIA, EVERYONE.",9/5/18,16:22,2018-09-05 16:22 +0000,314,6,0.01910828,0,0,5,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.04E+18,https://twitter.com/WeAreRLadies/status/1037367828419031042,"@angiefagerlin @DataCamp @tanyacash21 Nooooooo, talking to IRL friends is better than podcasts. ‰_•ü",9/5/18,15:52,2018-09-05 15:52 +0000,140,3,0.021428571,0,1,2,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03737E+18,https://twitter.com/WeAreRLadies/status/1037366263452819459,This is the project I was demoing yesterday. It's exciting to see it out in the world now! https://t.co/TAntKDiUfv,9/5/18,15:46,2018-09-05 15:46 +0000,3466,37,0.01067513,3,1,19,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03735E+18,https://twitter.com/WeAreRLadies/status/1037354733344677888,@tanyacash21 @DataCamp Absolutely not! It was great to hear your perspective on building data products. _ÙÕ»_ÙÈ,9/5/18,15:00,2018-09-05 15:00 +0000,161,3,0.01863354,0,0,1,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.04E+18,https://twitter.com/WeAreRLadies/status/1037351590930173952,I walk 2/3 of my kids to school every day and the walk home has become my PODCAST TIME. Today I finished up the @DataCamp episode with @tanyacash21! _ÙÕø https://t.co/SOGqlKpDz0,9/5/18,14:47,2018-09-05 14:47 +0000,2928,207,0.070696721,0,3,27,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03701E+18,https://twitter.com/WeAreRLadies/status/1037008317841727488,"I spend lots of time doing analysis/modeling, of course, but I also spend lots of time communicating about my work, via writing, speaking, interactive apps, data visualization, etc. Communicating effectively increases the value of the data work I do.",9/4/18,16:03,2018-09-04 16:03 +0000,1805,23,0.012742382,2,0,14,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03701E+18,https://twitter.com/WeAreRLadies/status/1037006589377445888,"@JennyBryan @g3rv4 @DesiNavadeh We do get the occasional toddler, cat, and dog. (And some at times are mine.) That video call life! _ÙÔ¦_Ù÷È_Ù¦",9/4/18,15:56,2018-09-04 15:56 +0000,353,10,0.028328612,0,1,2,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03681E+18,https://twitter.com/WeAreRLadies/status/1036814602187599878,"Feeling this one tonight before the new work week begins in earnest tomorrow! You got this, everybody. _ÙÕ» https://t.co/spmZtMUqev",9/4/18,3:13,2018-09-04 03:13 +0000,4550,50,0.010989011,0,2,22,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03676E+18,https://twitter.com/WeAreRLadies/status/1036756266335449089,@Emil_Hvitfeldt That is the Dracula editor theme in RStudio! _٤݉ۉªâ•ü,9/3/18,23:22,2018-09-03 23:22 +0000,126,11,0.087301587,0,2,1,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.04E+18,https://twitter.com/WeAreRLadies/status/1036750665593176064,"It's been a lovely, lazy afternoon at home doing meal prep for the week and reading with my kids. After my initial _ÙÕ£, my models did successfully finish training somewhere along the way! _Ù_äHere is a _Ù_Çsneak preview_Ù_Ç of a blog post I'm working on, maybe for tomorrow??? https://t.co/HM7HezgkUC",9/3/18,22:59,2018-09-03 22:59 +0000,1028,97,0.094357977,0,1,13,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03669E+18,https://twitter.com/WeAreRLadies/status/1036690670381981703,Let's try this... again. _Ù__ https://t.co/QDAR2hDd6m,9/3/18,19:01,2018-09-03 19:01 +0000,1468,154,0.104904632,0,2,5,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.04E+18,https://twitter.com/WeAreRLadies/status/1036689211565400064,"Well, my day off #rstats session is off to an EXPLOSIVE _ÙÕ£ start, as I was perhaps too aggressive with my parallel processing and memory aspirations. _Ù÷Â",9/3/18,18:55,2018-09-03 18:55 +0000,1925,48,0.024935065,1,1,7,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.04E+18,https://twitter.com/WeAreRLadies/status/1036608084695638017,"@juliasilge Today is a holiday in the US so I‰Ûªm not working for my day job. I plan to spend time with my family, and do a bit of side project #rstats. _Ù÷",9/3/18,13:33,2018-09-03 13:33 +0000,1374,44,0.03202329,1,1,12,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.03661E+18,https://twitter.com/WeAreRLadies/status/1036607346091249664,"Hello there, friends! _ÙÔÜ I @juliasilge am so happy to be the curator for this week. I plan to tweet ‰Ï¬ A WEEK IN THE LIFE OF AN R-LADY ‰Ï¬ and hope to share some great resources along the way.",9/3/18,13:30,2018-09-03 13:30 +0000,8046,289,0.035918469,11,1,98,9/3/18,9/8/18,Julia Silge,JuliaSilge,0
1.05777E+18,https://twitter.com/WeAreRLadies/status/1057770680924553216,Anyone else want to keep this @github color scheme all year round? _Ù__Ù_Ä https://t.co/odOKB7BucG,10/31/18,23:05,2018-10-31 23:05 +0000,1991,166,0.083375188,1,0,23,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05775E+18,https://twitter.com/WeAreRLadies/status/1057750367293792256,"@laveressica I'm not going to lie, lacking a specific end goal can make the day-to-day occasionally tricky. But the plus side is that so many new opportunities will cross your path while you are in grad school, and you can shape your PhD as you go to reflect your changing interests.",10/31/18,21:45,2018-10-31 21:45 +0000,184,3,0.016304348,0,1,1,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05775E+18,https://twitter.com/WeAreRLadies/status/1057748570923659264,"@laveressica I wasn't sure where I wanted to end up academia v. industry etc. (I still don't), but I thought about the level of autonomy I would have at any job. I hoped that with a PhD I would have more control over what I worked on and have more variety in the problems I could solve.",10/31/18,21:38,2018-10-31 21:38 +0000,196,4,0.020408163,0,1,2,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.0577E+18,https://twitter.com/WeAreRLadies/status/1057703433463951361,"I've been trying to break some bad habits in my workflow, so I've been attending the Best Practices Working Group meetings @UCBIDS led by @staeiou. Read about challenges when working in teams: https://t.co/MvSATf7ttI",10/31/18,18:38,2018-10-31 18:38 +0000,2746,65,0.023670794,4,0,16,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.06E+18,https://twitter.com/WeAreRLadies/status/1057667764301656064,"@dpseidel @srsly_ghosts Yes! I feel more uncertain about my future now than I did going in, but I like to think that this means I'm growing. :D",10/31/18,16:17,2018-10-31 16:17 +0000,429,8,0.018648019,0,0,6,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05767E+18,https://twitter.com/WeAreRLadies/status/1057666563359141888,@dpseidel @srsly_ghosts I didn't go through #MSlife but something that helped me decide yes/no on going for the PhD was thinking about jobs I eventually wanted. Would I be able to get there without a higher degree?,10/31/18,16:12,2018-10-31 16:12 +0000,563,13,0.023090586,0,2,5,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05765E+18,https://twitter.com/WeAreRLadies/status/1057648070341492736,"Any #RLadies thinking about grad school? Ask me anything about life as a PhD student. If I can't answer your question, I'll try to find another #RLady who can.",10/31/18,14:58,2018-10-31 14:58 +0000,11271,246,0.021825925,20,6,67,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05743E+18,https://twitter.com/WeAreRLadies/status/1057428561005490176,Some serious #rstats happening in Iceland. https://t.co/CnNH1XfuXf,10/31/18,0:26,2018-10-31 00:26 +0000,2530,15,0.005928854,3,0,7,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.06E+18,https://twitter.com/WeAreRLadies/status/1057397766303830016,Here is what I have so far for #TidyTuesday. I look at the first download of each R version and downloads of the tidyverse v. its component packages. https://t.co/OmHKsYCV8X,10/30/18,22:24,2018-10-30 22:24 +0000,2974,55,0.018493611,2,0,8,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05733E+18,https://twitter.com/WeAreRLadies/status/1057332020492173312,Need some inspiration to get started? Check out @drob's #TidyTuesday analysis from last week. https://t.co/kXWuOpVLRM,10/30/18,18:02,2018-10-30 18:02 +0000,2943,12,0.004077472,1,0,6,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.06E+18,https://twitter.com/WeAreRLadies/status/1057329133955371008,What has been your favorite dataset so far in #TidyTuesday? Mine was the Russian Troll Tweets from 538. https://t.co/SWlwMN6CPd,10/30/18,17:51,2018-10-30 17:51 +0000,2467,42,0.017024726,2,1,9,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05731E+18,https://twitter.com/WeAreRLadies/status/1057310181829173248,"@FoodWebEcology It's great that you are setting aside time to do this! I was a bit skeptical that the experience would drastically improve my coding, but I was totally wrong. The investment was definitely worth it.",10/30/18,16:36,2018-10-30 16:36 +0000,104,0,0,0,0,0,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05729E+18,https://twitter.com/WeAreRLadies/status/1057292901577744386,"Fun fact: if you come across a cool dataset in the wild, you can file an issue and let the #TidyTuesday team know. https://t.co/dGds2f3Yeb",10/30/18,15:27,2018-10-30 15:27 +0000,14729,52,0.00353045,4,0,21,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05729E+18,https://twitter.com/WeAreRLadies/status/1057286053604642816,"Also, shout-out to @thomas_mock and the @R4DScommunity for making #TidyTuesday happen. I always appreciate Thomas's encouragement to the participants. Thank you for all of your work!",10/30/18,15:00,2018-10-30 15:00 +0000,1777,21,0.01181767,0,1,3,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05729E+18,https://twitter.com/WeAreRLadies/status/1057285144816435201,"It's #TidyTuesday! I've been behind on participating since the semester started, but I'm going to try to get something done today (or at least this week, there is always #TardyTidyTuesday). Tag this account with your plots, and I'll give them a boost. _Ù÷_ https://t.co/4Wi3UTNAlb",10/30/18,14:56,2018-10-30 14:56 +0000,4706,31,0.006587335,3,1,10,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05704E+18,https://twitter.com/WeAreRLadies/status/1057041110239866880,"Ok, enough about me. Tell me about your uses of #rstats. https://t.co/DOUmSbANWs",10/29/18,22:46,2018-10-29 22:46 +0000,2311,25,0.010817828,2,0,3,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05701E+18,https://twitter.com/WeAreRLadies/status/1057010962429960192,Help an #RLady out. https://t.co/xvHZUASQj2,10/29/18,20:47,2018-10-29 20:47 +0000,1678,7,0.004171633,1,0,2,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.06E+18,https://twitter.com/WeAreRLadies/status/1057007620244951040,"ggplot2 gave me the most trouble (sorry @dpseidel: it‰Ûªs not you, it‰Ûªs me _Ù÷Ï).https://t.co/QuDiDINivm",10/29/18,20:33,2018-10-29 20:33 +0000,1629,45,0.027624309,1,0,4,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05701E+18,https://twitter.com/WeAreRLadies/status/1057007375658311680,"Since I run many simulation studies in my current work, I think I learned the most from the joint post with @kellieotto about purrr. https://t.co/dJzWX9u4Yx",10/29/18,20:32,2018-10-29 20:32 +0000,1856,61,0.032866379,2,0,11,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05701E+18,https://twitter.com/WeAreRLadies/status/1057006593315729409,"This summer I updated my #rstats skills, joining the tidyverse by working my way through its core packages. Check out the backstory here: https://t.co/OJa1AyhYzo",10/29/18,20:29,2018-10-29 20:29 +0000,18697,382,0.020431085,9,5,78,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05697E+18,https://twitter.com/WeAreRLadies/status/1056965102769864704,"In short, we want to know where plants/animals are, how many there are, and how these quantities change over space and time. What kinds of data give us enough information to estimate these things reliably?",10/29/18,17:44,2018-10-29 17:44 +0000,1152,13,0.011284722,0,0,4,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05696E+18,https://twitter.com/WeAreRLadies/status/1056964966111096832,"Next I have a practice qualifying exam. In our department, this is a presentation of the work we have done so far and a plan for the rest of the dissertation. The real deal is next Monday _Ù÷±. I‰Ûªm talking about identifiability in species distribution and abundance models.",10/29/18,17:44,2018-10-29 17:44 +0000,2275,25,0.010989011,0,1,9,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05693E+18,https://twitter.com/WeAreRLadies/status/1056930513070387200,"First up today is finishing my review for the Journal of Open Source Software. This is my first time formally reviewing software. I like the transparent review process, and once I got over the fear of doing something wrong in front of everyone, I‰Ûªve enjoyed contributing.",10/29/18,15:27,2018-10-29 15:27 +0000,1666,19,0.011404562,0,0,6,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05692E+18,https://twitter.com/WeAreRLadies/status/1056916983160029184,"Hi all, I‰Ûªm Sara and I‰Ûªm a Ph.D. student in statistics @UCBerkeley and a data science fellow @UCBIDS. I currently work on ecology applications. I‰Ûªm usually at @sastoudt, but I‰Ûªm looking forward to curating here this week.",10/29/18,14:33,2018-10-29 14:33 +0000,1851,80,0.043219881,0,0,24,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05628E+18,https://twitter.com/WeAreRLadies/status/1056277433282953217,"Currently spending a lazy Saturday going through some of @hadleywickham's recommended readings in applied data science - lots of great reads in here! _ÙÒÐhttps://t.co/eFLGDXC8J1",10/27/18,20:12,2018-10-27 20:12 +0000,6316,439,0.069506016,31,0,95,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.05593E+18,https://twitter.com/WeAreRLadies/status/1055934657991229442,"Alright, so the #rspatial study group wasn't enough for the intermediate R users in my research center...so we're starting R Package Hour!Wish me luck as I learn more about developing #rstats packages in order to teach other people to develop packages _ÙÒ__ÙÒ__ÙÒ_ https://t.co/b2FaNCLazp",10/26/18,21:30,2018-10-26 21:30 +0000,7427,409,0.055069342,7,1,71,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.05586E+18,https://twitter.com/WeAreRLadies/status/1055861466442747905,"To get #rstats help more efficiently, try out the reprex package! It helps you put together a reproducible example for others to help you figure out what's going on. _ÙÔ©‰Û_ÙÕÈSlides from @JennyBryan cover it all... https://t.co/6QDoTnj9os https://t.co/jXD5p9lbiT",10/26/18,16:39,2018-10-26 16:39 +0000,4350,233,0.053563218,15,0,39,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.05559E+18,https://twitter.com/WeAreRLadies/status/1055591591275061249,"And #rstats beginners: I've found in my experience that you'll learn Git faster if you sit down with someone who knows what they're doing and have them walk you through the steps.Don't be afraid to ask someone to show you what to do. It'll help them understand it better too!",10/25/18,22:47,2018-10-25 22:47 +0000,1659,28,0.016877637,2,0,13,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.05559E+18,https://twitter.com/WeAreRLadies/status/1055590878700597248,"Sat down today with a researcher to talk about Git. They were bewildered by the error messages they were getting. _Ù÷ÇIf you know Git, one of best things you can do is show a newbie a quick workflow! Reading about it is fine, but talking it through in person is much, much better.",10/25/18,22:44,2018-10-25 22:44 +0000,7296,91,0.012472588,7,2,50,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.05548E+18,https://twitter.com/WeAreRLadies/status/1055484334348603393,"@rstudio Two other code snippets you should be aware of as well: ""lib"" for library() and ""gg"" for #ggplot2 _Ù_© https://t.co/GkG3BvsDlz",10/25/18,15:40,2018-10-25 15:40 +0000,1354,75,0.055391433,0,0,24,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.05548E+18,https://twitter.com/WeAreRLadies/status/1055480601728507905,"You know what's fun? Autocomplete function() templates in @rstudio! _Ù÷¨#rstats power user tip: Type ""fun"" and get a formatted snippet of code to fill in. Just press TAB 3 times and you're done. There are other snippets, too (and you can customize them)!https://t.co/hI4yHvGy3l https://t.co/CuZDbaO8vf",10/25/18,15:25,2018-10-25 15:25 +0000,3752,189,0.050373134,13,1,57,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.0553E+18,https://twitter.com/WeAreRLadies/status/1055300835368988672,@mathochist @hadleywickham @rstudio @chihacknight Hi Rob! Great to see you on Twitter too - thanks for coming last night at @chihacknight,10/25/18,3:31,2018-10-25 03:31 +0000,239,3,0.012552301,0,0,0,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1055299368927064064,"Y'all, I haven't tweeted all day because I've been busy!1•ü‰Ä£ Education data collaborative at @Chapin_Hall, mainly to learn2•ü‰Ä£ Taught my @openstreetmap R workshop for our @youthmappers club3•ü‰Ä£#Hacktoberfest at @Uptake with @RLadiesChicago co-organizers @ayanalytics & @kitkatbar429 https://t.co/HMpKFO1A8K",10/25/18,3:25,2018-10-25 03:25 +0000,4007,150,0.03743449,3,0,18,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.05512E+18,https://twitter.com/WeAreRLadies/status/1055124381876260865,"When you're early-stage in your career, reading stories of people who have been successful is invaluable. My #rstats hero is @JennyBryan, and she's shared her story in 2 interviews:-@rOpenSci profile by @kellrstats: https://t.co/bz9Jj4UJqG -@statschat: https://t.co/UFWfgIg2qa",10/24/18,15:50,2018-10-24 15:50 +0000,13515,566,0.041879393,47,0,135,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.05492E+18,https://twitter.com/WeAreRLadies/status/1054917779244179456,"Need to access @rstudio quickly from a co-worker's computer, or get people going fast in a teaching setting? Use RStudio Cloud! All the power of R in your browser, with none of the installation. So good for #rstats beginners and learners _Ùª https://t.co/pkTdu6rMjy https://t.co/eVbDcL21iy",10/24/18,2:09,2018-10-24 02:09 +0000,29713,1277,0.042977821,96,4,250,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.05482E+18,https://twitter.com/WeAreRLadies/status/1054816766382260224,"A few photos of today's workshop with sf and tmap at @GeoDaCenter. I learned new things too:_ÙÕÈ_ÙÒ_ Installing/updating R on Windows is tough; use ""installr"" by @talgalili to help. https://t.co/wa5CWfbNhF‰Ò_Ù÷± Error messages are scary! Reduce fear by troubleshooting them live. https://t.co/rM97bC8ZRX",10/23/18,19:28,2018-10-23 19:28 +0000,3014,116,0.03848706,4,0,14,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.05475E+18,https://twitter.com/WeAreRLadies/status/1054747543370907649,"@_andrewgeisler I'm hoping that as of today, my new mental metaphor will help with things (but we'll see...)",10/23/18,14:53,2018-10-23 14:53 +0000,423,3,0.007092199,0,0,2,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.05475E+18,https://twitter.com/WeAreRLadies/status/1054747086728691712,"Also, extending this #tidyr metaphor, when you gather() leaves into a pile, you have to throw out all the sticks! (aka, you want to omit the variables that aren't gathered). Butter is pure, so you just spread() that without worrying about variables to omit. https://t.co/evsBqBWJ9C",10/23/18,14:51,2018-10-23 14:51 +0000,10770,526,0.048839369,8,1,47,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.05474E+18,https://twitter.com/WeAreRLadies/status/1054742083607642112,"Teaching new folks about #rstats tools you're familiar with is valuable: you come up with analogies that help yourself!So, in #tidyr, you spread() data like you're spreading butter (long to wide), and you gather() data like you're raking leaves into a pile (wide to long) _Ùâ https://t.co/TmelLFByOn",10/23/18,14:31,2018-10-23 14:31 +0000,19178,275,0.014339347,13,5,81,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.05449E+18,https://twitter.com/WeAreRLadies/status/1054494788060397570,"Resources I showed them for future exploration:_ÙÒÐ ggplot2 cookbook: https://t.co/azgClwDwl7_ÙÒ_ ggplot2 (and dplyr) cheatsheets: https://t.co/gB9QxxCnc5_ÙÓÐ R for Data Science, ch. 5/3: https://t.co/DxTUarflrZ",10/22/18,22:08,2018-10-22 22:08 +0000,2674,208,0.077786088,15,1,47,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.05449E+18,https://twitter.com/WeAreRLadies/status/1054494443376652290,"Just introduced a researcher at my center to #dplyr and #ggplot2 for the first time _ÙÕÏ We walked through the data together and I showed them how to do basic manipulations, counts, and filters, then plot their data! It was. Life. Changing.",10/22/18,22:07,2018-10-22 22:07 +0000,9908,226,0.022809851,10,2,97,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.05444E+18,https://twitter.com/WeAreRLadies/status/1054439600947630081,One of my favorite #rstats slide decks ever is @CVWickham's talk on how to start contributing to the R community. Absolutely changed the way I viewed my relationship with the tools I used - and encouraged me to submit my first ever PR! _ÙªÎhttps://t.co/5Mmma6lui2 https://t.co/FpGJGAmzgy,10/22/18,18:29,2018-10-22 18:29 +0000,19319,963,0.049847301,34,0,96,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.05441E+18,https://twitter.com/WeAreRLadies/status/1054413208344281090,"My Monday so far: - Had a call with @justinmshea about open source, organizing, and a new project we're going to collaborate on _ÙÔ¬‰Û_ÙÕÈ_ÙÔ©‰Û_ÙÕÈ - Brought in apple cider donuts + apples for the researchers in my office _Ù__Ù© (& for my birthday!) FYI it's ‰Ï¬ birthday week ‰Ï¬ for me! _Ù_ä_Ù_ö https://t.co/6HrLzUAMbh",10/22/18,16:44,2018-10-22 16:44 +0000,5416,192,0.035450517,3,7,27,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.0544E+18,https://twitter.com/WeAreRLadies/status/1054401812370018304,"@jananivijayan1 @RLadiesChicago @GeoDaCenter I know! I'm working with my professor who I wrote my thesis under, Luc Anselin, and it's the perfect job for me right now. I think it's similar to what @dataandme is doing as Tidyverse Developer Advocate, but I'm in academia _Ù÷",10/22/18,15:59,2018-10-22 15:59 +0000,266,9,0.033834586,0,1,2,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.0544E+18,https://twitter.com/WeAreRLadies/status/1054400750745501704,"@RLadiesChicago @GeoDaCenter You can normally find me on here at @CivicAngela, where I tweet about #rstats and #rspatial. I love the R community and am so glad to be a part of it!",10/22/18,15:55,2018-10-22 15:55 +0000,1331,25,0.01878287,0,0,8,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.0544E+18,https://twitter.com/WeAreRLadies/status/1054400135101407233,"Hi folks! Angela here. I'm the founder of @RLadiesChicago and I work as the R Spatial Advocate at the @GeoDaCenter at UChicago! For my job, I get to build out resources for our center and run R workshops for researchers.",10/22/18,15:52,2018-10-22 15:52 +0000,6648,88,0.013237064,3,2,32,10/22/18,10/27/18,Angela Li,CivicAngela,0
1.05367E+18,https://twitter.com/WeAreRLadies/status/1053669460286926848,"Thank you so much for having me as an #RLadies rotating curator! If you want to stay in touch and learn more about #rstats, #opensource, and #datascience, you can follow me over at @alycolumbus. https://t.co/D0OdJGPjsK",10/20/18,15:29,2018-10-20 15:29 +0000,3489,201,0.05760963,4,0,29,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05367E+18,https://twitter.com/WeAreRLadies/status/1053667631025205248,"If you have the time, you can create an adorable Octocat of yourself at https://t.co/94wNxYC21H. #MyOctocat https://t.co/lbhivaunB1",10/20/18,15:21,2018-10-20 15:21 +0000,5802,102,0.017580145,5,4,19,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05E+18,https://twitter.com/WeAreRLadies/status/1053665034016935937,There's 11 more days to complete the #Hacktoberfest2018 challenge! I'm proud to say I completed it for the first time this year. :) #Hacktoberfest is a great way to get involved with the #opensource community and improve your #github skills. To sign up: https://t.co/oIUGgluKat,10/20/18,15:11,2018-10-20 15:11 +0000,1518,33,0.02173913,1,0,7,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05346E+18,https://twitter.com/WeAreRLadies/status/1053462068395790336,"Finally, the R Graph Gallery, in addition to its excellent #ggplot2 guides, has a wonderful #rstats data aRt gallery (with reproducible examples, of course!): https://t.co/98frw1DA9d",10/20/18,1:45,2018-10-20 01:45 +0000,4200,192,0.045714286,15,0,47,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05346E+18,https://twitter.com/WeAreRLadies/status/1053461958559592448,"For more accidental aRt, check out @accidental__aRt and their corresponding tumblr (https://t.co/QqYBlu8u2K), maintained by 2 incredible #RLadies, @kara_woo and @ErikaMudrak!",10/20/18,1:44,2018-10-20 01:44 +0000,1198,21,0.017529215,0,0,3,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05346E+18,https://twitter.com/WeAreRLadies/status/1053461849243414535,".@aschinchon also has an excellent reproducible aRt blog, Fronkonstin: https://t.co/H3WjSJPKtm",10/20/18,1:44,2018-10-20 01:44 +0000,1272,19,0.014937107,1,1,3,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05346E+18,https://twitter.com/WeAreRLadies/status/1053461741785382913,".@JEFworks has a website full of incredible aRt (with code!), ranging in style from psychedelic tunnels to pointillism. https://t.co/UrfsYitEmi",10/20/18,1:43,2018-10-20 01:43 +0000,1164,13,0.011168385,0,0,2,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05333E+18,https://twitter.com/WeAreRLadies/status/1053330103566970880,More math aRt: explore fractals with #rstats! (https://t.co/8FNtv1AN3W) https://t.co/hTjMQNL7zC,10/19/18,17:00,2018-10-19 17:00 +0000,1160,25,0.021551724,0,0,3,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05333E+18,https://twitter.com/WeAreRLadies/status/1053329543006584832,"Capturing the wonder of #mathematics, reproducible mathematical art with R: (https://t.co/8vzZGnzFe8) https://t.co/VXwsSSHkGw",10/19/18,16:58,2018-10-19 16:58 +0000,1314,37,0.028158295,3,0,8,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05333E+18,https://twitter.com/WeAreRLadies/status/1053328596326961152,How to draw portraits with text: (https://t.co/DTIfrn2zOQ) https://t.co/mpYmhfZWRi,10/19/18,16:54,2018-10-19 16:54 +0000,1142,59,0.051663748,4,0,11,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05333E+18,https://twitter.com/WeAreRLadies/status/1053328152297058304,"Recently shared by @dataandme, Visual Illusions with R: (https://t.co/ziWrWm3iKM) https://t.co/VTHfPYxVOm",10/19/18,16:52,2018-10-19 16:52 +0000,1675,50,0.029850746,2,0,6,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05333E+18,https://twitter.com/WeAreRLadies/status/1053327792551522304,"Trianglify: an R package to generate a ""trianglified"" color gradient. (https://t.co/V9iZe0Okfw) https://t.co/PkM3r0aofi",10/19/18,16:51,2018-10-19 16:51 +0000,1639,103,0.062843197,3,0,18,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05333E+18,https://twitter.com/WeAreRLadies/status/1053327521096159232,Happy Friday! Today we're going to chill with one of my favorite applications of #rstats: aRt! https://t.co/eZrkhLSxeG,10/19/18,16:50,2018-10-19 16:50 +0000,1575,37,0.023492063,1,1,9,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05315E+18,https://twitter.com/WeAreRLadies/status/1053154501660598272,"Excellent tip from a fellow #RLady and #NASADatanaut. For #Windows users, the keyboard shortcut equivalent is CTRL+A to select all, then CTRL+I to neatly align everything. https://t.co/mKkR2sMkCd",10/19/18,5:22,2018-10-19 05:22 +0000,4377,84,0.019191227,10,0,54,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05315E+18,https://twitter.com/WeAreRLadies/status/1053148293151117312,"Another thing I love about @GirlScoutsOC is that it has many great STEM allies, including @bhontz who just recently got a bunch of #RLadies buttons for an upcoming event! https://t.co/PbBYUIiWXw",10/19/18,4:58,2018-10-19 04:58 +0000,1590,42,0.026415094,1,0,10,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05315E+18,https://twitter.com/WeAreRLadies/status/1053147388880146432,"On a tangential note, when the #NASADatanauts application opens again in the next few months, you should definitely apply!! It's the coolest community ever, and you'll learn so much from the Watercooler Chats and everyone. https://t.co/HExHRimpox",10/19/18,4:54,2018-10-19 04:54 +0000,1561,48,0.03074952,4,0,8,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05315E+18,https://twitter.com/WeAreRLadies/status/1053146794337529858,"I try to #payitforward to local Girl Scout troops with @GirlScoutsOC. I've had the honor of leading a #NASADatanauts workshop for them in the past, and I hope to lead many more. (https://t.co/anOsrHg5kk) https://t.co/QGzFzSVOPw",10/19/18,4:52,2018-10-19 04:52 +0000,890,4,0.004494382,0,0,1,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05314E+18,https://twitter.com/WeAreRLadies/status/1053144790961811456,"After I started reading their blogs (https://t.co/reQvRPmx4U, https://t.co/i5zzqU23QA) a few years ago, I began to believe that I could be as much of a math/stats/programming badass as these 2 incredible women and fell in love with #rstats for #dataviz and reproducible analysis. https://t.co/btTXiCxjZX",10/19/18,4:44,2018-10-19 04:44 +0000,2693,98,0.036390642,1,0,26,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05314E+18,https://twitter.com/WeAreRLadies/status/1053141123579822080,"Something that I always keep in mind when I'm mentoring younger groups is the importance of #diversity. I probably wouldn't have become so interested in and passionate about the #rstats community if it weren't for 2 #RLadies trailblazers, @juliasilge and @hspter. https://t.co/49zh6uxkpL",10/19/18,4:29,2018-10-19 04:29 +0000,4917,100,0.020337604,4,3,15,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05314E+18,https://twitter.com/WeAreRLadies/status/1053139550560673792,"Best of luck, and if you have any questions related to breaking into the #entrylevel #datascience job market, don‰Ûªt hesitate to contact me here or via email.",10/19/18,4:23,2018-10-19 04:23 +0000,1251,20,0.01598721,1,1,5,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05314E+18,https://twitter.com/WeAreRLadies/status/1053139183122886656,"Finally, if you want to stand out, have a website/portfolio/blog that showcase(s) your interest and passion in data science. These will not only help you in applying for jobs, but people may also reach out to you with freelance projects, interviews, and speaking engagements.",10/19/18,4:22,2018-10-19 04:22 +0000,7061,125,0.017702875,3,1,39,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05E+18,https://twitter.com/WeAreRLadies/status/1053138478555222016,"Side Note: If you‰Ûªre interested in medicine, I‰Ûªd recommend doing research w/ a department that does epidemiological/biostatistical studies. You‰Ûªll learn not only stats/programming, but also experimental design and causal inference that can extend far beyond medical applications.",10/19/18,4:19,2018-10-19 04:19 +0000,1194,8,0.006700168,1,0,1,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05314E+18,https://twitter.com/WeAreRLadies/status/1053137916984098817,"Also, presenting the results of your research to your mentors and others at conferences will greatly improve your public speaking skills and networking circles. I had the honor of presenting my research at #WSDS2017, #JMM2018, and #SIAMUQ18 thanks to some #UROP research grants.",10/19/18,4:17,2018-10-19 04:17 +0000,1050,13,0.012380952,0,0,2,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05314E+18,https://twitter.com/WeAreRLadies/status/1053137427009654784,"Research positions that use stats/computer science skills aren‰Ûªt necessarily all concentrated in the stats/computer science departments. You can learn and perform useful stats/computer science work in any university department, from philosophy to political science to biology.",10/19/18,4:15,2018-10-19 04:15 +0000,2152,27,0.012546468,2,1,15,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05E+18,https://twitter.com/WeAreRLadies/status/1053137158020653057,"Continuing yesterday's thread: if you feel comfortable with your stats/programming/computer science skills, then I would highly recommend you apply for industry internships or research positions at your university.",10/19/18,4:13,2018-10-19 04:13 +0000,1034,7,0.006769826,0,0,2,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05263E+18,https://twitter.com/WeAreRLadies/status/1052628071776280576,"A great way to learn #rstats is to read @hadleywickham's freely-available book, R for Data Science (https://t.co/IdFhuCwLYx). An even better way is to learn with the #rstats community by joining awesome #rlady @kierisi's online #r4ds learning community (https://t.co/rnkOuU7sqN)",10/17/18,18:31,2018-10-17 18:31 +0000,7910,340,0.042983565,31,1,80,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05263E+18,https://twitter.com/WeAreRLadies/status/1052627668523409409,I'd also recommend @jhubiostats Chromebook Data Science program (which is also free!): https://t.co/NlPUxBcCay,10/17/18,18:29,2018-10-17 18:29 +0000,1311,25,0.019069413,1,0,11,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05E+18,https://twitter.com/WeAreRLadies/status/1052627581894184960,Some courses I‰Ûªve taken that I‰Ûªd recommend are MIT‰Ûªs and Harvard's Intro to Comp Sci courses and Stanford‰Ûªs Machine Learning course by @AndrewYNg (https://t.co/4jMWAsJLdu).,10/17/18,18:29,2018-10-17 18:29 +0000,1675,54,0.032238806,2,1,24,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05263E+18,https://twitter.com/WeAreRLadies/status/1052627412041662464,"If you don‰Ûªt have much of a stats/programming/computer science background or would like to improve your skills in any of these areas, I‰Ûªd advise you to either fit some stats/computer science courses into your schedule or take free, online courses from @coursera and @edXOnline.",10/17/18,18:28,2018-10-17 18:28 +0000,2245,58,0.025835189,3,0,19,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05261E+18,https://twitter.com/WeAreRLadies/status/1052609098645004288,I frequently get asked by both undergraduate and graduate students how I earned my current role as a #datascientist at @pacificlife. The following thread contains my advice for breaking into the #entrylevel #datascience job market. https://t.co/Eh9akegpiD,10/17/18,17:15,2018-10-17 17:15 +0000,1503,82,0.054557552,0,0,4,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05241E+18,https://twitter.com/WeAreRLadies/status/1052414088238813186,@ethankutlu You're welcome!! :),10/17/18,4:20,2018-10-17 04:20 +0000,1467,7,0.004771643,0,0,0,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05E+18,https://twitter.com/WeAreRLadies/status/1052413135951486976,@MITOCW,10/17/18,4:16,2018-10-17 04:16 +0000,1469,14,0.009530293,0,0,0,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05241E+18,https://twitter.com/WeAreRLadies/status/1052409070500630529,Interested in converting your #Excel skills to #rstats skills? You can read my guide (that was even featured on @revodavid's blog!): https://t.co/ABaCI6F3gh https://t.co/1r3ewFSRCj,10/17/18,4:00,2018-10-17 04:00 +0000,2908,157,0.053988996,13,0,42,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05241E+18,https://twitter.com/WeAreRLadies/status/1052408768162668545,"If you want to learn how to build an #rshiny app, you can reference my #OSCON tutorial I had the honor of presenting earlier this year: https://t.co/Xvl3obhZaT https://t.co/ANo7mEMr8p",10/17/18,3:59,2018-10-17 03:59 +0000,7980,199,0.024937343,13,2,44,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05241E+18,https://twitter.com/WeAreRLadies/status/1052407824918040576,"https://t.co/fi1vz85kL7 is a hub for all sorts of helpful #rstats tutorials, from #ggplot2 to #optimization: https://t.co/4Eqf8ExLUf https://t.co/kzSGU2ReVh",10/17/18,3:55,2018-10-17 03:55 +0000,2012,102,0.050695825,10,0,24,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05239E+18,https://twitter.com/WeAreRLadies/status/1052385375350480896,.@RStudio has a comprehensive guide on how to get started with #machinelearning and #deeplearning with #TensorFlow and #Keras in R: https://t.co/QSAWgVLIrg https://t.co/oZU17TE2pW,10/17/18,2:26,2018-10-17 02:26 +0000,1845,61,0.033062331,3,0,16,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05238E+18,https://twitter.com/WeAreRLadies/status/1052383719929995266,"#caret is my favorite #rstats package for many reasons, and this documentation by @topepos is one of them: https://t.co/BlZGKZTgdU https://t.co/dWog72OYZC",10/17/18,2:20,2018-10-17 02:20 +0000,1697,176,0.103712434,2,1,13,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05238E+18,https://twitter.com/WeAreRLadies/status/1052383074590191616,"If you want to get into #machinelearning, there is an excellent free course from @mitopencourseware: https://t.co/36Ggsio4KG https://t.co/febssrloNE",10/17/18,2:17,2018-10-17 02:17 +0000,7833,471,0.060130218,25,4,82,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05238E+18,https://twitter.com/WeAreRLadies/status/1052382089369202688,This is a great introduction to #machinelearning with #caret and other packages in R: https://t.co/ChK6qg0WWO https://t.co/wegbfq8O00,10/17/18,2:13,2018-10-17 02:13 +0000,1801,121,0.067184897,3,0,14,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05238E+18,https://twitter.com/WeAreRLadies/status/1052381407731802112,"Since today is #tidytuesday, I'll be sharing some #rstats resources I've found useful (both related and unrelated to the #tidyverse). https://t.co/6JwOjo6x6Y",10/17/18,2:10,2018-10-17 02:10 +0000,3525,230,0.065248227,3,1,16,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05202E+18,https://twitter.com/WeAreRLadies/status/1052020247836864512,@bluejaziac Thanks! The map in the header represents all of the countries worldwide where there are R-Ladies chapters.,10/16/18,2:15,2018-10-16 02:15 +0000,109,5,0.04587156,0,1,1,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05202E+18,https://twitter.com/WeAreRLadies/status/1052019405440180224,@bwundervald Thank you so much!! My presentation went really well. :),10/16/18,2:12,2018-10-16 02:12 +0000,147,8,0.054421769,0,0,1,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05202E+18,https://twitter.com/WeAreRLadies/status/1052017823961075713,"Similar to the R Graph Gallery, this resource teaches you (with full #rstats code) how to build the top 50 most common #ggplot2 visualizations: https://t.co/OoPhlxgnqS https://t.co/XSnMu2sx3j",10/16/18,2:06,2018-10-16 02:06 +0000,7802,519,0.066521405,46,1,144,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05201E+18,https://twitter.com/WeAreRLadies/status/1052007929476333568,The R Graph Gallery is an excellent resource for learning how to make #ggplot2 visualizations. All examples come with code! https://t.co/KL5Z3U3DHl https://t.co/bYdRcGYqhE,10/16/18,1:26,2018-10-16 01:26 +0000,118092,8722,0.07385767,576,12,1333,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05201E+18,https://twitter.com/WeAreRLadies/status/1052006171542876160,A lot of helpful #dataviz tutorials can be found all in one place at @visualisingdata. https://t.co/mRKEfPkiVQ https://t.co/TjdcF0v2zd,10/16/18,1:19,2018-10-16 01:19 +0000,2543,172,0.06763665,12,0,39,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.052E+18,https://twitter.com/WeAreRLadies/status/1052004610691354624,".@storywithdata not only has written an excellent book on #datastorytelling, but also has a free podcast, #SWDPodcast. https://t.co/dqSvdj423V",10/16/18,1:13,2018-10-16 01:13 +0000,1790,44,0.024581006,1,2,7,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.052E+18,https://twitter.com/WeAreRLadies/status/1052002333284954112,.@flowingdata has some excellent tutorials on getting started with visualizations in #rstats and #javascript: https://t.co/nBP25fzLlM,10/16/18,1:04,2018-10-16 01:04 +0000,1457,36,0.024708305,2,0,8,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.052E+18,https://twitter.com/WeAreRLadies/status/1051999861875167232,"Hans Rosling, the creator of @Gapminder, was a data visualization and storytelling pioneer. I'd recommend checking out Gapminder and watching his TED talk, ""Let my dataset change your mindset."" https://t.co/XIKfYmTfwo",10/16/18,0:54,2018-10-16 00:54 +0000,1326,34,0.025641026,1,0,12,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.052E+18,https://twitter.com/WeAreRLadies/status/1051998338063556608,".@noahi's ""Choosing visual properties for successful visualizations"" will enable you to start building concise and informative data visualizations: https://t.co/PiD024XLrq",10/16/18,0:48,2018-10-16 00:48 +0000,1429,51,0.035689293,1,0,5,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05188E+18,https://twitter.com/WeAreRLadies/status/1051879937483796481,"I was invited to give a training at work this afternoon about #dataviz and #datastorytelling! After the presentation, I‰Ûªm going to tweet out some helpful resources on these subjects. https://t.co/Ylh53s4CZN",10/15/18,16:58,2018-10-15 16:58 +0000,5153,350,0.067921599,7,2,49,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05188E+18,https://twitter.com/WeAreRLadies/status/1051876542974812160,"Finally, Dr. Linda Palmer is a project scientist at @ucirvine studying #neuroscience and it‰Ûªs relationships to Kantian philosophy and #AI. Her latest paper can be found here: https://t.co/qNwyM9a1Vl",10/15/18,16:44,2018-10-15 16:44 +0000,928,6,0.006465517,0,0,2,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05188E+18,https://twitter.com/WeAreRLadies/status/1051875707897311232,Maricela Cruz is a PhD student in #statistics at @ucirvine researching statistical methods in assessing the effectiveness of complex healthcare interventions. You can read more about her research on her website: https://t.co/BJfVjPWkQb,10/15/18,16:41,2018-10-15 16:41 +0000,922,7,0.007592191,0,0,1,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05188E+18,https://twitter.com/WeAreRLadies/status/1051875177313660931,Aparna Shastry (@aparsha2303) writes helpful posts on @medium about topics related to #datascience and #machinelearning: https://t.co/Y0gTGwiO8X,10/15/18,16:39,2018-10-15 16:39 +0000,854,15,0.017564403,0,0,1,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05187E+18,https://twitter.com/WeAreRLadies/status/1051865057548689408,"Side Note: our friends at #ocrug and @laeRusers have been excellent partners in growing and developing our local #rstats community, and we‰Ûªre excited to collaborate on a hackathon next year!!",10/15/18,15:59,2018-10-15 15:59 +0000,1755,13,0.007407407,3,0,5,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05E+18,https://twitter.com/WeAreRLadies/status/1051864067277697024,"Dr. Madeline Bauer, a retired @usc professor, works with both @RLadiesIrvine and #OCRUG to get people informed about best practices with #rstats. She‰Ûªs also a huge advocate of better #statistics higher education and #ASADatafest events.",10/15/18,15:55,2018-10-15 15:55 +0000,968,8,0.008264463,0,0,1,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05186E+18,https://twitter.com/WeAreRLadies/status/1051863161106624512,@alycolumbus @pacificlife @NASA @RLadiesIrvine @UCIrvine @thewisdomstudy I‰Ûªm thankful for my co-organizers and all of the hard work they put in to help make all of our meetings successful. The following thread will feature each of them and the amazing things they do for the #datascience and #rstats communities:,10/15/18,15:51,2018-10-15 15:51 +0000,969,10,0.010319917,1,0,0,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05186E+18,https://twitter.com/WeAreRLadies/status/1051862575464374272,"@alycolumbus @pacificlife @NASA @RLadiesIrvine @UCIrvine @thewisdomstudy .@RLadiesIrvine has had some impressive gains in participation recently, with a record attendance of ~70 at our last meeting: an intro to #rstats tutorial!",10/15/18,15:49,2018-10-15 15:49 +0000,1026,8,0.007797271,1,1,2,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05186E+18,https://twitter.com/WeAreRLadies/status/1051861258809401350,"Hi everyone!! _ÙÔÜ_ÙÈ My name is Alyssa Columbus (@alycolumbus), and I'm a data scientist at @pacificlife, @NASA Datanaut, and the founder of @RLadiesIrvine. _ÙÔ©‰Û_ÙÕÈ_Ù܉Ϭ",10/15/18,15:44,2018-10-15 15:44 +0000,2477,116,0.046830844,0,2,28,10/15/18,10/20/18,Alyssa Columbus,alycolumbus,1
1.05113E+18,https://twitter.com/WeAreRLadies/status/1051132110281543680,Thanks for a great week everyone!! For more #ranimal #rpet content follow me over at @DrScranto _ÙÔÜ_Ù_,10/13/18,15:26,2018-10-13 15:26 +0000,2452,33,0.013458401,1,0,8,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1050542097412096000,Well ok now I‰Ûªm crying thinking about how KC and Chunk (and Buck) were rescued and given such a great life https://t.co/qK00ZZO9Cu,10/12/18,0:22,2018-10-12 00:22 +0000,2031,7,0.003446578,0,1,1,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05051E+18,https://twitter.com/WeAreRLadies/status/1050508193363873798,Aren‰Ûªt we all Charlie sometimes tho? https://t.co/11MH6zc2zK,10/11/18,22:07,2018-10-11 22:07 +0000,5312,46,0.008659639,1,0,34,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05047E+18,https://twitter.com/WeAreRLadies/status/1050470289694486529,"Gustav! Its okay big boy we know how tough you are, you can snuggle back in https://t.co/MwThaLSRXn",10/11/18,19:36,2018-10-11 19:36 +0000,2031,15,0.007385524,0,0,3,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05047E+18,https://twitter.com/WeAreRLadies/status/1050469962253504512,This beautiful boy will protect us all from outliers and missing values in our data https://t.co/wcJQxAr047,10/11/18,19:35,2018-10-11 19:35 +0000,1840,13,0.007065217,1,1,4,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05047E+18,https://twitter.com/WeAreRLadies/status/1050467519771930624,Maddie sure know how to find a good chin rest https://t.co/I9GCxC5qAj,10/11/18,19:25,2018-10-11 19:25 +0000,3059,15,0.004903563,0,1,9,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05047E+18,https://twitter.com/WeAreRLadies/status/1050467282646917121,"Well I see his point, you should spend equal time petting both him and your keyboard! https://t.co/p9J3HKJ3En",10/11/18,19:24,2018-10-11 19:24 +0000,1047,2,0.00191022,0,0,2,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1050461630621016064,Little tongue slips KILL me https://t.co/uzIEXz1YhW,10/11/18,19:02,2018-10-11 19:02 +0000,3091,10,0.003235199,0,2,2,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1050461369924050947,Jayo! Watch out for those toes behind you!! Better get em!! https://t.co/cjAiWCLeUu,10/11/18,19:01,2018-10-11 19:01 +0000,2676,8,0.002989537,1,1,5,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05046E+18,https://twitter.com/WeAreRLadies/status/1050461006198124544,Laika thinks your code is great! https://t.co/pRDFrKn2tc,10/11/18,18:59,2018-10-11 18:59 +0000,2167,9,0.004153207,0,0,7,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05046E+18,https://twitter.com/WeAreRLadies/status/1050460449739804673,Thats a ‰Û_ _Ù_µBig dog in a littttle bed_Ù_µ https://t.co/kNk6nSH2a9,10/11/18,18:57,2018-10-11 18:57 +0000,1739,9,0.005175388,1,0,3,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05046E+18,https://twitter.com/WeAreRLadies/status/1050457253671780353,"Let‰Ûªs get an overview of the R pet world! Tweet me photos of your _Ù¦ #Rdogs _Ùö #Rcats _Ù´ #Rchickens _Ù #Rherps Be sure to include their names!! https://t.co/Wdnj7ZbHWh",10/11/18,18:45,2018-10-11 18:45 +0000,10337,240,0.023217568,3,25,30,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05046E+18,https://twitter.com/WeAreRLadies/status/1050455239839678465,Maggie also helped with image classification problems at #runconf17 an unconference run by @ropensci _ÙÒá: @alice_data and @mat_kelcey https://t.co/xykKskxPnA,10/11/18,18:37,2018-10-11 18:37 +0000,4184,168,0.040152964,2,1,19,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05045E+18,https://twitter.com/WeAreRLadies/status/1050448737317912578,Maggie and Ruthie both love hiking and playing at the beach https://t.co/FDxIMFZjoy,10/11/18,18:11,2018-10-11 18:11 +0000,999,17,0.017017017,0,0,4,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05045E+18,https://twitter.com/WeAreRLadies/status/1050445701405179906,"I adopted the Ruthie this year, and while I never got to see her as a puppy she was pretty darned cute on her first night home https://t.co/3SkJDiKFNC",10/11/18,17:59,2018-10-11 17:59 +0000,900,26,0.028888889,0,1,5,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05045E+18,https://twitter.com/WeAreRLadies/status/1050445418054733824,I adopted Maggie in 2010 and she was arguably the cutest puppy ever https://t.co/yn3wsqzAGk,10/11/18,17:57,2018-10-11 17:57 +0000,953,19,0.019937041,0,1,5,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05045E+18,https://twitter.com/WeAreRLadies/status/1050445157429125120,And now for the stars of the show my #Rdogs Maggie and Ruthie https://t.co/GbqYspRtsR,10/11/18,17:56,2018-10-11 17:56 +0000,2658,102,0.038374718,0,1,18,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05005E+18,https://twitter.com/WeAreRLadies/status/1050046870079311872,wow #ecologists there are some awesome package suggestions here! I‰Ûªm going to make a moment for all the great #rstats _ÙÒ_,10/10/18,15:34,2018-10-10 15:34 +0000,2223,38,0.017094017,0,1,7,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04979E+18,https://twitter.com/WeAreRLadies/status/1049790551145533441,A shoutout to another #rspatial _ÙÒ_ spatialEco from Jeffrey S. Evans at the @nature_org and @_inundata https://t.co/vWPtGEOmY6,10/9/18,22:35,2018-10-09 22:35 +0000,1644,12,0.00729927,0,1,4,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04979E+18,https://twitter.com/WeAreRLadies/status/1049788801231593474,Find species names like *Pieza pi* (yes for real) with taxize thanks to @sckottie and MANY others including our own @ma_salmon https://t.co/7NJa5R7rPK,10/9/18,22:28,2018-10-09 22:28 +0000,2060,19,0.009223301,0,0,7,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04974E+18,https://twitter.com/WeAreRLadies/status/1049744993978634240,If you need any _ÙÙ_ÙÊ_Ù__ÙÜ_Ù_ _ÙÝ_Ù__Ù___Ù_ÙÔ_ biodiversity data you‰Ûªre covered by rgbif and rerddap by @sckottie @vijaybarve @DanMcGlinn @damianozingaro @JanLauGe @_inundata https://t.co/0FZlzoIFjF,10/9/18,19:34,2018-10-09 19:34 +0000,3242,25,0.007711289,5,0,12,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04973E+18,https://twitter.com/WeAreRLadies/status/1049733599786926081,Oooh and another cool #rspatial _ÙÒ_ https://t.co/WDf8jyyue0 https://t.co/N8F8OxAQvZ,10/9/18,18:49,2018-10-09 18:49 +0000,1796,16,0.008908686,1,0,3,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04973E+18,https://twitter.com/WeAreRLadies/status/1049733090447364101,"I‰Ûªve heard great things about vegan for community ecology, love that it applies so broadly _ÙÕø @JazzaOksanen @DanMcGlinn @ucfagls https://t.co/Ygs4ysjWTy",10/9/18,18:47,2018-10-09 18:47 +0000,1444,6,0.004155125,0,0,4,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04968E+18,https://twitter.com/WeAreRLadies/status/1049683403992252419,"Hey ecologists, what #rstats _ÙÒ_ do you use that‰Ûªs specific to #ecology or #evolution? Let me retweet your faves and give their authors some ‰_•ücc @MethodsEcolEvol @weecology @ESA_Theory @rOpenSci",10/9/18,15:30,2018-10-09 15:30 +0000,13834,332,0.023998843,34,24,73,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1049660362709245953,"If you didn‰Ûªt know that the first computer programmer was a woman, today would be a great day to learn about her! #AdaLovelaceDay https://t.co/yzHpdoDJ5h",10/9/18,13:58,2018-10-09 13:58 +0000,3735,62,0.016599732,15,0,29,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1049477574672470016,*Unimplemented* ‰Û_ exactly like most of my todo list also https://t.co/ziJIgTFWbS,10/9/18,1:52,2018-10-09 01:52 +0000,1941,5,0.002575992,0,0,4,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04948E+18,https://twitter.com/WeAreRLadies/status/1049477049570734081,Ironically every time you call fin you start a new base graphics plot _Ù_£ https://t.co/2OBJBhr0pf,10/9/18,1:50,2018-10-09 01:50 +0000,1269,12,0.009456265,0,0,0,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04948E+18,https://twitter.com/WeAreRLadies/status/1049476067910660096,Over here retweeting myself on this crazy Monday night https://t.co/BZ8Mvz6UXU,10/9/18,1:46,2018-10-09 01:46 +0000,1225,3,0.00244898,0,0,1,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04947E+18,https://twitter.com/WeAreRLadies/status/1049474937839382528,If you were any argument to par() which would you be?,10/9/18,1:41,2018-10-09 01:41 +0000,5418,78,0.014396456,4,4,12,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04947E+18,https://twitter.com/WeAreRLadies/status/1049472599099666433,@dataandme @caijun2046 I do always root for the underdog,10/9/18,1:32,2018-10-09 01:32 +0000,348,3,0.00862069,0,0,1,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1049472530900312064,"@dataandme @caijun2046 but its such a shame, mfrow isn‰Ûªt inherently better, maybe its an artifact from some old tutorial. Who started this? Come explain your love for mfrow",10/9/18,1:32,2018-10-09 01:32 +0000,460,8,0.017391304,0,1,1,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04947E+18,https://twitter.com/WeAreRLadies/status/1049471123828686856,@dataandme @caijun2046 Do you think mfcol every gets jealous of mfrow for being so much more popular?,10/9/18,1:26,2018-10-09 01:26 +0000,146,4,0.02739726,0,1,1,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04941E+18,https://twitter.com/WeAreRLadies/status/1049405905501077504,https://t.co/cDRMQHv9tS,10/8/18,21:07,2018-10-08 21:07 +0000,931,8,0.008592911,0,0,0,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04941E+18,https://twitter.com/WeAreRLadies/status/1049405842842378240,@yale_eeb https://t.co/efjYDNOMiM,10/8/18,21:07,2018-10-08 21:07 +0000,891,10,0.011223345,0,0,0,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.0494E+18,https://twitter.com/WeAreRLadies/status/1049404065585590272,"With a group @yale_eeb we asked ‰ÛÏDo lake-living and sea-living alewife _ÙÙ spawn in the same lakes at the same time?"" https://t.co/vrdcB2ssx2",10/8/18,21:00,2018-10-08 21:00 +0000,2209,122,0.05522861,1,1,7,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.0494E+18,https://twitter.com/WeAreRLadies/status/1049403811566153729,"We analyzed experimental data, asking ‰ÛÏAre there differences in developmental rate between populations of arthropods?‰Û https://t.co/YWCphwqGEE",10/8/18,20:59,2018-10-08 20:59 +0000,1604,57,0.03553616,0,1,0,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.0494E+18,https://twitter.com/WeAreRLadies/status/1049403308467769344,"I‰Ûªve also created mixed-effects time-to-event models (frailty models, survival analysis) in R to analyze ecological data #dataviz",10/8/18,20:57,2018-10-08 20:57 +0000,1047,6,0.005730659,0,0,1,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04936E+18,https://twitter.com/WeAreRLadies/status/1049360531159744513,"@caijun2046 Honestly if there were a competition on all of the details of the arguments to par() in base graphics, I think I might have a shot at the title",10/8/18,18:07,2018-10-08 18:07 +0000,1122,14,0.012477718,0,1,2,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04936E+18,https://twitter.com/WeAreRLadies/status/1049359763153276928,"@caijun2046 Here‰Ûªs an early version of a figure from that paper, before we discovered ggplot2, so I became best friends (frenemies?) with base R graphics https://t.co/7IVSF7zAM8",10/8/18,18:03,2018-10-08 18:03 +0000,1008,28,0.027777778,1,1,1,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04936E+18,https://twitter.com/WeAreRLadies/status/1049359534978998272,"We used the ncf package (by Ottar Bjornstad and @caijun2046 ) to analyze the spatial scale of synchrony between populations of pests across many fieldshttps://t.co/27PHg17vYh",10/8/18,18:03,2018-10-08 18:03 +0000,595,5,0.008403361,0,1,0,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04936E+18,https://twitter.com/WeAreRLadies/status/1049358774383697920,The first real project I did in R was to analyze the spatial and temporal synchrony of insect and arthropod pests in vineyards https://t.co/ACAOMMHEH9,10/8/18,18:00,2018-10-08 18:00 +0000,2094,21,0.010028653,0,1,5,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04934E+18,https://twitter.com/WeAreRLadies/status/1049339744574984193,"I would have loved to have a group like #RLadies to support me then! Thats a big reason I‰Ûªm involved now, to help people get over that steep initial learning curve",10/8/18,16:44,2018-10-08 16:44 +0000,1691,24,0.014192785,2,0,10,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1049338155604819968,"I mean, and also the community that was me and Perry sitting in our otherwise empty lab writing and revising the assignments for that week‰Ûªs computer lab :)",10/8/18,16:38,2018-10-08 16:38 +0000,1380,10,0.007246377,0,1,2,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04934E+18,https://twitter.com/WeAreRLadies/status/1049337563025223681,The only R community I was aware of was the r-help mailing list https://t.co/WGuYhphTxn,10/8/18,16:35,2018-10-08 16:35 +0000,801,6,0.007490637,0,1,0,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04934E+18,https://twitter.com/WeAreRLadies/status/1049336221405786112,I actually started using it so I could TA an intro statistics course for my advisor Perry de Valpine at UC Berkeley https://t.co/iiWSTmNqAS,10/8/18,16:30,2018-10-08 16:30 +0000,746,12,0.016085791,0,1,2,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1049335811873918979,I first learned R in 2006 https://t.co/NoDaWMVWT1,10/8/18,16:28,2018-10-08 16:28 +0000,4082,99,0.024252817,2,2,34,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1049307442977406983,"@DrScranto I‰Ûªll be talking all week about using R in my research in ecology, transitioning to data science, and of course my dogs Maggie and Ruthie!",10/8/18,14:36,2018-10-08 14:36 +0000,866,10,0.011547344,0,0,5,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04931E+18,https://twitter.com/WeAreRLadies/status/1049307171694043138,@DrScranto I‰Ûªm in the middle of making the jump from academia to tech https://t.co/vA0Qt3TFyJ,10/8/18,14:34,2018-10-08 14:34 +0000,914,14,0.015317287,0,1,2,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04931E+18,https://twitter.com/WeAreRLadies/status/1049306666448158721,Hi all!! You can usually find me at @DrScranto tweeting about #RLadies and my dogs! My background is in statistical ecology and I‰Ûªm currently a data scientist in Philly! https://t.co/EUQk6pqsDf,10/8/18,14:32,2018-10-08 14:32 +0000,1884,35,0.018577495,1,1,15,10/8/18,10/13/18,Katie Scranton,drscranto,0
1.04846E+18,https://twitter.com/WeAreRLadies/status/1048459554177081345,"I had an awesome week here (thanks to the people organising this twitter handle!) and it was fun to be for once more active on twitter than usual.Au revoir* _ÙÔÜ*meaning - see ya!",10/6/18,6:26,2018-10-06 06:26 +0000,2546,50,0.019638649,0,0,17,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04846E+18,https://twitter.com/WeAreRLadies/status/1048458272800485376,"Yeah - I actually realised on my way to the talk that drake's prime purpose it not tidiness. But it's a side effect that you'll get for free. And I should definitely care more about dependency watching and time savings! https://t.co/1dzpokZOUA",10/6/18,6:21,2018-10-06 06:21 +0000,2233,16,0.007165249,0,1,5,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04846E+18,https://twitter.com/WeAreRLadies/status/1048457148320104449,"@astronautapirx Thank you! Nope. With my phone that would not have worked. I had my small camera with me. I don't even remember the name, but it takes decent pictures even when you have no clue about photography.",10/6/18,6:17,2018-10-06 06:17 +0000,46,5,0.108695652,0,0,1,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04846E+18,https://twitter.com/WeAreRLadies/status/1048456436345425920,"Oh cool - thanks for pointing out @wytham88!The title `Demystifying ggplot2` sounds promising. https://t.co/P1k0jNApOc",10/6/18,6:14,2018-10-06 06:14 +0000,1386,10,0.007215007,0,0,4,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1048455589649666048,@cantabile We need to talk then! _Ù÷ä,10/6/18,6:11,2018-10-06 06:11 +0000,211,3,0.014218009,0,0,1,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04833E+18,https://twitter.com/WeAreRLadies/status/1048328953570758657,"I like to end workweeks with a bike ride in the vineyards nearby. This always works to clear my head!And so I hopped on my bike - just in time to take pretty sunset pics. https://t.co/7Qsi5jwwgW",10/5/18,21:47,2018-10-05 21:47 +0000,3043,150,0.04929346,0,2,24,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04832E+18,https://twitter.com/WeAreRLadies/status/1048320801592754176,"@RoelandtN42 @xieyihui *adds ""Naruto"" to her stuff-to-watch list*",10/5/18,21:15,2018-10-05 21:15 +0000,95,5,0.052631579,0,0,3,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04832E+18,https://twitter.com/WeAreRLadies/status/1048320544263864322,"@xieyihui I think the package name is actually cool! It adds a mystical touch to making presentations.You can keep ""remarkr"" in the drawer for a future idea _Ù÷ä",10/5/18,21:14,2018-10-05 21:14 +0000,369,2,0.005420054,0,0,2,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04832E+18,https://twitter.com/WeAreRLadies/status/1048318898041507840,"_ÙÔ Even if you are not interested in extending ggplot2 - the tutorial is fun to read, because it also gives you a bit of a ggplot2 history lesson. Additionally, I also learn from already published ggplot2 extensions: https://t.co/3uLXNKPXCk and see how other people managed.",10/5/18,21:07,2018-10-05 21:07 +0000,3460,159,0.045953757,5,4,28,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04832E+18,https://twitter.com/WeAreRLadies/status/1048318611868270592,"My main learning source is this tutorial: https://t.co/xZ4uOXylwRIt starts easy and then increases in difficulty, so ideal for gentle learning. Checkout the examples at the bottom of each section.",10/5/18,21:06,2018-10-05 21:06 +0000,3486,256,0.073436604,3,1,55,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04832E+18,https://twitter.com/WeAreRLadies/status/1048318394389487617,"(for me, this meant to actually read some documentation)When creating a new stat, you can inherit a geom. But to create a new geom, you will need to use {grid} - which is fun to learn!",10/5/18,21:05,2018-10-05 21:05 +0000,2647,19,0.007177937,0,1,11,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04832E+18,https://twitter.com/WeAreRLadies/status/1048318068571721735,Making your own geom or stat requires a bit of an effort because the underlying principle of ggplot2 is not easy to grasp (while ggplot2 itself is super intuitive). Extending ggplot2 requires you to understand how ggproto() works.,10/5/18,21:04,2018-10-05 21:04 +0000,2570,28,0.010894942,0,2,13,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04832E+18,https://twitter.com/WeAreRLadies/status/1048317844767875072,"{ggplot2} offers tons of options to accomplish what you want to visualise. But sometimes you want to use a custom stat or geom, that cannot be assembled form what exists.I am currently working on a custom ggplot2 stat function and here is what I have learned so far: https://t.co/OTx9jTQks1",10/5/18,21:03,2018-10-05 21:03 +0000,30717,3426,0.11153433,33,2,121,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04831E+18,https://twitter.com/WeAreRLadies/status/1048311610190835713,@jeff__benzos @Jeff_Benzos Great idea - looking forward to reading it!,10/5/18,20:38,2018-10-05 20:38 +0000,24,1,0.041666667,0,0,1,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04819E+18,https://twitter.com/WeAreRLadies/status/1048190038448771072,"Happy to hear that!And indeed _ÙªÎ_ÙÔ_ÙÔ to @wmlandau, @rOpenSci & co for all the hard work that went into this! https://t.co/L7aDwLejJc",10/5/18,12:35,2018-10-05 12:35 +0000,2259,7,0.003098716,0,0,6,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04819E+18,https://twitter.com/WeAreRLadies/status/1048189149042360320,"@jeff_benzos, I am curious to know about your learning curve with drake. And did you just start with new projects, or did you ""translate"" older projects as well? https://t.co/LTfM3ne2PM",10/5/18,12:32,2018-10-05 12:32 +0000,52,9,0.173076923,0,2,0,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04796E+18,https://twitter.com/WeAreRLadies/status/1047959631237210112,@GenevaRUsers Plus - I presented what I had learned about {drake} and there were 2 (!) people in the audience that were already using {drake} and knew lots of stuff. How cool is that!,10/4/18,21:20,2018-10-04 21:20 +0000,1020,4,0.003921569,0,0,3,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04796E+18,https://twitter.com/WeAreRLadies/status/1047959484377845760,"On my way back from the RUG meetup in Geneva _Ù_ _ÙÎ. What a nice evening & what a nice crowd - time was flying!_٪Πto dedicated @GenevaRUsers for spreading posters everywhere! https://t.co/9FdZZz6byT",10/4/18,21:19,2018-10-04 21:19 +0000,1680,38,0.022619048,0,1,6,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04796E+18,https://twitter.com/WeAreRLadies/status/1047956157975945216,"Thank you @ma_salmonThat's an even more direct way!So no branches needed - yesss https://t.co/cToX1qjmbo",10/4/18,21:06,2018-10-04 21:06 +0000,1615,4,0.00247678,1,0,3,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04787E+18,https://twitter.com/WeAreRLadies/status/1047873007090368513,"If you look for a xaringan introduction, checkout _ÙÔà blogpost by @apreshill https://t.co/jzKcGz8rCK",10/4/18,15:36,2018-10-04 15:36 +0000,1815,28,0.015426997,1,0,7,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04787E+18,https://twitter.com/WeAreRLadies/status/1047872471452540928,"5. now you should be able to see your slides under https://t.co/xqCcJWzPrQ6. and your github repo will be displayed under https://t.co/D91rgXRJLT",10/4/18,15:34,2018-10-04 15:34 +0000,1634,18,0.011015912,0,2,2,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04787E+18,https://twitter.com/WeAreRLadies/status/1047872363096932352,"* I learned how to publish slides online (learned this here: https://t.co/i4FYdcCSXX). 1. use a github repo for your slides2. generate your slides.html file3. create a git branch `gh-pages`4. wait a bit",10/4/18,15:33,2018-10-04 15:33 +0000,965,33,0.034196891,1,1,10,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04787E+18,https://twitter.com/WeAreRLadies/status/1047871900893032448,"* After two xaringan presentations, I finally learned how to spell `xaringan` ‰ÏÉ * I learned how to left align some parts of slides while the main part is centered using `.left[]`.",10/4/18,15:31,2018-10-04 15:31 +0000,1305,14,0.010727969,0,2,5,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04787E+18,https://twitter.com/WeAreRLadies/status/1047871658642554880,"While polishing my slides for tonight, I learned a bunch of things. (In fact, one reason to give talks, is, to learn new stuff. Sometimes painful, but worth it!)* I learned about `broom::tidy` when I was trying to summarise several lm objects: https://t.co/n2czD2XrFE",10/4/18,15:30,2018-10-04 15:30 +0000,3485,102,0.029268293,3,1,21,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04787E+18,https://twitter.com/WeAreRLadies/status/1047868968688607233,"On my way to Geneva to the @GenevaRUsers. Sun is out, train is on time, I am on time, slides are kinda finished and online, and the examples are almost there. Perfect conditions for a great evening among R colleagues! https://t.co/FAYskIUmfW",10/4/18,15:20,2018-10-04 15:20 +0000,1153,43,0.037294016,0,0,9,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04758E+18,https://twitter.com/WeAreRLadies/status/1047581614677483520,"@rOpenSci @wmlandau I have only started to use drake a few weeks ago (so I am by no means an expert), but I feel that drake is addressing the need to tidy up project workflows and dependencies between the smaller parts of the project.",10/3/18,20:18,2018-10-03 20:18 +0000,1821,15,0.008237232,0,0,7,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04758E+18,https://twitter.com/WeAreRLadies/status/1047578818146394112,"@rOpenSci @wmlandau Drake has a fantastic documentation, featuring- a video explaining the important bits: https://t.co/PkJXj593Tg- a section that compares drake to similar work: https://t.co/dA2cVFx8u6Drake 6.0.0 is now on CRAN https://t.co/ohZgoWkxht",10/3/18,20:07,2018-10-03 20:07 +0000,2645,113,0.042722117,0,1,13,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1047578637577474048,"@rOpenSci @wmlandau 6. Change the create_plot function (e.g. change binwidth)7. Rerun the code and watch the graph changing colors ‰_Ç_ÙÓ«_ÙÓµ",10/3/18,20:06,2018-10-03 20:06 +0000,1530,9,0.005882353,0,1,3,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04758E+18,https://twitter.com/WeAreRLadies/status/1047578314825760768,"@rOpenSci @wmlandau 3. Open make.R and go through the document: drake_plan() and make() are the two important functions. 4. Add the following bit before AND after make(plan) config <- drake_config(plan) vis_drake_graph(config)5. run all code for a first time.",10/3/18,20:05,2018-10-03 20:05 +0000,1389,10,0.007199424,0,1,4,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04758E+18,https://twitter.com/WeAreRLadies/status/1047577799211569154,"@rOpenSci @wmlandau Here is how you can dive into drake - its very simple:1. install.packages(""drake"")2. drake::drake_example(""main"")This will create a folder called ""main"". https://t.co/WzmrpNnVPw",10/3/18,20:03,2018-10-03 20:03 +0000,1590,228,0.143396226,1,1,9,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04758E+18,https://twitter.com/WeAreRLadies/status/1047577305432899589,"Let's talk about `Drake`, an @rOpenSci package that helps you to have clear workflows in R. Drake was created by @wmlandau and many others. https://t.co/SW8q9DiFRl",10/3/18,20:01,2018-10-03 20:01 +0000,24684,1226,0.049667801,38,6,144,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04743E+18,https://twitter.com/WeAreRLadies/status/1047425825040228353,"@beate_proske It is actually not the iris data itself that is causing it, but the skimr::skim() function, which makes small histograms from unicode characters ‰Ð©‰Ð¨‰ÐÊ (I think - correct me if I am wrong).",10/3/18,9:59,2018-10-03 09:59 +0000,59,3,0.050847458,0,0,1,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.0474E+18,https://twitter.com/WeAreRLadies/status/1047401577529712640,@claudia_kasper So do we! _Ù÷_,10/3/18,8:22,2018-10-03 08:22 +0000,29,0,0,0,0,0,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04739E+18,https://twitter.com/WeAreRLadies/status/1047393181892075525,"@louisahsmith Thanks @louisahsmith! Because the unicode characters are generated through a function, it might be many different unicode characters (rectangles of different shapes). But I will keep your suggestion in mind for the future. Many alphas and betas coming up soon _Ù÷ä",10/3/18,7:49,2018-10-03 07:49 +0000,75,0,0,0,0,0,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04739E+18,https://twitter.com/WeAreRLadies/status/1047391145490354176,@coolbutuseless typo: its `icon::fa_*`,10/3/18,7:41,2018-10-03 07:41 +0000,881,1,0.001135074,0,0,1,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1047390833216040960,"Thank you @coolbutuseless for the reproducible example! Changing these three things did the trick! However, I had to trade skimr for the icons I was using (now replaced with unicode arrows). >> `icon_fa_*` does not like latex_engine: xelatexhttps://t.co/DesHukgoUn https://t.co/4aoCF1CCog",10/3/18,7:40,2018-10-03 07:40 +0000,2146,15,0.006989748,0,1,7,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04724E+18,https://twitter.com/WeAreRLadies/status/1047241762480246785,@djnavarro Thank you!,10/2/18,21:47,2018-10-02 21:47 +0000,169,0,0,0,0,0,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04723E+18,https://twitter.com/WeAreRLadies/status/1047228083240140802,"@djnavarro Who is up next for #100DaysOfCode?@djnavarro - any tips for surviving 100 days of learning R without ending in the dark places of the R labyrinth?",10/2/18,20:53,2018-10-02 20:53 +0000,1189,25,0.021026072,1,1,5,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04723E+18,https://twitter.com/WeAreRLadies/status/1047227966055493637,"@djnavarro Here is the result, my go to place when I need to make a leaflet:https://t.co/yPzxNnm1vl",10/2/18,20:52,2018-10-02 20:52 +0000,1271,5,0.00393391,0,1,2,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04723E+18,https://twitter.com/WeAreRLadies/status/1047227233918746624,"Who here has written a blogpost? So then you know - blogsposts are not written during a 5 min break, and so I was super impressed when I read about the #100DaysOfCode challenge by @djnavarro. To me it seemed like #100DaysOfIronman...",10/2/18,20:50,2018-10-02 20:50 +0000,2163,52,0.024040684,2,1,18,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04723E+18,https://twitter.com/WeAreRLadies/status/1047226268884893696,"Blogs!!! We are very privilege to have such busy blog post writers around us that turn the gnarly R bits into digestible pieces !",10/2/18,20:46,2018-10-02 20:46 +0000,1351,8,0.00592154,0,0,1,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04723E+18,https://twitter.com/WeAreRLadies/status/1047226022289190914,"Let's talk ‰÷•ü how to keep up with all the _Ù ¥ R stuff announced every day‰ÏΕü and where to look up how to do this thing and that thing_Ù_áHere is my take _ÙÔà",10/2/18,20:45,2018-10-02 20:45 +0000,3528,43,0.012188209,1,1,9,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04716E+18,https://twitter.com/WeAreRLadies/status/1047159515077070849,@ValeMendiola @rweekly_org There is a *mail* button in the header of the https://t.co/D5FIgZQA5b page. This should bring you to a email subscription webpage. https://t.co/Lqz1SnyiUV,10/2/18,16:20,2018-10-02 16:20 +0000,110,6,0.054545455,0,0,0,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1047159405568040960,There is a *mail* button in the header of the https://t.co/D5FIgZQA5b page. This should bring you to a email subscription webpage. https://t.co/Rp7ccU08Ss,10/2/18,16:20,2018-10-02 16:20 +0000,1470,22,0.014965986,0,1,3,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04716E+18,https://twitter.com/WeAreRLadies/status/1047158783720415232,"I have tried multiple things already (turning in a circle for 20 min now):- I have changed the file encoding- I have changed the latex_engine to xelatex - and I have tried all things shown belowIs this a common problem? And what could be the solution? _Ù_ÓCurious to know! https://t.co/6rzfdGdl1B",10/2/18,16:18,2018-10-02 16:18 +0000,1641,67,0.040828763,0,4,1,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04716E+18,https://twitter.com/WeAreRLadies/status/1047157704635158528,"Dear followers, I have a‰Òand you might be able to help me:I am using the command `skimr::skim(iris)` in an R Markdown file that I am rendering into a PDF. But it does not like the unicode characters needed for the histogram and won't compile the tex file. https://t.co/vwqMtjRLRl",10/2/18,16:13,2018-10-02 16:13 +0000,2306,56,0.024284475,0,2,2,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04683E+18,https://twitter.com/WeAreRLadies/status/1046828586689290240,"I ended my day by trying to install `RcppParallel` and IT WOULD NOT WORK - until I installed directly from the github repo _Ù÷ÉThis happens to me often, but instead of staying zen, I always go _Ù÷© and apply various chaotic strategies of making things work._ÙÓ¬",10/1/18,18:25,2018-10-01 18:25 +0000,2541,30,0.011806375,0,4,8,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04676E+18,https://twitter.com/WeAreRLadies/status/1046762967331745793,"@rweekly_org Some highlights (after a quick scan) for me:- `getTBinR` by @seabbs (I am working on TB right now, so this is _ÙÔÎ)- How to create pretty tables by @LittleMissData _Ù_¬- Isotype graphs by @ClausWilke _Ù÷",10/1/18,14:05,2018-10-01 14:05 +0000,1540,26,0.016883117,1,0,5,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04676E+18,https://twitter.com/WeAreRLadies/status/1046759569865805824,"The @rweekly_org newsletter just arrived in my mailbox!!! _Ù÷¨‰Ï¬https://t.co/REulmGy5IQ‰Ï¬Have a 5 min break & a coffee to checkout what cool things were produced last week! What are your favorite posts? https://t.co/OoQBJ7fBaS",10/1/18,13:51,2018-10-01 13:51 +0000,2050,51,0.024878049,1,2,6,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04675E+18,https://twitter.com/WeAreRLadies/status/1046752883486613505,"@claudia_kasper There can be last minute changes, e.g. a speaker can cancel or participation can be lower than expected. But so far we are well on track with our October meetup, and are now about to tackle a meetup for December.",10/1/18,13:25,2018-10-01 13:25 +0000,1119,1,8.94E-04,0,0,0,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04675E+18,https://twitter.com/WeAreRLadies/status/1046752681258373120,"A meetup has four ingredients that all need to be organised at the right time: - find a speaker (@claudia_kasper will be speaking about RMarkdown)- find a location- tell everyone about it = advertisement- organise food & drinks",10/1/18,13:24,2018-10-01 13:24 +0000,1623,12,0.007393715,1,2,5,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04675E+18,https://twitter.com/WeAreRLadies/status/1046752487435317248,"Off to _ÙÒ_ where we have a call among the #RLadiesLausanne organisers. During our monthly call we discuss where we stand with the organisation of the upcoming meetups. Right now we are organising our 5th meetup that will happen on Oct 17.",10/1/18,13:23,2018-10-01 13:23 +0000,1965,11,0.005597964,0,1,2,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04672E+18,https://twitter.com/WeAreRLadies/status/1046716157682683904,"@strnr ‰ä•ü GWAS ‰ä•ü_ÙÔä https://t.co/lZVONr9SPS",10/1/18,10:59,2018-10-01 10:59 +0000,1154,25,0.021663778,0,0,0,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04672E+18,https://twitter.com/WeAreRLadies/status/1046715863829815296,"Packages/functions I used during the morning: - `glue::glue`- `here::here`- `readr`, `dplyr`, `magrittr`- `janitor::clean_names`- `qqman` for #dataviz of GWAS results (by @strnr)- `gaston`: GLMM for GWASs (by Herv̩ Perdry and Claire Dandine-Roulland)",10/1/18,10:58,2018-10-01 10:58 +0000,1899,35,0.018430753,1,1,17,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04671E+18,https://twitter.com/WeAreRLadies/status/1046714421068922880,"A typical workflow is:1. data cleaning and harmonising2. generating processed data used as input for downstream analyses3. analysing data: usually done with external command line tools > `system()`. Lots of _ÙÓ.4. summarising results, #dataviz, writing reports.1. + 2. are ‰_",10/1/18,10:52,2018-10-01 10:52 +0000,1408,23,0.016335227,1,1,7,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04671E+18,https://twitter.com/WeAreRLadies/status/1046713677938917376,"For example, this can mean to compare the genomes of infected individuals and identify the genomic parts that are responsible for the severity of the infection. For this we typically have 2+ datasets: one might be clinical data, another one genotype information.",10/1/18,10:49,2018-10-01 10:49 +0000,787,6,0.007623888,0,1,1,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04671E+18,https://twitter.com/WeAreRLadies/status/1046713537329057792,"I have just started a postdoc in the Fellay Lab at #EPFL, where I analyse genomic data in the context of infectious diseases. My work is centered around the analysis of human genomic data and (since a few weeks) pathogens.",10/1/18,10:48,2018-10-01 10:48 +0000,835,7,0.008383234,0,1,1,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04671E+18,https://twitter.com/WeAreRLadies/status/1046713135070105600,"Things I need for work: coffee + computer + noise cancelling headphones + paper and pen. Coffee is vital! https://t.co/g5ZTACehe2",10/1/18,10:47,2018-10-01 10:47 +0000,753,23,0.030544489,0,1,8,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.05E+18,https://twitter.com/WeAreRLadies/status/1046712699693015040,"*My day so far*I go to work by _Ù__. During the 20 min ride along the lake I can watch nature or get ready for work. And when arriving at the university campus, I always get greeted nicely _Ù÷ä. https://t.co/lxiU0ggTAa",10/1/18,10:45,2018-10-01 10:45 +0000,3428,280,0.08168028,1,1,15,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04665E+18,https://twitter.com/WeAreRLadies/status/1046648762427482112,"Busy week on the R social side of things: - Meeting among co-organisers of #RLadiesLausanne tonight- #RLadiesRemote coffee chat ‰÷¥(https://t.co/PLFaoLnDGf)- #GenevaRUsers meetup on Thursday (https://t.co/dpynAtIVCb)",10/1/18,6:31,2018-10-01 06:31 +0000,1791,27,0.015075377,0,0,4,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04665E+18,https://twitter.com/WeAreRLadies/status/1046648392435335168,"This week on the R menu: - customising ggplot2 geoms- expanding a textbook example from the R-package `drake` to a larger example- plus the usual data wrangling and analyses.",10/1/18,6:29,2018-10-01 06:29 +0000,3154,34,0.010779962,4,1,14,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04665E+18,https://twitter.com/WeAreRLadies/status/1046648103774949381,"Speaking of Switzerland: `?swiss` will show you historic data from 1888, representing 47 French-speaking provinces.",10/1/18,6:28,2018-10-01 06:28 +0000,1097,10,0.00911577,0,1,7,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04665E+18,https://twitter.com/WeAreRLadies/status/1046647998304931840,"I grew up in the northern (Swiss German-speaking) part of Switzerland, learned R in Winterthur (~ R 2.0.0), and then moved to the western (French-speaking) part where I like it a lot. https://t.co/XpqdIKEjih",10/1/18,6:28,2018-10-01 06:28 +0000,995,48,0.048241206,0,1,5,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.04665E+18,https://twitter.com/WeAreRLadies/status/1046647670226522114,"Hi everyone, Sina here. Nice to meet you _Ù_! Very excited to curate this week and show you how I use R. About me: I have a data analysis & engineering background and work mainly with human genomic data. I have been using R quite some time and I _ÙÕÏ to breathe R every day!",10/1/18,6:27,2018-10-01 06:27 +0000,12670,277,0.021862668,7,3,82,10/1/18,10/6/18,Sina Rueger,sinarueeger,0
1.06862E+18,https://twitter.com/WeAreRLadies/status/1068617453226229761,"@DNAvinci @iprophage Yes, purrr featured heavily! Doesn't currently live anywhere public, mostly because it has some sensitive info in it (student records protected by FERPA), but I plan to replace that with something less sensitive and get it up soon.",11/30/18,21:27,2018-11-30 21:27 +0000,238,1,0.004201681,0,0,0,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.0686E+18,https://twitter.com/WeAreRLadies/status/1068603167091257344,"There's still some spots for under represented minorities (incl. women and minority genders) at tidyverse developer day. ""Everyone is welcome regardless of whether you've never done a PR before, or if you've already made your 10th package."" https://t.co/MHCV41JrxB",11/30/18,20:30,2018-11-30 20:30 +0000,25588,148,0.005783961,17,2,45,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06825E+18,https://twitter.com/WeAreRLadies/status/1068250684917604352,"The person behind @WeAreRLadies changes each week. Read more, and see the schedule at: https://t.co/boecVaVA3P https://t.co/xGQrbgAkg6",11/29/18,21:09,2018-11-29 21:09 +0000,2828,64,0.022630835,0,0,2,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06825E+18,https://twitter.com/WeAreRLadies/status/1068248208894087168,"@JennyBryan @STAT545 I actually promised I'd also look at issue opening and closing, so I guess I have a little more work to do...",11/29/18,20:59,2018-11-29 20:59 +0000,523,2,0.003824092,0,0,0,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06823E+18,https://twitter.com/WeAreRLadies/status/1068233639433920512,"@mrjoh3 Also definitely a yes! Easy with usethis::use_readme_rmd(), and I'd say the next thing to do immediately after usethis::use_github()",11/29/18,20:02,2018-11-29 20:02 +0000,84,4,0.047619048,0,0,2,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06821E+18,https://twitter.com/WeAreRLadies/status/1068209500744601600,"@rmflight Yes! The mutate + unnest model has become my default because I'll often have other columns at the higher level, and it's easy to keep them around throughout the steps.",11/29/18,18:26,2018-11-29 18:26 +0000,185,3,0.016216216,1,0,2,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1068207476833538048,END OF THREAD.,11/29/18,18:18,2018-11-29 18:18 +0000,4117,108,0.026232694,1,3,33,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06821E+18,https://twitter.com/WeAreRLadies/status/1068207421854601217,"Decide I'm done for now. Actual projects aren't due until Sun, but I'm convinced that I have enough that I can repeat this with 28 repos next week.",11/29/18,18:17,2018-11-29 18:17 +0000,3929,25,0.006362942,0,1,6,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06821E+18,https://twitter.com/WeAreRLadies/status/1068207203541114880,"Make a plot...confirm things look OK. Tweak plot, anonymize repo names, save plot. https://t.co/kowmEDsiqd",11/29/18,18:16,2018-11-29 18:16 +0000,3405,380,0.111600587,0,1,7,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06821E+18,https://twitter.com/WeAreRLadies/status/1068205837854752768,"Realise I should have put everything in a tibble. Refactor to put repo names in a tibble, rewrite map steps to use mutate inside tibble, unnest. Now I have a tibble with one row per commit, with a repo_name columns keeping track of which repo the commit was made to.",11/29/18,18:11,2018-11-29 18:11 +0000,3194,11,0.003443957,0,2,1,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06821E+18,https://twitter.com/WeAreRLadies/status/1068205461965393921,"For each students' commits, get commit summary using function I wrote earlier. Celebrate that I now have commit summaries for three students in a list.",11/29/18,18:10,2018-11-29 18:10 +0000,3088,11,0.003562176,0,1,2,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.0682E+18,https://twitter.com/WeAreRLadies/status/1068204017220640768,"@GaborCsardi Grab two more student repo URLS and put them in a vector, do a stringr::str_replace() to just keep repo name. For each repo, get commits with purrr::map() and a recipe I have getting one students commits.",11/29/18,18:04,2018-11-29 18:04 +0000,3098,20,0.006455778,0,1,1,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1068202923971072001,"@GaborCsardi _ÙÜ•ü‰Û‰ªÛ•ü_Ù_«‰Û‰ªÛ•ü_Ù_À_ÙÕÈ_Ù__ÙÒ¼_ÙÕ__Ù_À‰÷¥_Ù_«‰Û‰ªÛ•ü_ÙÔ©‰Û_ÙÇ later...I finally get back to the task...have to reopen project, rerun all existing code: it still works! Try plotting one students commit history and realise I haven't parsed commit times as datetimes yet, add lubridate::ymd_hms() + lubridate::with_tz()",11/29/18,17:59,2018-11-29 17:59 +0000,3196,23,0.007196496,0,2,6,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.0682E+18,https://twitter.com/WeAreRLadies/status/1068200194313904128,"@MilesMcBain Yes! When do you tend to add this? Right from the start, as soon as the code is on github (even privately) or when the code is available publicly?",11/29/18,17:49,2018-11-29 17:49 +0000,243,7,0.028806584,0,1,0,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.0682E+18,https://twitter.com/WeAreRLadies/status/1068199620088496128,"For my eyes only - basically reminders of where and what I read. When I share with students I tend to be more comprehensive, but the result tends to look like I knew exactly what I was doing from the start...which hopefully this thread dispels. https://t.co/VfnYVp2TGu",11/29/18,17:46,2018-11-29 17:46 +0000,3308,27,0.008162031,0,0,3,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.0682E+18,https://twitter.com/WeAreRLadies/status/1068198017168105472,"@hadleywickham No, I don't think it is...it took me awhile to realize what the "":"" meant in endpoints and that I could pass these in as arguments. This particular typo came from a copy-paste error inside my Rmd",11/29/18,17:40,2018-11-29 17:40 +0000,1490,23,0.015436242,0,1,3,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06795E+18,https://twitter.com/WeAreRLadies/status/1067947068105191424,"@hadleywickham Yes! In this case, enforced five weeks ago when they started these projects.",11/29/18,1:03,2018-11-29 01:03 +0000,965,12,0.012435233,0,0,1,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06791E+18,https://twitter.com/WeAreRLadies/status/1067914784530608130,"@GaborCsardi Coffee turned into student's dropping by with questions, and now I need to head to a training...task on pause.",11/28/18,22:55,2018-11-28 22:55 +0000,6853,108,0.015759521,0,2,17,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06791E+18,https://twitter.com/WeAreRLadies/status/1067914365410504704,"@bballmaths I won't actually look at the messages, except maybe to inspire future examples of useful and not so useful commit messages.",11/28/18,22:53,2018-11-28 22:53 +0000,80,2,0.025,0,1,0,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1067896813418496000,"@GaborCsardi Just as I realise I've been at this for at least an hour, colleague knocks on door for coffee run. I delay for 2mins, quickly make notes on current progress in Rmd (""working for one student, need to extend to many students""). Post here. Will come back to task later. ‰÷¥ time",11/28/18,21:43,2018-11-28 21:43 +0000,7879,70,0.008884376,0,1,29,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.0679E+18,https://twitter.com/WeAreRLadies/status/1067896048750739456,"@GaborCsardi Careful review of working code and comparing to non-working code reveals typo...groan... ""/user"" should have been ""/repo""...it works for one student!",11/28/18,21:40,2018-11-28 21:40 +0000,6988,20,0.002862049,1,1,10,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.0679E+18,https://twitter.com/WeAreRLadies/status/1067895012271185920,"@GaborCsardi Read ?gh(), head to ?gh_whoami() and confirm I'm the user I expect and seem to have the right scope (""repo"" - ""Grants read/write access to ... and private repositories and organizations."", so now thinking I'm messing up the endpoint",11/28/18,21:36,2018-11-28 21:36 +0000,6654,27,0.00405771,0,2,5,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06789E+18,https://twitter.com/WeAreRLadies/status/1067893549167861761,"@GaborCsardi Now I try to repeat this for a specific students repo. Keep getting 404 errors and can't decide if I'm specifying the endpoint wrong, or I'm running into github permissions problems",11/28/18,21:30,2018-11-28 21:30 +0000,6717,14,0.002084264,0,1,6,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1067891742458834944,"@GaborCsardi I confirm function works for one commit, then use map_dfr() to do it for list of commits, and celebrate the nice tibble it returns.",11/28/18,21:23,2018-11-28 21:23 +0000,6806,22,0.003232442,0,1,7,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06789E+18,https://twitter.com/WeAreRLadies/status/1067891541937541120,"@GaborCsardi Now I look at the output and realize it's a complicated list, but with one element for each commit. I extract one commit, explore it (in the RStudio viewer) and write a small function that takes one commit and returns a nice tibble with sha, dateime, committer, and message.",11/28/18,21:22,2018-11-28 21:22 +0000,6687,22,0.003289966,0,1,8,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06789E+18,https://twitter.com/WeAreRLadies/status/1067889426980724736,@GaborCsardi At least 8 unsuccessful calls to gh() and exploring returned objects for calls that worked I get a call to the commits endpoint to work!,11/28/18,21:14,2018-11-28 21:14 +0000,7150,32,0.004475524,0,2,8,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06789E+18,https://twitter.com/WeAreRLadies/status/1067888905561661440,"@GaborCsardi Spend a little time going back through current RMD and adding notes. Then spend next 12mins trying to adapt a working example to get me commits on one of my repos. Iterate between examples in gh, github API docs and trying code...",11/28/18,21:12,2018-11-28 21:12 +0000,6684,20,0.00299222,0,1,7,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06789E+18,https://twitter.com/WeAreRLadies/status/1067885240335556608,@GaborCsardi ...but then get puzzled about why I can't see them all...then remember the API might have a page limit.,11/28/18,20:57,2018-11-28 20:57 +0000,6878,24,0.003489386,0,1,7,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06789E+18,https://twitter.com/WeAreRLadies/status/1067885166855483392,"@GaborCsardi My student's repos are private, can I see them? I edit the README example to list my *private* repos, and do a little fist pump when I see some of my students repos there!",11/28/18,20:57,2018-11-28 20:57 +0000,6856,20,0.002917153,0,1,7,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06788E+18,https://twitter.com/WeAreRLadies/status/1067884580059791360,"@GaborCsardi Stop doing examples on README when I hit ""POST, PATCH, PUT and DELETE requests"" because I'm pretty sure I won't have to do this.",11/28/18,20:54,2018-11-28 20:54 +0000,6637,11,0.001657375,0,1,5,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06788E+18,https://twitter.com/WeAreRLadies/status/1067884351730282498,"Impressed that my_repos actually lists my repos (not @GaborCsardi s), giving me hope that I have some existing environment variables set up that help with identification and authorization.",11/28/18,20:54,2018-11-28 20:54 +0000,6862,35,0.005100554,0,1,8,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06788E+18,https://twitter.com/WeAreRLadies/status/1067882854711877632,"OK, how does the gh package work? I now work through the README, starting with installing the package (although I choose the CRAN version not the dev one), then running the examples one by one in my local RStudio.",11/28/18,20:48,2018-11-28 20:48 +0000,7154,27,0.003774112,0,1,6,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06788E+18,https://twitter.com/WeAreRLadies/status/1067881294619541504,"Skim https://t.co/W28FNss3jK and figure out I'm interested in Repositories, and ""The Repo Commits API supports listing, viewing, and comparing commits in a repository."" Perfect.",11/28/18,20:41,2018-11-28 20:41 +0000,7335,30,0.00408998,0,1,9,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06788E+18,https://twitter.com/WeAreRLadies/status/1067880779391283201,"Scan gh github page. See it has recent commits and is on cran...good signs. Skim README and see ""Use the gh() function to access all API endpoints."" and links to github docs...another good sign for my task.",11/28/18,20:39,2018-11-28 20:39 +0000,7259,24,0.003306241,0,1,6,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06788E+18,https://twitter.com/WeAreRLadies/status/1067879947157426176,"I take a quick look at ghapi3, see it is WIP and the build is currently failing...decide to focus of gh",11/28/18,20:36,2018-11-28 20:36 +0000,7256,12,0.001653804,0,1,4,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06788E+18,https://twitter.com/WeAreRLadies/status/1067879452204425217,"I scan both github READMEs and see on rgithub ""If you're a user of this library, consider switching to gh or ghapi3"", I rule out rgithub.",11/28/18,20:34,2018-11-28 20:34 +0000,7395,18,0.002434077,0,1,4,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06788E+18,https://twitter.com/WeAreRLadies/status/1067879017414455296,"I do a web search for ""github api r"", scan for github and cran results, and come across https://t.co/qjzNRA52LC and https://t.co/t7pwYjTUTE",11/28/18,20:32,2018-11-28 20:32 +0000,7602,45,0.005919495,0,1,8,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06788E+18,https://twitter.com/WeAreRLadies/status/1067878482066124800,"I've opened my existing RStudio project for this class, opened a new Rmarkdown file, copied my task in, included an actual project url for one student, saved the file.",11/28/18,20:30,2018-11-28 20:30 +0000,7804,30,0.003844182,0,1,10,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06788E+18,https://twitter.com/WeAreRLadies/status/1067877816971087872,"I already know: * if I can do it for one student I can do it for all students with purrr::map().* Github has an API, and I'm hoping the API includes a way to query commits.* I'm pretty sure I've come across a R package that accesses this API, but I don't remember its name.",11/28/18,20:28,2018-11-28 20:28 +0000,8141,67,0.008229947,0,1,14,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06788E+18,https://twitter.com/WeAreRLadies/status/1067877603799748609,"The task: For each student, given their github repo urls, I need to get their commit history: commit datetimes, sizes and perhaps commit messages.",11/28/18,20:27,2018-11-28 20:27 +0000,8342,41,0.004914889,0,3,10,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06788E+18,https://twitter.com/WeAreRLadies/status/1067877484161458176,"The rubric for my students' projects includes ""Consistency of effort"" which is partly assessed by examining their github commit history over the weeks since they started.",11/28/18,20:26,2018-11-28 20:26 +0000,9033,86,0.009520647,2,2,14,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06788E+18,https://twitter.com/WeAreRLadies/status/1067877347490115584,"I'm sitting down to start a task in R. I don't entirely know how to complete it. I'm going to try to document my process in this thread in real time.",11/28/18,20:26,2018-11-28 20:26 +0000,71243,1786,0.02506913,96,13,555,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06786E+18,https://twitter.com/WeAreRLadies/status/1067863342058889216,"@patternproject Currently the projects are in a private github organization, so I can't link to anything specifically, but I'm encouraging students to move their projects to more public locations.",11/28/18,19:30,2018-11-28 19:30 +0000,56,1,0.017857143,0,1,0,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06786E+18,https://twitter.com/WeAreRLadies/status/1067862095918559233,Anything you would add?,11/28/18,19:25,2018-11-28 19:25 +0000,3428,47,0.013710618,0,6,1,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06786E+18,https://twitter.com/WeAreRLadies/status/1067861737137823744,"1. Put R functions in .R files in R/ directory2. Create and edit DESCRIPTION: usethis::use_description()3. Document functions: roxygen comments + devtools::document()4. Get package to pass devtools::check()",11/28/18,19:24,2018-11-28 19:24 +0000,3340,73,0.021856287,3,2,33,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06786E+18,https://twitter.com/WeAreRLadies/status/1067861695383535616,"A student asked how to turn their current project (a collection of functions to simulate games of blackjack) into an R package.These are the steps I came up with to get to the point someone could install with install_github()",11/28/18,19:24,2018-11-28 19:24 +0000,20289,255,0.012568387,12,4,93,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06757E+18,https://twitter.com/WeAreRLadies/status/1067568558698201088,"@apreshill And for the record, I still consider myself to be learning R...",11/27/18,23:59,2018-11-27 23:59 +0000,3138,69,0.021988528,0,1,36,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06757E+18,https://twitter.com/WeAreRLadies/status/1067565809566810112,"@apreshill From experience teaching at a university, it takes students about a quarter (10 weeks) to get comfortable manipulating and visualizing data in the tidyverse, but it's hard to translate into hours.",11/27/18,23:48,2018-11-27 23:48 +0000,3499,46,0.013146613,1,1,17,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06757E+18,https://twitter.com/WeAreRLadies/status/1067565466732847104,"This is a hard question, partly because, paraphrasing @apreshill (hopefully accurately) ""you don't learn R, you learn how to do things in R"", so it all depends on what you want to learn to do in R. https://t.co/38n9DDVUMX",11/27/18,23:46,2018-11-27 23:46 +0000,49728,650,0.013071107,63,7,267,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06751E+18,https://twitter.com/WeAreRLadies/status/1067505938188259328,"It's student project presentations week in my class. In lightning talks this morning, students talked about using R to: make music, simulate tennis matches, price stock derivatives, explore models for wealth inequality and play tic tac toe (to name a few).",11/27/18,19:50,2018-11-27 19:50 +0000,17890,263,0.01470095,8,3,101,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1067503903703425024,"@BarryDeCicco Agreed! This section of the carbonate page https://t.co/Ku3zdqGD05 , combines the pretty image with a gist thanks to @ma_salmon",11/27/18,19:42,2018-11-27 19:42 +0000,103,6,0.058252427,0,0,0,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.0675E+18,https://twitter.com/WeAreRLadies/status/1067502990020374529,"@felipe_mattioni Oh yes, of course! Although sometimes I find there are actually a few steps between reading all the datasets in and binding them together.",11/27/18,19:38,2018-11-27 19:38 +0000,118,2,0.016949153,0,0,1,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.0675E+18,https://twitter.com/WeAreRLadies/status/1067502691784376320,"@ma_salmon @CVWickham It's true! I'm happiest with a new (at least to me) dataset, RStudio open, and a few hours of free time.",11/27/18,19:37,2018-11-27 19:37 +0000,453,14,0.030905077,0,0,8,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.0675E+18,https://twitter.com/WeAreRLadies/status/1067500597815861248,@jnirski Yes! They are almost exactly the colors of my actual cats.,11/27/18,19:29,2018-11-27 19:29 +0000,298,0,0,0,0,0,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06719E+18,https://twitter.com/WeAreRLadies/status/1067191801985912835,"@AlwaysScientist Yup, and yes, it sources all .R files. So, you wouldn't want to include any code in there that actually runs analysis etc.",11/26/18,23:02,2018-11-26 23:02 +0000,187,4,0.021390374,0,0,2,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06718E+18,https://twitter.com/WeAreRLadies/status/1067184783996870656,"@seankross @rmflight @yoniceedee Thanks, I just saw the crosslink from the github README, I'll check out carbonate instead!",11/26/18,22:34,2018-11-26 22:34 +0000,407,15,0.036855037,0,1,2,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06718E+18,https://twitter.com/WeAreRLadies/status/1067177379154415616,"@rmflight Perfect, I'll check it out.",11/26/18,22:04,2018-11-26 22:04 +0000,458,6,0.013100437,0,1,1,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06718E+18,https://twitter.com/WeAreRLadies/status/1067176002437111809,"What process do you use for tweeting #rstats code snippets? My current process (I still consider myself a Twitter novice) is a screen shot from RStudio, is there a better (or prettier) way?",11/26/18,21:59,2018-11-26 21:59 +0000,3969,140,0.035273369,3,5,13,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1067174152103124994,"@sysilviakim If you can find me, I usually have some on me. RStudio usually has some whenever they have a booth at a conference too.",11/26/18,21:51,2018-11-26 21:51 +0000,594,5,0.008417508,0,0,1,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06717E+18,https://twitter.com/WeAreRLadies/status/1067173098783309824,"Things that came up in office hours today #2:If you put your functions for a project in .R files in an R/ folder, you can source them all with devtools::load_all(), but only after creating a DESCRIPTION in the project e.g. with usethis::use_description().",11/26/18,21:47,2018-11-26 21:47 +0000,5922,140,0.023640662,11,1,63,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06717E+18,https://twitter.com/WeAreRLadies/status/1067172851201990658,"Things that came up in office hours today #1: dplyr::bind_rows() can take a list of data frames. Especially useful when combined with purrr::map() and readr::read_csv() to read many files and concatenate them together by row.Working example at: https://t.co/C8Jppt4mqt https://t.co/i9EmoRIz7W",11/26/18,21:46,2018-11-26 21:46 +0000,8276,612,0.073948768,22,3,101,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06712E+18,https://twitter.com/WeAreRLadies/status/1067115535601520640,It's probably obvious I strongly identify with #rcatladies,11/26/18,17:59,2018-11-26 17:59 +0000,2319,66,0.028460543,0,0,17,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06711E+18,https://twitter.com/WeAreRLadies/status/1067114802118422528,I like to remind people that code isn't the only way to contribute to the #rstats ecosystem. My proudest contribution is the hex stickers for purrr and forcats https://t.co/FW4d8OzRNP,11/26/18,17:56,2018-11-26 17:56 +0000,30058,750,0.02495176,26,9,250,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06711E+18,https://twitter.com/WeAreRLadies/status/1067112830950813696,"Hello from Corvallis, Oregon, USA! I'm @cvwickham and I'll be your curator for the week. I teach statistics and R at Oregon State University half-time, and teach the tidyverse and do data science as a consultant. You can find me on the web at: https://t.co/i3qoeZkUfK",11/26/18,17:48,2018-11-26 17:48 +0000,17909,509,0.028421464,9,3,91,11/26/18,12/1/18,Charlotte Wickham,cvwickham,0
1.06638E+18,https://twitter.com/WeAreRLadies/status/1066375897517744129,"It's been so much fun curating @WeAreRLadies this week, thanks to everyone who shared their responses/reactions/experiences! I can't wait to hear from next week's curator! https://t.co/hZq8PQgx43",11/24/18,17:00,2018-11-24 17:00 +0000,3174,45,0.014177694,0,0,21,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1066368347145687043,"ICYMI key dates for @UseR2019_Conf https://t.co/jqrB2w2vNL - I'm planning to make it this year, hope to see some of you there? https://t.co/rmrWpv0J1c",11/24/18,16:30,2018-11-24 16:30 +0000,2100,49,0.023333333,0,0,5,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06636E+18,https://twitter.com/WeAreRLadies/status/1066363318095380480,"How do you keep up with what's new in R? I tell my students / newcomers- check out #rstats regularly- read https://t.co/D5FIgZyYGB- follow @WeAreRLadies- follow @dataandmeWhat would you add to the list?",11/24/18,16:10,2018-11-24 16:10 +0000,36410,1845,0.050672892,74,18,251,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06636E+18,https://twitter.com/WeAreRLadies/status/1066359823795724290,@_ColinFay Merci! I might know just enough French to decipher this,11/24/18,15:56,2018-11-24 15:56 +0000,211,2,0.009478673,0,0,1,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06636E+18,https://twitter.com/WeAreRLadies/status/1066357020876394498,"I have a data science ethics module scheduled for next week's class, what are some of your papers/talks/presentations/resources on this topic?",11/24/18,15:45,2018-11-24 15:45 +0000,3227,41,0.012705299,2,3,4,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06636E+18,https://twitter.com/WeAreRLadies/status/1066356772313665536,"@SlackHQ And thanks for the search tips! My big wish is to be able to tag msgs so if there's an answer I know will be helpful to many, it would be _ÙÎÙ to tag them with a title/keyword -- titles for posts is one thing I miss from classic course discussion forums",11/24/18,15:44,2018-11-24 15:44 +0000,154,0,0,0,0,0,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06636E+18,https://twitter.com/WeAreRLadies/status/1066356033449267200,"@SlackHQ That would be fantastic - sometimes it's annoying to students when they're already frustrated for me to ask them to edit their posts for better formatting, I'd love to be able to showcase best practices early on myself",11/24/18,15:41,2018-11-24 15:41 +0000,168,1,0.005952381,0,1,0,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06635E+18,https://twitter.com/WeAreRLadies/status/1066353247072473088,"A great resource by previous curator @nic_crane: collection of animated GIFs showing show how to do useful stuff in #rstats!https://t.co/lAqG7DUjfM",11/24/18,15:30,2018-11-24 15:30 +0000,7287,545,0.074790723,20,0,70,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06635E+18,https://twitter.com/WeAreRLadies/status/1066345707357921280,"For @rstudio::conf I'm preparing a ""train-the-trainer"" workshop for #rstats Shiny, and I'd ‰_•ü data on teacher/user experience:‰Ò If you've ever taught Shiny, what were some challenges?‰Ò If you've ever taken a Shiny course, what worked/didn't work?",11/24/18,15:00,2018-11-24 15:00 +0000,8658,94,0.010857011,6,12,28,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06634E+18,https://twitter.com/WeAreRLadies/status/1066340208956907520,"@ibddoctor Good idea, not yet, but maybe in the future? Can't say I'm any good at rhyming but it sounds fun as a coding challenge.",11/24/18,14:38,2018-11-24 14:38 +0000,80,0,0,0,0,0,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06634E+18,https://twitter.com/WeAreRLadies/status/1066338147070500866,"I have such mixed feelings about using @SlackHQ for course communication_ÙÔ real-time interaction_ÙÔ tool used by many data science teams_ÙÔ_ can't edit student posts for better code formatting_ÙÔ_ difficult to search for old answersso I go back-forth on it every semester _Ù÷",11/24/18,14:30,2018-11-24 14:30 +0000,3942,30,0.00761035,0,3,10,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06633E+18,https://twitter.com/WeAreRLadies/status/1066334375120261121,One of my favourite follows is @accidental__aRt - I highly recommend if you like dataviz gone awry or for some schadenfreude!,11/24/18,14:15,2018-11-24 14:15 +0000,2140,62,0.028971963,0,1,6,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06633E+18,https://twitter.com/WeAreRLadies/status/1066330600704016384,"If you're teaching (with) R, hope you'll consider adding your course to https://t.co/KvLIBViKaX - my goal with is to create a repository where one can discover courses + learning materials for learning / teaching #rstats",11/24/18,14:00,2018-11-24 14:00 +0000,41623,1615,0.038800663,185,8,528,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06632E+18,https://twitter.com/WeAreRLadies/status/1066324567281598465,"@dvaughan32 @rstudio Right, good point!!",11/24/18,13:36,2018-11-24 13:36 +0000,155,0,0,0,0,0,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1066324295796822021,Teaching #rstats with @ProjectJupyter? See @TiffanyTimbers' nbgrader demo! _ÙÔ©‰Û_ÙÇ https://t.co/SJoMCoZjwi,11/24/18,13:34,2018-11-24 13:34 +0000,1948,3,0.001540041,1,0,2,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06632E+18,https://twitter.com/WeAreRLadies/status/1066323863506743298,@JorisMeys There is a community led effort for translating R4DS to Spanish https://t.co/rYBuqAn4FF,11/24/18,13:33,2018-11-24 13:33 +0000,272,11,0.040441176,1,1,7,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06632E+18,https://twitter.com/WeAreRLadies/status/1066315893137948672,"I use @rstudio Cloud daily for teaching, and it hadn't occurred to me until now that another use case for it is testing your package in a completely fresh environment! _Ù_Ò",11/24/18,13:01,2018-11-24 13:01 +0000,5109,59,0.011548248,1,1,32,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06621E+18,https://twitter.com/WeAreRLadies/status/1066214556324806658,"And working on this gave me a reason to use the .data pronoun from rlang, which turns out to be the savior for the R CMD check NOTE about undefined global variables for functions that use dplyr verbs! https://t.co/2JErnJObqm",11/24/18,6:18,2018-11-24 06:18 +0000,1709,55,0.032182563,0,0,5,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06621E+18,https://twitter.com/WeAreRLadies/status/1066212481620684800,"While the _ÙÒ_ is very much WIP, important task is done -- there's a hex logo! https://t.co/9DLw3qe2jX",11/24/18,6:10,2018-11-24 06:10 +0000,1843,107,0.058057515,0,1,1,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06621E+18,https://twitter.com/WeAreRLadies/status/1066211020924964864,"Finally got back to a side-project I had on hold for a while: lullabyr, #rstats _ÙÒ_ for random lullaby generation_ÙÒ_ https://t.co/oPXnF2EI0N‰÷•ü try it at https://t.co/pLXPHSgHd4For now only generates the alphabet song, but I'm hoping to add more functionality soon https://t.co/Vshx9OG2QV",11/24/18,6:04,2018-11-24 06:04 +0000,6859,362,0.052777373,6,2,27,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06616E+18,https://twitter.com/WeAreRLadies/status/1066155465090965504,"Took @bwundervald's vagalumeR #rstats _ÙÒ_ for a spin based on her new blog post -- looks like The Smiths and Morrissey both sing about ‰_•ü a lot (I could've told you that without the analysis), but The Smiths more so_ÙÒÐ https://t.co/RaaMcDRfyV_ÙÒ_ https://t.co/2J9XRxUoWz https://t.co/907roXA2bh",11/24/18,2:24,2018-11-24 02:24 +0000,5055,265,0.052423343,5,4,30,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06614E+18,https://twitter.com/WeAreRLadies/status/1066139129820446720,Great resource from #ozunconf18 on gganimate! https://t.co/giPqvuqTkJ,11/24/18,1:19,2018-11-24 01:19 +0000,2279,13,0.005704256,0,0,9,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06603E+18,https://twitter.com/WeAreRLadies/status/1066033609784602624,"@blairbilodeau Since I have no control over which course they take before their 1st internship, I feel that to have any control over what they learn before they graduate it's crucial to make their first course empowering + curiosity inspiring to come back for more (and learn CLT + lots more)",11/23/18,18:19,2018-11-23 18:19 +0000,108,4,0.037037037,0,1,0,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06602E+18,https://twitter.com/WeAreRLadies/status/1066015795472449538,"@blairbilodeau So yes, it would be crucial if we looked at the p-values for regression output, but we initially don‰Ûªt. We calculate p-values from randomization distributions directly first.",11/23/18,17:09,2018-11-23 17:09 +0000,120,6,0.05,0,1,0,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06602E+18,https://twitter.com/WeAreRLadies/status/1066015418840727559,"@blairbilodeau We start with regression (as a descriptive tool first), then do simulation based inference, then wrap up with CLT to say there‰Ûªs a theory underlying all those unimod hump shaped distributions we encountered, and you‰Ûªll learn more about it in your math-stat course",11/23/18,17:07,2018-11-23 17:07 +0000,121,3,0.024793388,0,1,0,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06601E+18,https://twitter.com/WeAreRLadies/status/1066007910885539846,"Ha, I had no idea! h\t @VeroLlorensHere's one for you to copy-paste: ????""""https://t.co/wxxZ9qWbvR",11/23/18,16:37,2018-11-23 16:37 +0000,3477,26,0.007477711,1,1,7,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1065839189369982976,"A great set of #rstats tips collected by @sharon000 -- I'm also a fan of xaringan::inf_mr() and DT::datatablehttps://t.co/Q6G8oAh0IU",11/23/18,5:27,2018-11-23 05:27 +0000,5893,80,0.013575428,13,1,40,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06582E+18,https://twitter.com/WeAreRLadies/status/1065818945817579520,"Make a trailer for your slidedeck with av by @ma_salmon -- https://t.co/4eMoVzO28E+Says future versions of the package will do ""screen capturing and reading raw video frames and audio samples for analysis in R"" which I'm very much looking forward to! https://t.co/2xespMLrHp",11/23/18,4:06,2018-11-23 04:06 +0000,1984,80,0.040322581,2,1,3,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06582E+18,https://twitter.com/WeAreRLadies/status/1065817747593015296,"Not a blog post, but randomly came upon this fantastic gem by @stephaniehicks: General Advice on an Academic Career Path -- https://t.co/NyAt8kpDOTA great read for any academic grad student -> faculty https://t.co/ajvCCYXPEe",11/23/18,4:02,2018-11-23 04:02 +0000,1761,163,0.092561045,2,1,10,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1065817399717502976,"One of my students shared this with me: if your work involves generating PDF reports, _ÙÒ_ myprettyreport might be of interest -- https://t.co/FjCbtR98u6",11/23/18,4:00,2018-11-23 04:00 +0000,1053,84,0.07977208,1,1,12,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06582E+18,https://twitter.com/WeAreRLadies/status/1065817084800757762,"‰ÏÓ•ü heatmaps with ggplot::geom_tile ‰ÏÓ•ü side-by-side box-plot-ish viz with ggbeeswarm::geom_quasirandom‰ÏÓ•ü dplyr::mutate-in-mutate _Ù÷_ all in one post on ages of congressional representatives over time by @kjhealyhttps://t.co/wpwNG1GKmS https://t.co/wMuEkGhCrf",11/23/18,3:59,2018-11-23 03:59 +0000,1219,103,0.084495488,0,1,7,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06582E+18,https://twitter.com/WeAreRLadies/status/1065815741461684224,"How do you start your data analysis? For me, it's usuallydf <- readr::read_csv(""PATH"") %>% janitor::clean_names()tibble::glimpse(df)Here is @LittleMissData's take: https://t.co/nH19NkiIWG(Also, how delightful is the blog homepage with a ‰_•ü thumbnail for each post?!) https://t.co/ZDeGLRHPYB",11/23/18,3:54,2018-11-23 03:54 +0000,3527,434,0.123050751,16,4,72,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06582E+18,https://twitter.com/WeAreRLadies/status/1065815250199556101,"Dinner served, dishes done, _ÙÔ¦ in bed, time to catch up on blog posts! _ÙÒÏ",11/23/18,3:52,2018-11-23 03:52 +0000,5072,66,0.013012618,0,2,12,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.0658E+18,https://twitter.com/WeAreRLadies/status/1065802961559986176,No time for analysis? Browse the #TidyTuesday hashtag to see others' work!,11/23/18,3:03,2018-11-23 03:03 +0000,1567,37,0.023611997,0,0,3,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.0658E+18,https://twitter.com/WeAreRLadies/status/1065802284360220673,"Have some ‰_ during the holiday/weekend and want to hone your #rstats skills? I highly recommend giving #TidyTuesday a try! _ÙÓÑ https://t.co/Nar9uwzOWY_ÙÕ_ this week's datasets: Thanksgiving Dinner and Transgender Day of Remembrance https://t.co/jbdTxuNGp8",11/23/18,3:00,2018-11-23 03:00 +0000,3203,88,0.027474243,4,1,20,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1065797013680340994,"@Daniel_AvOr Thank you! Not recording this semester, but course website is at https://t.co/MgNE3gQRDC and I'm sharing all course content + more at https://t.co/85AcXyyOfr.",11/23/18,2:39,2018-11-23 02:39 +0000,256,56,0.21875,0,0,9,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06569E+18,https://twitter.com/WeAreRLadies/status/1065691501991219208,So today I'm thankful for everyone who openly shares their code! _Ù_Ä,11/22/18,19:40,2018-11-22 19:40 +0000,2031,38,0.018709995,5,0,24,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1065691221908221952,"One of the challenges in creating the table in R Markdown was getting the emojis to print as emojis and not as pure R code, but then I remembered the list of emojis on the README at https://t.co/t4XNWIULKw and totally cheated off @hadleywickham and @romain_francois' code! _Ù__",11/22/18,19:39,2018-11-22 19:39 +0000,2114,51,0.024124882,1,1,7,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06569E+18,https://twitter.com/WeAreRLadies/status/1065690461816397824,"Note that I don't think this enhances learning in any way, but maybe some students find it fun? My favourite is dromedary_camel for Central Limit Theorem, do you see the link? _Ù»",11/22/18,19:36,2018-11-22 19:36 +0000,1659,38,0.022905365,0,4,11,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06569E+18,https://twitter.com/WeAreRLadies/status/1065690010308018181,"This semester I'm teaching intro data science and making my slides using (don't make me say it) xaringan. I decided to add an emoji to each title, that is (loosely) relevant to the topic of the day, it's been fun! #rstats_ÙÒã https://t.co/UdJyGjCRZ2_ÙÓÑhttps://t.co/nqRYlPEYU0 https://t.co/NGPxr7XYCO",11/22/18,19:34,2018-11-22 19:34 +0000,21563,1800,0.083476325,20,6,132,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06567E+18,https://twitter.com/WeAreRLadies/status/1065668316797300736,"@JanKislinger Yup, for this particular example there are more efficient ways of approaching the problem for surehttps://t.co/KFmqXWJaIA",11/22/18,18:08,2018-11-22 18:08 +0000,469,1,0.002132196,0,1,0,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1065663463136088064,"@Kara92809573 Yes, one of the two things I know how to make",11/22/18,17:49,2018-11-22 17:49 +0000,126,11,0.087301587,0,0,2,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06566E+18,https://twitter.com/WeAreRLadies/status/1065656439857971200,"Have been busy with cooking and _ÙÔ¦ this morning, will be back with more R stuff during naptime! https://t.co/CCsKq1wxJF",11/22/18,17:21,2018-11-22 17:21 +0000,6991,729,0.104276927,1,3,36,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06565E+18,https://twitter.com/WeAreRLadies/status/1065654477942853632,@jcrichardson617 @xieyihui Ah I‰Ûªm with you on this one! I go with el-apply but I‰Ûªm not sure.,11/22/18,17:13,2018-11-22 17:13 +0000,108,1,0.009259259,0,0,0,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1065602099008937991,"@jtrnyc I learned once, while learning English, but I don‰Ûªt remember much of it now sadly",11/22/18,13:45,2018-11-22 13:45 +0000,170,6,0.035294118,0,0,1,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06542E+18,https://twitter.com/WeAreRLadies/status/1065419607752785920,"Love emojis, and have a love/hate relationship with #rstats errors? You might enjoy > emo::ji_fisher(""errormoji"")_ÙÒ¤å¨å¨_ÙÓ«_Ùα‰Òâ•ü‰_•ü_ÙÑ__Ù¥ø _ÙÓÑ https://t.co/thocBArLOa_Ùª Hope you'll contribute via issue or PR! https://t.co/2EBwMiIudd",11/22/18,1:40,2018-11-22 01:40 +0000,6433,441,0.068552775,13,1,50,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06542E+18,https://twitter.com/WeAreRLadies/status/1065416700089311232,"@matsouaka In the editor, if you hold Option (Mac) or Alt (PC) down, you should see the cursor change to a +. Then, you can use the mouse (click) to select lines up or down the column.",11/22/18,1:28,2018-11-22 01:28 +0000,820,8,0.009756098,0,1,5,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06537E+18,https://twitter.com/WeAreRLadies/status/1065365165598756865,"Time for some fun and honesty! What #rstats pkg/fn name do you avoid saying in public b/c you're never sure if you're pronouncing it right? For me..._ÙÒ_ xaringan - @xieyihui provided phonetics, but I'm still not sure_ÔÒ as.POSIXct - I always fumble around Xc",11/21/18,22:03,2018-11-21 22:03 +0000,8462,88,0.010399433,2,10,22,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06535E+18,https://twitter.com/WeAreRLadies/status/1065352972580868096,"@CDWren Not only that, but you can name the tab too -- can be useful if you have a few of these during development https://t.co/sOZtG75SxU",11/21/18,21:15,2018-11-21 21:15 +0000,416,50,0.120192308,0,1,9,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06532E+18,https://twitter.com/WeAreRLadies/status/1065316899687448578,"@nishant_42 resources for learning about dplyr's join functions_ÙÒÐ book: https://t.co/wIetLwJiXj_ÙÔ©‰Û_ÙÇ lesson: https://t.co/2Cj4CXSdIs‰Ï•ü primer: https://t.co/oVhkD6euWu_ÙÒÏ animations: https://t.co/VzUc7FMkU3",11/21/18,18:51,2018-11-21 18:51 +0000,1007,25,0.024826216,3,0,7,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06532E+18,https://twitter.com/WeAreRLadies/status/1065316575501303811,"@nishant_42 If there is a common variable between the two data frames (e.g. an ID), you can use the join functions in dplyr to combine the data, and then perform analysis on the combined data frame, resources to follow ‰Âà•ü",11/21/18,18:50,2018-11-21 18:50 +0000,484,3,0.006198347,0,1,0,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.0653E+18,https://twitter.com/WeAreRLadies/status/1065303949111164928,"@data_sci_idiot I record the screencast with Quicktime and convert to gif with EZGIF -- you can make gifs of images straight from R with @opencpu's magick _ÙÒ_, but I haven't attempted screencapture directly from R (I hesitate to say it's impossible, someone might know a way!)",11/21/18,18:00,2018-11-21 18:00 +0000,1439,21,0.014593468,1,1,6,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.0653E+18,https://twitter.com/WeAreRLadies/status/1065302451996237824,@jsonbaik Recording screencasts with Quicktime and converting to gif with EZGIF,11/21/18,17:54,2018-11-21 17:54 +0000,526,10,0.019011407,0,0,6,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06526E+18,https://twitter.com/WeAreRLadies/status/1065257600764338177,"@lam_mph #TidyTuesday is fun! Is the crime distribution example at the bottom of geom_map() close to what you‰Ûªre looking for?https://t.co/cjeZeUfP2h https://t.co/YDA45XRNR6",11/21/18,14:56,2018-11-21 14:56 +0000,2401,102,0.042482299,1,1,9,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06522E+18,https://twitter.com/WeAreRLadies/status/1065221287293767681,"But while writing on many lines simultaneously is cool, there is a much more efficient way of accomplishing the task in the previous tweet with mutate_ifhttps://t.co/uWDV2hJjXf https://t.co/xiHOrDcJ8h",11/21/18,12:32,2018-11-21 12:32 +0000,19488,1010,0.051826765,37,4,174,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06522E+18,https://twitter.com/WeAreRLadies/status/1065220784493338625,"Column selection with alt+click -> writing on many lines simultaneously FTW!Also great for commenting out many lines at once https://t.co/gGmScFwWga",11/21/18,12:30,2018-11-21 12:30 +0000,66048,3516,0.053234012,219,32,824,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06512E+18,https://twitter.com/WeAreRLadies/status/1065119967790673920,"Wow, a big step in the right direction!""Institutions that accept an N.S.F grant must now notify the agency of any finding related to harassment by the leading scientists working on it ‰ÛÓ and face the possibility of losing the coveted funds.""https://t.co/d4LSUec7TM",11/21/18,5:49,2018-11-21 05:49 +0000,2482,33,0.013295729,1,1,12,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06511E+18,https://twitter.com/WeAreRLadies/status/1065112799981043713,"Alright, let's end this thread on a great note - a talk I didn't get to see in person but ‰_•ü watching online, esp part on teaching stats with R -- R for Psychological Science? by @djnavarro_Ù_´ https://t.co/MAtFHPskM6_Ùд https://t.co/xoj7JuRcwc https://t.co/CrKxdC8cel",11/21/18,5:20,2018-11-21 05:20 +0000,3099,199,0.064214263,3,0,18,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06509E+18,https://twitter.com/WeAreRLadies/status/1065092334797373440,"Overview of the philosophy and functionality of -- Tidy Statistical Inference in R by @crite (who is not really on Twitter)_Ù_´ https://t.co/IduTPB14DY_Ùд https://t.co/xNQh2zFx9z_ÙÒ_ https://t.co/kmEqOk5wc6 https://t.co/EjyPradwqS",11/21/18,3:59,2018-11-21 03:59 +0000,2209,139,0.0629244,3,1,11,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06509E+18,https://twitter.com/WeAreRLadies/status/1065089580066635776,"Lessons learned from developing R-based curricula across disciplines by @fmic_ is mostly about @thecarpentries, but I especially ‰_•üthe bit on what a beginner would need to know to create a simple plot_Ù_´ https://t.co/VyULV1BL8d https://t.co/ns13ykd8Nw",11/21/18,3:48,2018-11-21 03:48 +0000,1391,54,0.038820992,0,1,7,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06508E+18,https://twitter.com/WeAreRLadies/status/1065079315325423616,"On data science and ethics -- What you can, can‰Ûªt, and shouldn‰Ûªt do with social media data by @rctatman _Ùд https://t.co/JoGFwcDXS1_ÙÒÐ read more at https://t.co/90YvGcPPkx",11/21/18,3:07,2018-11-21 03:07 +0000,1529,29,0.018966645,2,1,10,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06507E+18,https://twitter.com/WeAreRLadies/status/1065074783778426880,"Can't believe it's been 10 months since, but great talk on dataviz+visual inference w/ audience participation! -- To the Tidyverse&Beyond by @visnut_Ù_´ https://t.co/YTOmhdcvco_Ùд https://t.co/XvBaabD979*and the gem by @hadleywickham mentioned in talk https://t.co/PMfLLz82yA",11/21/18,2:49,2018-11-21 02:49 +0000,1561,26,0.01665599,2,1,4,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1065063669078228992,@apreshill @allison_horst yaaassss! (are kids still saying this?),11/21/18,2:05,2018-11-21 02:05 +0000,378,12,0.031746032,0,1,3,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06505E+18,https://twitter.com/WeAreRLadies/status/1065047705251127297,"@allison_horst Yay that‰Ûªs great to hear, can‰Ûªt wait!",11/21/18,1:02,2018-11-21 01:02 +0000,381,2,0.005249344,0,0,1,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06501E+18,https://twitter.com/WeAreRLadies/status/1065007157807116295,These #tidyverse sketches by Allison Horst are super duper awesome! Follow her at @allison_horst for what I hope is more of these coming. https://t.co/32zSXeUbWX,11/20/18,22:21,2018-11-20 22:21 +0000,22549,1374,0.060933966,50,3,186,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.065E+18,https://twitter.com/WeAreRLadies/status/1064997936470347776,"A great data *science* talk on using multiple tools+languages -- Developing Climate ChangeRisk Management Tools Using R & Python by @sheilasaia_Ùд https://t.co/oLZ0EHxCKe",11/20/18,21:44,2018-11-20 21:44 +0000,4557,85,0.018652622,4,1,16,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06499E+18,https://twitter.com/WeAreRLadies/status/1064990017808998400,"Most talks on PCA do not come with such appealing visualizations -- Understanding PCA using Shiny and Stack Overflow data by @juliasilge _Ù_´ https://t.co/wmwHwjovuF_Ùд https://t.co/dWvN9m3mdG https://t.co/ZIIl7bOxqI",11/20/18,21:13,2018-11-20 21:13 +0000,2427,453,0.186650185,2,0,43,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06499E+18,https://twitter.com/WeAreRLadies/status/1064986190506598401,"The first one is so good I couldn't not share, and it's full of _Ù_Ñ and _ÙÔÄ -- Code Smells and Feels by @JennyBryan._Ù_´ https://t.co/k3nJfliw3n_Ùд https://t.co/0xrKkHmpW3If you're teaching a computing course, I strongly recommend making this required watching!",11/20/18,20:57,2018-11-20 20:57 +0000,16969,448,0.026401084,19,2,71,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06497E+18,https://twitter.com/WeAreRLadies/status/1064970451754131457,"Let's talk talks today! Throughout the day I'll be sharing interesting/engaging/informative talks related to R, data science, and education that have stuck with me recently _ÙÒÏ",11/20/18,19:55,2018-11-20 19:55 +0000,7678,108,0.014066163,6,1,45,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06492E+18,https://twitter.com/WeAreRLadies/status/1064923301267546112,@mrchypark_ @rstudio I record a screencast with Quicktime and then convert to gif at https://t.co/vnMB7X1acZ,11/20/18,16:47,2018-11-20 16:47 +0000,1310,15,0.011450382,0,1,6,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06492E+18,https://twitter.com/WeAreRLadies/status/1064922290234818560,"@RandyJMcCarthy Very cool history, thanks for sharing!",11/20/18,16:43,2018-11-20 16:43 +0000,224,2,0.008928571,0,0,1,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06473E+18,https://twitter.com/WeAreRLadies/status/1064734591641104384,"_ÙÔÜSo long copy paste, _ÙªÎHello Command + Enter!Did you know that you can run code from examples in help files with Command + Enter? Works in the #rstats GUI and in @rstudio. https://t.co/i704xzr91p",11/20/18,4:18,2018-11-20 04:18 +0000,36471,3012,0.082586164,72,9,303,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06471E+18,https://twitter.com/WeAreRLadies/status/1064706896723148801,"Also, you definitely don't need that many dashes at the end of comments, but 4 is a good number to have so you can take advantage of the popup menu at the bottom of the editor https://t.co/MgYLhbdKjC",11/20/18,2:28,2018-11-20 02:28 +0000,4323,308,0.071246819,5,4,29,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06471E+18,https://twitter.com/WeAreRLadies/status/1064705830589747206,"I also like the dashes at the end of my comments to hit the 80-character mark, so I wrote a little addin to help me do that_ÙÒ_https://t.co/BEpLWv4yFM_ÙÒÐLearn how to build your own addins at https://t.co/DnK7A77AcN https://t.co/BOk2PYflkh",11/20/18,2:23,2018-11-20 02:23 +0000,4516,492,0.10894597,14,3,75,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.0647E+18,https://twitter.com/WeAreRLadies/status/1064704918102163457,"I'm a stickler for the 80-characters-per-line rule when writing #rstats code, so I'm a huge fan of the margin column line that is always there as a reminder of when I should consider jumping to the next line.RStudio ‰_Á•üPreferences ‰_Á•üCode ‰_Á•üDisplay ‰_Á•üShow Margin https://t.co/N8s19kg5uS",11/20/18,2:20,2018-11-20 02:20 +0000,52901,2242,0.042381051,92,10,401,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1064620958722519040,Do you have any favourite R lessons / teaching examples? Do share!,11/19/18,20:46,2018-11-19 20:46 +0000,2654,64,0.024114544,1,3,2,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06461E+18,https://twitter.com/WeAreRLadies/status/1064608892666224642,"Parking Wars: Manhattan by @rundel - assignment on reconstructing boundaries of Manhattan police precincts _Ù_Ñ_Ù_Ò‰ÏÓ•ü geocoding, #rspatial, big data, multi-label classification_ÙÒ https://t.co/QJsunwkyML_ÙÇ https://t.co/3a3P0a0I6J https://t.co/ICUlhFPHmL",11/19/18,19:58,2018-11-19 19:58 +0000,12980,289,0.022265023,6,1,24,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06459E+18,https://twitter.com/WeAreRLadies/status/1064592649997426688,"Tipsfor Effective Data Visualization by @amzoss + @ericemonson - a great module for to any EDA / dataviz / data science course!‰ÏÓ•ü viz theory -> best practices applied to ggplot2!_ÙÑ£ https://t.co/7jciQVb8JG https://t.co/LpKtCU6rVv",11/19/18,18:54,2018-11-19 18:54 +0000,3092,278,0.089909444,6,1,29,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06459E+18,https://twitter.com/WeAreRLadies/status/1064586723013918721,"@annafergussonnz @Liza_Bolton @jo_hardin47 Take a Sad Plot & Make It Better by @apreshill - love the step by step approach here!‰ÏÓ•ü ggplot2, sadness -> happiness_ÙÑ£ https://t.co/9SS4qmCdcR https://t.co/2zM3c1tvtC",11/19/18,18:30,2018-11-19 18:30 +0000,2814,248,0.088130775,5,1,34,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06459E+18,https://twitter.com/WeAreRLadies/status/1064585321256558595,"@annafergussonnz @Liza_Bolton Dynamic Data in the Statistics Classroom by @jo_hardin47 - College Scorecad, Wikipedia, health (NHANES), literacy (GapMinder), environment (NOAA) + lots of supplemental materials: https://t.co/1KgaHDgmIb‰ÏÓ•ü web data, R Markdown, modeling_ÙÒÄ https://t.co/4hUE8BIbYF https://t.co/5TIEJpGck7",11/19/18,18:24,2018-11-19 18:24 +0000,2250,156,0.069333333,1,1,11,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06458E+18,https://twitter.com/WeAreRLadies/status/1064582830892728320,I'll start the week off by sharing some impressive #rstats lessons ideas and teaching examples I've heard about/used in the last few months. There are so many good ones out there! _ÙÒÏ,11/19/18,18:15,2018-11-19 18:15 +0000,19798,261,0.01318315,16,1,67,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06449E+18,https://twitter.com/WeAreRLadies/status/1064493742990667776,"And I co-organize @RLadiesRTP with @eamcvey and @sheilasaia -- if you live in the RTP area, join us at https://t.co/nq9SsL0oWQ! https://t.co/bs7KxMyysD",11/19/18,12:21,2018-11-19 12:21 +0000,1839,33,0.017944535,2,0,4,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06449E+18,https://twitter.com/WeAreRLadies/status/1064493239971962880,"I love teaching R, data science, and statistics, and I especially enjoy thinking about how newcomers learn and how we can make it just the right amount of challenging (but not frustrating) for them. I tweet about R and education (and sometimes _Ù÷¼ and _ÙÔ¦) @minebocek. https://t.co/IleYrLDzz1",11/19/18,12:19,2018-11-19 12:19 +0000,5253,259,0.049305159,0,1,59,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06449E+18,https://twitter.com/WeAreRLadies/status/1064492736428949504,"A little bit about me: I grew up in Istanbul, went to college in NY, got my PhD in LA, and now live in Durham. That's a total of 9686.294 miles of great circle distance travel! #rstats code at https://t.co/11gBOMx3ok https://t.co/VAyrOFKaYv",11/19/18,12:17,2018-11-19 12:17 +0000,3015,137,0.045439469,4,0,33,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06449E+18,https://twitter.com/WeAreRLadies/status/1064492233536229376,"meRhaba! I am @minebocek, your curator this week! I am a professor at @DukeU and data scientist+educator @rstudio. I can't believe it's been 12 years since I wrote my first piece of #rstats code in grad school, and I ‰_•ü that I still learn something new every day _Ù_Ò",11/19/18,12:15,2018-11-19 12:15 +0000,18586,359,0.019315614,10,0,99,11/19/18,11/24/18,Mine Cetinkaya-Rundel,minebocek,0
1.06354E+18,https://twitter.com/WeAreRLadies/status/1063537197150814208,"It's been a blast being your curator this week - thanks for sharing your achievements, goals, & career advice! You all rock! _ÙÕÏI was delighted to see that folks seemed to like the code gifs, so I'll keep posting them from @nic_craneCan't wait to hear from next week's curator! https://t.co/5Y2n6JoZ3n",11/16/18,21:00,2018-11-16 21:00 +0000,2924,89,0.030437756,0,0,32,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06353E+18,https://twitter.com/WeAreRLadies/status/1063529640407519234,"Last bit from me: the R community is amazingly warm and welcoming, and is your best resource for learning. Tweet. Blog. Attend events. Submit abstracts to present your work or personal projects. This stuff is SO important in ways I find hard to put into words.",11/16/18,20:30,2018-11-16 20:30 +0000,3069,55,0.017921147,4,1,30,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06353E+18,https://twitter.com/WeAreRLadies/status/1063527628756275200,Don't be embarassed to not know things! A beginner's mind can be a valuable resource. Your perspective is important too.,11/16/18,20:22,2018-11-16 20:22 +0000,1843,31,0.016820402,3,0,23,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06353E+18,https://twitter.com/WeAreRLadies/status/1063527123803983872,"A few final bits from me on learning R before I sign off for the week:Teaching is the best form of learning! I learn new R things best by doing something once, writing a post or tutorial, & then getting feedback on everything I got wrong on my first go or extra bits I missed!",11/16/18,20:20,2018-11-16 20:20 +0000,3762,76,0.02020202,4,1,48,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1063524607477592065,"Another awesome #rstats package _ÙÒ_ is #viridis, which provides a number of fantastic color maps, which not only are optimised for certain forms of colour blindness, but also looks really really nice too! _ÙÕÐ https://t.co/Y6qLklNz76 https://t.co/GwQA01Ig6y",11/16/18,20:10,2018-11-16 20:10 +0000,2683,130,0.048453224,6,3,39,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06352E+18,https://twitter.com/WeAreRLadies/status/1063520832394276864,"My second ‰_•ü_ÙÓ´ #rstats pkg _ÙÒ_today is #shinyalert by @daattali! It allows you to easily show error/warning/success _ÙÝÔ‰_Ê•ü‰ÏÉ msgs in #Shiny which are aesthetically pleasing, & allow you to work with the response. Bonus points for having a fantastic website!https://t.co/fs525shFF9 https://t.co/bAcXKz9Tsz",11/16/18,19:55,2018-11-16 19:55 +0000,1376,40,0.029069767,0,0,12,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06346E+18,https://twitter.com/WeAreRLadies/status/1063458924395786240,"What are your favourite non-tidyverse #rstats packages? I ‰_•ü #kableExtra by @haozhu233. It allows you to get a really fine degree of customisation on both LaTeX and HTML tables, and wins bonus points for having excellent documentation! _Ù÷Èhttps://t.co/H3urFGgZYh https://t.co/5tGrrWejAj",11/16/18,15:49,2018-11-16 15:49 +0000,24271,1446,0.059577273,42,8,235,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06344E+18,https://twitter.com/WeAreRLadies/status/1063439557755056128,"Hey #RLadies!_ÙÒ¢ Thinking of submitting a conference abstract or applying for a diversity scholarship, & want some help? _ÙÕ_ _٪܉ۉªÛ•ü Use the form below to get feedback on your abstract/application!_ÙÔ©‰Û_ÙÕÈ I've used this before and got some great advice! ‰_•ühttps://t.co/AgEIURUjng",11/16/18,14:32,2018-11-16 14:32 +0000,10258,177,0.017254826,27,0,48,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1063408845429587969,"Carrying on the theme of teaching #rtsats - ‰_•ü this talk by @drob - when the student's goal is to understand & work with data it's best to teach the #tidyverse first and supplement with base R later; once again, giving learners big wins fast.https://t.co/AyLB2qf9l4 https://t.co/mhBl9s3JU2",11/16/18,12:30,2018-11-16 12:30 +0000,3492,197,0.056414662,5,2,38,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06335E+18,https://twitter.com/WeAreRLadies/status/1063351650394480641,Another question for my fellow #RLadies community members: what are your current goals _Ù around #rstats (or tenuously related topics)? https://t.co/RgmMA2fddy,11/16/18,8:42,2018-11-16 08:42 +0000,2113,51,0.024136299,2,3,10,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06315E+18,https://twitter.com/WeAreRLadies/status/1063154166002929664,"What are your fave resources around teaching #rstats? It's being talked about a lot already but so _ÙÓ´ it deserves mentioning again: this talk by @minebocek which is all about giving students big wins & let the play with existing code to keep things fun! _Ù_âhttps://t.co/1cFgEX6zKA https://t.co/wLoaNsR0pe",11/15/18,19:38,2018-11-15 19:38 +0000,18426,383,0.020785846,17,1,76,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1063095529960235008,"More favourite #rstats resources of mine: Want to know how you can contribute to the #tidyverse? Go and watch this talk by @dataandme from the 2018 #RStudio Conference! It's packed with great advice and tips! _Ù_©https://t.co/h0uzGciyiU https://t.co/aupktEJTfl",11/15/18,15:45,2018-11-15 15:45 +0000,3677,127,0.034539026,7,0,22,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06306E+18,https://twitter.com/WeAreRLadies/status/1063059429363511296,@smithecology https://t.co/CEiD1gp2mX,11/15/18,13:21,2018-11-15 13:21 +0000,138,0,0,0,0,0,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06305E+18,https://twitter.com/WeAreRLadies/status/1063046207474360320,"More great #rstats resources: this 1 is by @daattali: a step-by-step guide on how to get yr own instance of #Shiny Server running on the cloud! ‰÷•ü It covers everything you need to know, explaining the whats and the whys, and is pitched at the right level _Ù_©https://t.co/cnBi3TqPkD https://t.co/SSlgfSiFol",11/15/18,12:29,2018-11-15 12:29 +0000,1683,65,0.038621509,0,0,17,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06298E+18,https://twitter.com/WeAreRLadies/status/1062983253764853760,Great advice from @sastoudt - thanks! https://t.co/O9zmNXH7af,11/15/18,8:18,2018-11-15 08:18 +0000,1504,3,0.001994681,0,0,2,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.0628E+18,https://twitter.com/WeAreRLadies/status/1062804864982372353,"Show me the blog posts & resources you find invaluable to getting stuff done with #rstats! One of my faves is this post by my friend @sellorm who does an awesome job of not only laying out how to package a #Shiny app but the reasoning behind it too! ‰Ï¬ https://t.co/1lKZTYh3P3 https://t.co/goIxZ1p8II",11/14/18,20:30,2018-11-14 20:30 +0000,5388,218,0.040460282,7,2,43,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06278E+18,https://twitter.com/WeAreRLadies/status/1062781898177593345,@KapurMaia @juliasilge I love that quote; I think it applies to a lot of things in life! Thanks for sharing!,11/14/18,18:58,2018-11-14 18:58 +0000,79,1,0.012658228,0,0,0,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06277E+18,https://twitter.com/WeAreRLadies/status/1062766827669983233,"@xvrdm As far as I know it's basically a concise ways of writing something like:floor_date(my_date, unit = ""month"") - days(1)",11/14/18,17:58,2018-11-14 17:58 +0000,111,0,0,0,0,0,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06277E+18,https://twitter.com/WeAreRLadies/status/1062765539976757248,"Another question for the #RLadies community: what is your favourite bit of career advice? I love this quote from @juliasilge and try to follow this myself! Here's a link to the rest of the interview if you're curious: https://t.co/D5Gcdu9drV https://t.co/HJNp6L2dhY",11/14/18,17:53,2018-11-14 17:53 +0000,3483,229,0.065747918,3,2,31,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06276E+18,https://twitter.com/WeAreRLadies/status/1062764110864093186,@gh_firefly Totally counts! Noice! https://t.co/xhpzCsSAb7,11/14/18,17:48,2018-11-14 17:48 +0000,172,2,0.011627907,0,0,0,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06267E+18,https://twitter.com/WeAreRLadies/status/1062671353810161664,"@OmniaRaouf Oh, that is excellent! Nice work! https://t.co/H2gUPZ5hJ7",11/14/18,11:39,2018-11-14 11:39 +0000,207,4,0.019323671,0,0,0,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06263E+18,https://twitter.com/WeAreRLadies/status/1062625597208301568,@JeanneauAmelie https://t.co/cU1qpqgayy,11/14/18,8:37,2018-11-14 08:37 +0000,246,2,0.008130081,0,0,0,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06262E+18,https://twitter.com/WeAreRLadies/status/1062624593410711552,@AlexisIdlette Hey! _Ù÷Û,11/14/18,8:33,2018-11-14 08:33 +0000,20,0,0,0,0,0,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06262E+18,https://twitter.com/WeAreRLadies/status/1062624350833139712,"@nishant_42 @lisadebruine Hey Nishant, @RStudio actually have a webinar on broom today (14th Nov) at 1PM EST - info is here: https://t.co/DZRy8AZydUAnother resource I love is the vignette - it has code examples you can run too!https://t.co/kkueNDqcMc",11/14/18,8:32,2018-11-14 08:32 +0000,103,7,0.067961165,0,0,1,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06248E+18,https://twitter.com/WeAreRLadies/status/1062484569243508736,"@kitkatbar429 Kudos! (I always guess, mess up and have to check the docs each time I do it!) https://t.co/ZGSbvKODYZ",11/13/18,23:17,2018-11-13 23:17 +0000,404,4,0.00990099,0,0,1,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06248E+18,https://twitter.com/WeAreRLadies/status/1062483739824005127,@JenRichmondPhD @VeraNewman54 @djnavarro @RLadiesSydney Nice one! https://t.co/noKX1DvyKP,11/13/18,23:13,2018-11-13 23:13 +0000,440,4,0.009090909,0,0,1,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06242E+18,https://twitter.com/WeAreRLadies/status/1062418996576817153,@joelrudinas03 Nice one!,11/13/18,18:56,2018-11-13 18:56 +0000,89,0,0,0,0,0,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06236E+18,https://twitter.com/WeAreRLadies/status/1062363456353972224,More #dataviz tips: wanna make interactive graphics and already know #ggplot2 _ÙÒ__ÙÒö but are less familiar with #plotly? No worries! Create your plot in ggplot2 and then pop it in a call to plotly::ggplotly to instantly create interactive graphics! Wow! _Ù÷ã #rstats https://t.co/5kBwhFfqO5,11/13/18,15:16,2018-11-13 15:16 +0000,9437,400,0.042386352,32,0,133,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06235E+18,https://twitter.com/WeAreRLadies/status/1062352697960083456,"@Dorris_Scott Oh that sounds awesome, good luck with that project then!",11/13/18,14:33,2018-11-13 14:33 +0000,492,2,0.004065041,0,1,1,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06233E+18,https://twitter.com/WeAreRLadies/status/1062330611698950149,@Dorris_Scott https://t.co/sBQrRlvtVs,11/13/18,13:05,2018-11-13 13:05 +0000,543,13,0.023941068,0,1,2,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06233E+18,https://twitter.com/WeAreRLadies/status/1062325528902987778,@shikta_das https://t.co/nMicu23iTE,11/13/18,12:45,2018-11-13 12:45 +0000,429,9,0.020979021,0,1,0,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06233E+18,https://twitter.com/WeAreRLadies/status/1062325182151450624,"Mine: I opened an issue on a package with offer to submit a PR even though I was nervous & rewrote it a few times! Pkg creator replied & was nice+helpful _Ùªâ This is SO important to us newbies who still don't get all the etiquette etc around this stuff, so thanks @nj_tierney _Ù÷Û",11/13/18,12:43,2018-11-13 12:43 +0000,1967,28,0.014234875,2,1,18,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06232E+18,https://twitter.com/WeAreRLadies/status/1062324262122516480,"Today I have a question for my fellow #RLadies community members: can you tell me something to do with #rstats you've done in the past week that you're proud of? Nothing's too small or silly to count - this is about you, not other people. Equally, don't be afraid to brag! https://t.co/I2llyuv37J",11/13/18,12:40,2018-11-13 12:40 +0000,9067,190,0.020955112,12,10,29,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06232E+18,https://twitter.com/WeAreRLadies/status/1062323722906935296,"@joelrudinas03 Hey Joel, 'quakes' is one of R's fantastic built-in datasets, in the 'datasets' package. This means it's automatically available to you when you start R. If you run View(""quakes""), you can look inside it. Or just run data() to get a full list of available datasets!",11/13/18,12:38,2018-11-13 12:38 +0000,118,3,0.025423729,0,2,1,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1062304888699392001,"Great example of more short but effective R code, using #broom! _Ù¤_ #tidyverse #rstats https://t.co/JTtnmbIYll",11/13/18,11:23,2018-11-13 11:23 +0000,2217,12,0.00541272,2,0,9,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06205E+18,https://twitter.com/WeAreRLadies/status/1062052399832031235,"Whilst we're talking about #lubridate ‰ÎÝ•ü‰¡, another function that has saved me from writing some really janky code is rollback() which allows you to roll a date back to the last day of the previous month or first day of the month! #rstats #tidyverse https://t.co/qPzVhGj4Kr",11/12/18,18:39,2018-11-12 18:39 +0000,7912,237,0.029954499,14,4,95,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06203E+18,https://twitter.com/WeAreRLadies/status/1062032435171471360,"What's your favourite overlooked #tidyverse function? Mine is %m+% from #lubridate ‰ÎÝ•ü‰¡ It allows you to do maths with dates, whilst accounting for the fact that time periods are not uniform (not all years have 365 days, months differ in length etc) #rstats https://t.co/WFY37Q55iM",11/12/18,17:20,2018-11-12 17:20 +0000,37506,1021,0.027222311,78,7,327,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1061997002995712005,Good question! I know that there are a lot of @rstudio webinars which have some (https://t.co/gEV2ug5ueU) but does anyone else have any pointers to live #rstats coding videos? https://t.co/JDwBdymLDc,11/12/18,14:59,2018-11-12 14:59 +0000,2999,34,0.011337112,1,2,13,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06199E+18,https://twitter.com/WeAreRLadies/status/1061992769663709184,@drob I learned that it's important to use coord_map() to preserve dimensions when plotting maps with ggplot2 and that you can use borders() to throw some basic map data onto your plot! Here's an example with my favourite dataset for plotting: quakes! #ggplot2 #rstats #tidytuesday https://t.co/oxuUHbZJV6,11/12/18,14:43,2018-11-12 14:43 +0000,3127,127,0.040614007,6,0,23,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06199E+18,https://twitter.com/WeAreRLadies/status/1061992492143439872,"Loved the screencast _ÙÕÈ_ÙÔ¬‰Û_ÙÕÈ by @drob last #tidytuesday, looking at US wind farm _Ùà¼_Ùàü_ÙΕü_ÙÔ©‰Û_ÙÎ_datasets . If you haven't seen it, check it out here: https://t.co/eQZBFEKYbmWhat did you learn from this? #rstats",11/12/18,14:41,2018-11-12 14:41 +0000,4552,63,0.01384007,5,2,28,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06195E+18,https://twitter.com/WeAreRLadies/status/1061954629557215233,"Anyway, enough about me! I have a question for you, #RLadies and #rstats community: what's your favourite example of short but powerful R code? I love this example when I'm teaching #ggplot2. The plot conveys so much information with so little effort.#dataviz https://t.co/TlN5dj7SEN",11/12/18,12:11,2018-11-12 12:11 +0000,10082,787,0.078059909,17,9,68,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06195E+18,https://twitter.com/WeAreRLadies/status/1061954125942980608,@nic_crane I also like to blog and tweet about R: https://t.co/o8VXNfbe6v and @nic_crane! Big shout out to #RLadies London who always put on an amazing meetup and make the 2 hour train journey worth it every time ‰_•ü,11/12/18,12:09,2018-11-12 12:09 +0000,1793,45,0.025097602,1,0,6,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1061953821881131008,"@nic_crane When I'm not being nerdy about R, I love travel ‰Ïö•ü, food (both the cooking and eating of) _ÙÑ, and comedy _Ù÷â. I also enjoy learning about self development and tech in general - shout out to my 2 favourite podcasts - Grumpy Old Geeks and The Jordan Harbinger Show!",11/12/18,12:08,2018-11-12 12:08 +0000,1694,9,0.005312869,0,1,4,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06195E+18,https://twitter.com/WeAreRLadies/status/1061953449582084096,"@nic_crane I love talking about R, teaching R, and generally enthusing about R and open source. Seeing the look on a person's face when they've gone from feeling faintly confused to understanding a topic is one of the best feelings ever! _ÙÕÁ _Ù÷Ä",11/12/18,12:06,2018-11-12 12:06 +0000,892,21,0.023542601,0,1,10,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.06195E+18,https://twitter.com/WeAreRLadies/status/1061952745744281600,"Hey, I'm @nic_crane and I'll be your curator this week! I work as a data scientist at Elucidata, & do a lot of work with Shiny! I first learned R when I was doing my PhD, though working at Mango Solutions for 2 years & using R in industry really helped me level up my R skills!",11/12/18,12:03,2018-11-12 12:03 +0000,6811,151,0.022170019,1,1,54,11/12/18,11/17/18,Nic Crane,nic_crane,0
1.0613E+18,https://twitter.com/WeAreRLadies/status/1061301897494126592,"It's been so nice to ""meet"" all of you! I'll be over @apreshill if you want to say ""hello"" ‰÷â•üAnd I'll be at rstudio::conf in Austin, so please don't be a stranger!Bye for now _ÙÔÜ_Ù_ https://t.co/lprYhRk9GU",11/10/18,16:57,2018-11-10 16:57 +0000,2435,44,0.018069815,1,0,19,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1061136879024726016,I DID miss that one- thank you @dataandme! _Ù_ https://t.co/qGlEYdH1Na,11/10/18,6:02,2018-11-10 06:02 +0000,2454,17,0.006927465,0,0,6,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06111E+18,https://twitter.com/WeAreRLadies/status/1061113943614050306,"You know you've been inspired when you spend a 6-hr flight doing backwards design for the Adv R Markdown workshop at rstudio::conf. _ÙÕÏ_ÙÕÏ_ÙÕÏ- start with _Ù¡ (@minebocek)- get them off the beach (@JennyBryan)- I assume you want to ride this _Ù_«_Ù_‰Û‰ªÛ•ü (@JennyBryan) #RLadies #rstats https://t.co/DdPZxdBPGo",11/10/18,4:30,2018-11-10 04:30 +0000,16569,966,0.058301648,6,1,41,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1061111136135725056,"Back in #PDX from the whirlwind trip to Boston and @rstudio ""headquarters"" _Ù¥«_Ù_Congrats to #RLady @minebocek on inspiring ""better living through data science""- the edu world is a better place because of her _Ù¡Slides: https://t.co/1cFgEX6zKARepo:https://t.co/nI9BjDe3e3 https://t.co/fYjFdcMick",11/10/18,4:19,2018-11-10 04:19 +0000,7144,331,0.046332587,10,2,35,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06111E+18,https://twitter.com/WeAreRLadies/status/1061109319461101568,"Wisdom _Ù_ä from @mwgerber about learning #rstats!- ‰Î‰Ïâ•ü type code at first, try not to copy/paste (commas! quotes! pipes! parens! so many habits to start early!)-_ÙÒÐ read the docs --> ‰Ï_Ù_ it down- learning-based projecting + project-based learning https://t.co/5hYZ6AKsdV",11/10/18,4:12,2018-11-10 04:12 +0000,3054,33,0.010805501,4,0,14,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06099E+18,https://twitter.com/WeAreRLadies/status/1060993872698982400,".@brookLYNevery1 built a `statebabynames` package so she could visualize ""The US of Bey"" https://t.co/fbQ8ptOM7RGithub repo for her blog post here:https://t.co/PCg8Ab7C2e(sorry the rendered link is down) https://t.co/MP9MzPx37N",11/9/18,20:33,2018-11-09 20:33 +0000,2152,97,0.045074349,3,0,14,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06099E+18,https://twitter.com/WeAreRLadies/status/1060993286092021764,".@mwgerber took @hspter's analysis even further: was Monica more poisoned than Hilary??https://t.co/nY2HUfCvEY https://t.co/Idknax1GcU",11/9/18,20:31,2018-11-09 20:31 +0000,1949,68,0.034889687,1,0,5,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06099E+18,https://twitter.com/WeAreRLadies/status/1060992948475752448,".@juliasilge asked what her baby boomer name might have beenhttps://t.co/tQjpQiU3d1(+ bonus #shiny app!: https://t.co/EJCJDsYnP6) https://t.co/pZdqrbk2XQ",11/9/18,20:30,2018-11-09 20:30 +0000,2003,101,0.050424363,2,0,9,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1060992538050473984,".@hspter's now famous #rstats analysis of ""The most poisoned baby name in US history""https://t.co/isL0Sq2rV2 https://t.co/0oE6FHyfCz",11/9/18,20:28,2018-11-09 20:28 +0000,2059,210,0.101991258,2,0,6,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06099E+18,https://twitter.com/WeAreRLadies/status/1060992100026720258,"One of my best pieces of advice for self-directed #rstats learners, whether you are a beginner or advanced, is to do a simple project- serious or silly.Need proof? Check out these awesome #RLadies projects using the #babynames dataset:https://t.co/zkzXrbe6mh https://t.co/6MMcnqglAf",11/9/18,20:26,2018-11-09 20:26 +0000,23333,2575,0.110358719,50,5,179,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06088E+18,https://twitter.com/WeAreRLadies/status/1060879988977754115,"Any #RLadies need to update their social media profiles? A happy problem, but I need to update my bio and #blogdown site _ÙÕ»_Ù_These materials from talented #OHSU #WomenInSTEM @rchampieux, @dr_lrwyatt, and Olivia Hancock are _ÙÕø (+ _ÙÓ @datapointier!)Link:https://t.co/5eqwhlPhoT https://t.co/Saun6Hlsji",11/9/18,13:01,2018-11-09 13:01 +0000,15430,1065,0.069021387,27,1,94,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06076E+18,https://twitter.com/WeAreRLadies/status/1060758908938186753,"Repo with #xaringan slide code:https://t.co/C8PH23nXksI print off handouts with code names for each dataset, but you could instead color-code them. So for recipe 1 for example, the dataset was called ""HOT CROSS BUNS"" _Ù´Then for each ""recipe"", do a quick poll _ÙÑ_ https://t.co/uAKKrCypEy",11/9/18,5:00,2018-11-09 05:00 +0000,2087,136,0.065165309,0,0,7,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06076E+18,https://twitter.com/WeAreRLadies/status/1060758103338246145,"My favorite class from #dataviz last year! _ÙÔø‰Û‰ªÛ•üIn pairs, students guess which dataset was used to make each #ggplot2.I did this b/c I noticed my students were getting a bit rigid about #tidydata._Ù_ä Tidy data is a place to start, but may not be the endhttps://t.co/Dh53o8kNhh https://t.co/fUDCbKqbUz",11/9/18,4:56,2018-11-09 04:56 +0000,21850,2208,0.101052632,41,4,187,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06075E+18,https://twitter.com/WeAreRLadies/status/1060747733840117760,"@urganmax @JennyBryan @jimhester_ @talgalili yes, currently only for the Windows OS though",11/9/18,4:15,2018-11-09 04:15 +0000,62,4,0.064516129,0,1,0,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06073E+18,https://twitter.com/WeAreRLadies/status/1060726286744739840,Y'all there is a ggclock @rstudio #ggplot2 #rstats https://t.co/pJHlIssQUS,11/9/18,2:50,2018-11-09 02:50 +0000,39787,4255,0.106944479,44,15,353,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1060725592218365953,"The @rstudio ""Rogue Education Do-gooders"" trivia team came in second place tonight _Ù´öBut, we serendipitously had @Felienne in town to join us tonight before her keynote at rstudio::conf 2019!@StatGarrett@gvwilson@cdhowe@minebocek @apreshill https://t.co/6svxbaSlul",11/9/18,2:47,2018-11-09 02:47 +0000,6012,331,0.055056554,2,0,27,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06072E+18,https://twitter.com/WeAreRLadies/status/1060723237208887296,"Fun day spent talking #rstats workshops, learning pathways, and community-building _ÙÕª Exciting plans with a beautiful @rstudio view _Ù÷__ÙÝ__Ù_Û https://t.co/Grn8rCzfJQ",11/9/18,2:38,2018-11-09 02:38 +0000,4667,316,0.067709449,1,1,12,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06072E+18,https://twitter.com/WeAreRLadies/status/1060719620582203393,@HelicityBoson @hadleywickham @alice_data @WINGSPANTT Oh you are speaking my language- I love the Montserrat font!,11/9/18,2:23,2018-11-09 02:23 +0000,139,5,0.035971223,0,0,2,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1060719023040684032,"@GueyeNono @alice_data yes it it geom_smooth- if you click on the ""hide"" button you can see the code to make each plot",11/9/18,2:21,2018-11-09 02:21 +0000,90,2,0.022222222,0,1,0,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06065E+18,https://twitter.com/WeAreRLadies/status/1060647763531173888,@rstudio @apreshill @StatGarrett @gvwilson @minebocek @cdhowe One of us is channeling Britney https://t.co/9KD2TlE5gX,11/8/18,21:38,2018-11-08 21:38 +0000,1313,30,0.022848439,0,0,7,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06064E+18,https://twitter.com/WeAreRLadies/status/1060635070363512834,"Rare photo of the @rstudio education team all together in the same roomL to R: _Ù_ö @apreshill, _Ù_ö @StatGarrett, _Ù @gvwilson, _Ù÷@minebocek, behind the _ÙÒü @cdhowe _ÙÄ https://t.co/dzTfthhrK4",11/8/18,20:48,2018-11-08 20:48 +0000,9695,585,0.060340382,3,4,69,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06063E+18,https://twitter.com/WeAreRLadies/status/1060632252424568838,"Some lovely slides for teaching the #dplyr package from the #rstats #tidyverse from a lovely #RLady, @OmaymaS_ https://t.co/hDx8XgEWRu",11/8/18,20:36,2018-11-08 20:36 +0000,5750,47,0.008173913,7,1,28,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06056E+18,https://twitter.com/WeAreRLadies/status/1060562243476017152,@jmtoralc @rstudio Boston Seaport _ÙÝ_,11/8/18,15:58,2018-11-08 15:58 +0000,316,2,0.006329114,0,0,1,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06056E+18,https://twitter.com/WeAreRLadies/status/1060557657139044353,"We found the @rstudio swag room _ÙÕ¡_ÙÔ¥ @minebocek snagged some #rstats #tidyverse hex stickers for her students https://t.co/pP5hrXhZ7G",11/8/18,15:40,2018-11-08 15:40 +0000,3367,366,0.108702109,4,3,37,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06056E+18,https://twitter.com/WeAreRLadies/status/1060555697753149440,"Yes, the @RStudio office does exist! Made it to the #rstats mothership _ÙÔ_ https://t.co/Pw243baa7Y",11/8/18,15:32,2018-11-08 15:32 +0000,8103,1123,0.138590645,4,5,155,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1060413215568470016,"If you are feeling inspired by all this #xaringan awesomeness like @djnavarro, I have a slide deck for you! Get started with #xaringan:https://t.co/LshdBRu732Source code:https://t.co/7fuBL1Nv2l https://t.co/zwQZNSvcOX",11/8/18,6:06,2018-11-08 06:06 +0000,5050,159,0.031485149,11,1,38,11/5/18,11/10/18,Alison Hill,apreshill,0
1.0604E+18,https://twitter.com/WeAreRLadies/status/1060400379425361920,"@jent103 More #ggplot2 #xaringan slide inspiration from @grrrck https://t.co/Xc2ypk93wT+ don't miss the easter _Ù£ link to the most popular geoms used in @GitHub repos!https://t.co/DavZKViqAI https://t.co/CJyOFD2tov",11/8/18,5:15,2018-11-08 05:15 +0000,2304,174,0.075520833,4,2,24,11/5/18,11/10/18,Alison Hill,apreshill,0
1.0604E+18,https://twitter.com/WeAreRLadies/status/1060395909580767232,"Thinking about doing a {ggplot2} #dataviz workshop for your local #rstats meetup group, co-workers, dodgeball team?GO FOR IT! _Ù___ÙȉۉªÛ•ü‰Ý__ÙÀ‰Û‰ªÛ•üSome inspiration from the awesome #RLady @jent103:https://t.co/q2n8UcRPcNRepo w/ code for #xaringan slides:https://t.co/h9U1RDaNnE https://t.co/10CrGqwBhg",11/8/18,4:57,2018-11-08 04:57 +0000,6848,809,0.118136682,28,4,90,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06039E+18,https://twitter.com/WeAreRLadies/status/1060386286937219072,"Confession: sometimes I need to settle on my fonts, #xaringan css, and {ggplot2} color theme before starting a new #rstats project. It soothes me _ÙÔ©_Ù_‰Û_Ù_¬Any other #RLadies do this?_Ù_¬ Beginner basics on colors in #ggplot2 here:https://t.co/S0c4pyo7g3(lego Rlady by @alice_data) https://t.co/M3hObBnCMp",11/8/18,4:19,2018-11-08 04:19 +0000,16438,1317,0.080119236,15,3,86,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1060377681399894016,"Since @JennyBryan and @jimhester_'s ""What They Forgot"" #rstats workshop, I've used the {fs} _ÙÒ_ practically everyday.I've mainly used it to easily manipulate _ÙÑâ and paths...but the real game changer is this:How to transfer your packages when updating Rhttps://t.co/84y76yU00n https://t.co/5qB0xeM05Z",11/8/18,3:45,2018-11-08 03:45 +0000,4366,261,0.059780119,17,1,63,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06038E+18,https://twitter.com/WeAreRLadies/status/1060375561627942912,"Made it to Boston for the @rstudio education team work day tomorrow ‰÷ã•üOr as my mother-in-law called it ""my first trip to headquarters"" _ÙÔ©_ÙȉÛ_ÙÕ_ https://t.co/atSXKL9xyw",11/8/18,3:36,2018-11-08 03:36 +0000,1851,42,0.022690438,0,0,13,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06001E+18,https://twitter.com/WeAreRLadies/status/1060012642796892160,"From @jvcasill: a repo of untidy linguistic data for teaching the #tidyverse.With an #rstats hex sticker and pkgdown site to boot _ÙÕÉ_Ù_ https://t.co/LHpEYVByvP",11/7/18,3:34,2018-11-07 03:34 +0000,1924,11,0.005717256,1,0,6,11/5/18,11/10/18,Alison Hill,apreshill,0
1.05996E+18,https://twitter.com/WeAreRLadies/status/1059961792846274560,"@akon_bol @hadleywickham @StatGarrett @minebocek Hi and welcome! I suggest asking this on https://t.co/JR5x6DkRJW. To get the best help, since you are new to R, I recommend trying to make a reproducible example (called a {reprex}) first:https://t.co/2f1fmkevXMThis will help the community members answer your question _ÙÔ_Ù_",11/7/18,0:12,2018-11-07 00:12 +0000,142,5,0.035211268,0,1,2,11/5/18,11/10/18,Alison Hill,apreshill,0
1.05996E+18,https://twitter.com/WeAreRLadies/status/1059960147198410752,"@hadleywickham @StatGarrett @minebocek The @STAT545 #rstats explainer by @JennyBryan was how I first ""met"" the pipe operator _Ù_https://t.co/mugKhK4xn6""You are probably not impressed yet, but the magic will soon happen."" _ÙÓ¨",11/7/18,0:06,2018-11-07 00:06 +0000,1267,26,0.020520916,2,0,4,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1059958438984404992,"@hadleywickham @StatGarrett @minebocek This question from @kierisi has some seriously good responses about teaching the #rstats pipe operator _Ù https://t.co/XfcJnxn4jK",11/6/18,23:59,2018-11-06 23:59 +0000,1424,10,0.007022472,2,0,4,11/5/18,11/10/18,Alison Hill,apreshill,0
1.05996E+18,https://twitter.com/WeAreRLadies/status/1059957526681182208,"@hadleywickham @StatGarrett @minebocek I like to teach the #rstats pipe operator (%>%) after using it a bit.Slides _ÙÐ_ here:https://t.co/XWlvGUJehI#xaringan slide code on github:https://t.co/mCene7MAzb https://t.co/Gj6J65tcu1",11/6/18,23:55,2018-11-06 23:55 +0000,17771,1569,0.088289911,36,0,160,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1059955034207617024,"I _ÙÕÏ seeing how/when people talk about the #rstats pipe operator (better known as %>%)._Ù¡_Ù_ From #r4ds by @hadleywickham + @StatGarrett:https://t.co/MYJwM1DpvB_Ù_ª_ÙÑFrom @minebocek Data Science in a Boxhttps://t.co/gHmp9AA4vS https://t.co/jQbxY7skww",11/6/18,23:45,2018-11-06 23:45 +0000,4886,418,0.085550553,9,5,41,11/5/18,11/10/18,Alison Hill,apreshill,0
1.05994E+18,https://twitter.com/WeAreRLadies/status/1059935555629109249,"Another insider pick for teaching #tidydata from @old_man_chester:Almost all data from https://t.co/qaKh5qM6uc needs tidying (*not* from the {gapminder} #rstats package!)_ÙÔ¦_Ù_ Try looking at fertility rates _Ù_¡_Ù__Ù_±_ÙÀ:https://t.co/DznTlBYY1u https://t.co/eq93olqk1r",11/6/18,22:28,2018-11-06 22:28 +0000,6688,114,0.017045455,2,0,5,11/5/18,11/10/18,Alison Hill,apreshill,0
1.05993E+18,https://twitter.com/WeAreRLadies/status/1059931877560078336,"_ÙÕÎ Another good one from @FiveThirtyEight, h/t to @rudeboybert for picking this one last week!""Dear Mona Followup: Where Do People Drink The Most _Ù¼, _Ùá And _Ù´Ä?""https://t.co/lggdJ4ABJyhttps://t.co/wK3zNzbIUB https://t.co/62jvzgAltx",11/6/18,22:13,2018-11-06 22:13 +0000,1092,40,0.036630037,0,0,1,11/5/18,11/10/18,Alison Hill,apreshill,0
1.05993E+18,https://twitter.com/WeAreRLadies/status/1059927764231430144,"The @FiveThirtyEight Bachelorette data is also pretty untidy _ÙÕÉ_Ù_Luckily it doesn't care because it's not here to make friends.It's in the #rstats {fivethirtyeight} package by @rudeboybert @old_man_chester _ÙÕhttps://t.co/k8vBgDs03g https://t.co/jVVg1oBraA",11/6/18,21:57,2018-11-06 21:57 +0000,1749,51,0.02915952,2,1,11,11/5/18,11/10/18,Alison Hill,apreshill,0
1.05993E+18,https://twitter.com/WeAreRLadies/status/1059925072562081793,"I'll start! _Ù__Did you know that #PDX has a summer bike count every year?Can you visualize if the number of _Ù__ over time? How about over time, by sector?The untidy data is in a googlesheet:https://t.co/YmZdqmoSe5Read more about the _Ù__ count: https://t.co/fpZ0N67AKu https://t.co/CjMYgclqHP",11/6/18,21:46,2018-11-06 21:46 +0000,1191,23,0.019311503,0,0,2,11/5/18,11/10/18,Alison Hill,apreshill,0
1.05992E+18,https://twitter.com/WeAreRLadies/status/1059923497550413824,"It is election day in the US _Ùà¼_ÙàüIn the spirit of making things better _ÙÑ_, let's share our best untidy data!:""Give me your tired, your poor,your messiest #rstats datasets... yearning to break free!""(ps- I live in Oregon so I vote by _ÙÒÂ, but if you haven't yet, please vote!)",11/6/18,21:40,2018-11-06 21:40 +0000,5003,56,0.011193284,3,7,19,11/5/18,11/10/18,Alison Hill,apreshill,0
1.05989E+18,https://twitter.com/WeAreRLadies/status/1059894494236045312,"Hello there _Ù_ÑWe gathered yesterday- today we spread to get to #tidydata.Code to make the gif using the {magick} package _ÙÔà_Ù_https://t.co/3CaRguAx2pPlease reuse / remix! _Ù__#rstats https://t.co/oo7q33DkEj",11/6/18,19:45,2018-11-06 19:45 +0000,8661,321,0.037062695,26,2,96,11/5/18,11/10/18,Alison Hill,apreshill,0
1.05964E+18,https://twitter.com/WeAreRLadies/status/1059643086379204608,"Such an awesome crowd of #OSU students and faculty for the ASA Oregon chapter meeting- lots of #rstats users in attendance _Ù_ÒThanks to the #OHSU and #PDX travelers! _Ù_ªWill share slides + some narrative tomorrow- for now gotta drive back to Portland _ÙÕÏ https://t.co/c7OHyd9u4h",11/6/18,3:06,2018-11-06 03:06 +0000,2846,98,0.034434294,3,0,16,11/5/18,11/10/18,Alison Hill,apreshill,0
1.0596E+18,https://twitter.com/WeAreRLadies/status/1059601603135647746,"Made it to Corvallis for the ASA Oregon chapter fall meeting! _ÙÕÈ Lots of #rstats going on @datapointier @emilelatour @old_man_chester @apreshill (thx for the photo @MmMiguelmM!) Stay tuned for slides! _ÙÐ_ #RLadies https://t.co/H9Lj3m8AyH",11/6/18,0:21,2018-11-06 00:21 +0000,4297,221,0.051431231,3,3,22,11/5/18,11/10/18,Alison Hill,apreshill,0
1.05953E+18,https://twitter.com/WeAreRLadies/status/1059526380331786240,"Other great tidyr::gather learning resources from awesome #RLadies:_ÙÔ©_Ù_‰Û_Ù_¬ from @jtrnychttps://t.co/bE1l1lFNdy_ÙÕ from @JennyBryan https://t.co/TvTUMXPcdP_Ù_ from @kierisi https://t.co/qFucrNCPyr",11/5/18,19:22,2018-11-05 19:22 +0000,17652,364,0.020620893,21,2,73,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1059521972097363968,"See more feelings in this thread, started by @kierisi _Ù÷â_Ù_Ò_Ù_Â_Ù_øhttps://t.co/6uP2A003wN",11/5/18,19:04,2018-11-05 19:04 +0000,3051,33,0.010816126,0,0,10,11/5/18,11/10/18,Alison Hill,apreshill,0
1.06E+18,https://twitter.com/WeAreRLadies/status/1059521111023448064,"Also some ""explainers"" for gather below. Also in the github repo:https://t.co/iODPfjCZPu https://t.co/DZ4ZuA20E0",11/5/18,19:01,2018-11-05 19:01 +0000,3380,384,0.113609467,7,1,28,11/5/18,11/10/18,Alison Hill,apreshill,0
1.05952E+18,https://twitter.com/WeAreRLadies/status/1059520693857996800,"I've been hearing lots of feelings about #rstats tidyr::gather. Here is my attempt! Using data from #GBBO junior bakeoff: https://t.co/oXj6C6Wr5FSee github repo here:https://t.co/iODPfjCZPu https://t.co/Wit1me9sMx",11/5/18,18:59,2018-11-05 18:59 +0000,52633,2062,0.039176942,128,10,460,11/5/18,11/10/18,Alison Hill,apreshill,0
1.05944E+18,https://twitter.com/WeAreRLadies/status/1059435501336154117,"Good morning from the Pacific Coast #RLadies! I am Alison (@apreshill), and I'm really excited for this week. Today, I'm talking about ""Big Magic with R"" at OSU in Corvallis. Then, off to Boston for an @rstudio education team work day. Lots of #rstats to share, but first, ‰÷¥•ü!",11/5/18,13:21,2018-11-05 13:21 +0000,2726,64,0.023477623,1,0,30,11/5/18,11/10/18,Alison Hill,apreshill,0
1.05879E+18,https://twitter.com/WeAreRLadies/status/1058789026734342144,‰÷¥•üI love the Code and Coffee East Bay Meetup Group community. I always look forward to checking in with other #RLadies and #PyLadies on Saturdays.,11/3/18,18:32,2018-11-03 18:32 +0000,2360,29,0.012288136,1,1,8,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05838E+18,https://twitter.com/WeAreRLadies/status/1058376755700875265,It's Friday! Let's celebrate some wins. What did you accomplish this week? No achievement is too small to share. Also check out @lara_hogan's donut manifesto _Ù©for the importance of marking progress: https://t.co/T2haCYBqv3,11/2/18,15:14,2018-11-02 15:14 +0000,15997,215,0.01344002,8,7,29,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05838E+18,https://twitter.com/WeAreRLadies/status/1058375663416012801,"@philmikejones I don't have a good answer for this beyond pointing you here: https://t.co/O1UNdWE6v5 Since this question has come up a lot, I'm thinking about switching my blog setup from blogdown to Radix and writing up what I see as pros/cons, similarities/differences. I'll keep you posted.",11/2/18,15:09,2018-11-02 15:09 +0000,150,6,0.04,0,1,0,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05837E+18,https://twitter.com/WeAreRLadies/status/1058374204825817088,"@WintermeW Definitely a good option, especially for more complicated analyses that you want to share. I just learned you can even turn notebooks into blog posts: https://t.co/25xeaeZ3VT",11/2/18,15:04,2018-11-02 15:04 +0000,122,1,0.008196721,0,0,0,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05812E+18,https://twitter.com/WeAreRLadies/status/1058121725127274496,"If you want to get hands-on experience communicating science/statistics to a broader audience, @AmstatNews sponsors a student for this opportunity to work as a science journalist. You still have time to apply; the deadline is 1/15. https://t.co/MVvlo6pt3Q",11/1/18,22:20,2018-11-01 22:20 +0000,2171,13,0.005988024,3,0,4,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05812E+18,https://twitter.com/WeAreRLadies/status/1058119215163424774,@joel_nitta My impression is that it allows for more formatting flexibility and is designed with technical content in mind. Plus it is a shiny new tool. _ÙÎÙ_Ù÷ More info here: https://t.co/O1UNdWE6v5,11/1/18,22:10,2018-11-01 22:10 +0000,175,9,0.051428571,0,0,1,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05806E+18,https://twitter.com/WeAreRLadies/status/1058060931412852736,"Here is another blog setup option from @rlbarter https://t.co/gYDDlLcJbD While you are on her blog, check out her other posts for some data viz inspiration.",11/1/18,18:19,2018-11-01 18:19 +0000,1196,23,0.019230769,0,0,4,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.06E+18,https://twitter.com/WeAreRLadies/status/1058016056382377984,"@patriloto @ma_salmon Yes!! There are so many good ones to choose from, but I especially love the Galentine's Day post: https://t.co/FQZPnrFjWo Some days we just all need a little Leslie Knope cheer in our lives.",11/1/18,15:20,2018-11-01 15:20 +0000,519,15,0.028901734,1,1,1,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.05801E+18,https://twitter.com/WeAreRLadies/status/1058013171334578177,How do you communicate your #rstats work? I started a blog & recently got fancier thanks to: https://t.co/FsbUOfI1dF. My next goal is to switch to radix: https://t.co/nWQNwGFfL0. Send me #rstats blog posts (yours or others') that you find especially clear/helpful/fun.,11/1/18,15:09,2018-11-01 15:09 +0000,17004,462,0.027170078,15,5,66,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.06E+18,https://twitter.com/WeAreRLadies/status/1057800782521688064,Has anyone been in this boat? I imagine that masters programs in data science/applied stats have a wide range of levels of quantitative background assumed for incoming students. Any leads on programs that would be a good fit? https://t.co/KFZyfJ2NuW,11/1/18,1:05,2018-11-01 01:05 +0000,3816,28,0.007337526,1,4,6,10/29/18,11/3/18,Sara Stoudt,sastoudt,1
1.0766E+18,https://twitter.com/WeAreRLadies/status/1076598112116981760,Thank you @Nujcharee for a wonderful curation week! #RLadies,12/22/18,21:59,2018-12-22 21:59 +0000,3508,38,0.010832383,0,1,15,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.0764E+18,https://twitter.com/WeAreRLadies/status/1076404405291896832,https://t.co/BtLOSl61Oz,12/22/18,9:09,2018-12-22 09:09 +0000,2229,3,0.001345895,0,0,2,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07621E+18,https://twitter.com/WeAreRLadies/status/1076208150821433344,"Faces of #rstats, @WeAreRLadiesfollowers in 2018. I followed this tutorial by @ma_salmon. Enjoy your holiday - good night https://t.co/gw0IwIE4La https://t.co/SoCgF7PZ07",12/21/18,20:09,2018-12-21 20:09 +0000,9490,264,0.027818757,6,0,33,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07616E+18,https://twitter.com/WeAreRLadies/status/1076161030512873475,"Exploring the structure of human smuggling networkshttps://t.co/7Uq94WZi0B",12/21/18,17:02,2018-12-21 17:02 +0000,2166,8,0.003693444,1,0,2,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.0761E+18,https://twitter.com/WeAreRLadies/status/1076100552377991168,#DiversityInTech https://t.co/IsQQNCN1iH,12/21/18,13:02,2018-12-21 13:02 +0000,1962,5,0.00254842,0,0,1,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.0761E+18,https://twitter.com/WeAreRLadies/status/1076098269435101185,@KimmyKy2 Interesting! Share us your blog please :),12/21/18,12:53,2018-12-21 12:53 +0000,90,3,0.033333333,0,1,0,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.08E+18,https://twitter.com/WeAreRLadies/status/1076082822585176064,"Happy Friday! We almost say goodbye to 2018, what have you done this year that make you proud? R projects / blogs, first time speakers, writing R packages. Plz RT and share your story :) As for me, im excited to form a R study at my work, hope the group continue to grow in ‰Û÷19!",12/21/18,11:51,2018-12-21 11:51 +0000,2586,23,0.008894045,0,1,11,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07586E+18,https://twitter.com/WeAreRLadies/status/1075856191564206090,"This ImageNet classifier is awesome! I wont post my result tho but lets say I am a sombrero - must be my bad hair day!https://t.co/wKXPlvIiOI @NicholasStrayer #DeepLearning #Keras https://t.co/4j6oQLts7F",12/20/18,20:51,2018-12-20 20:51 +0000,2656,88,0.03313253,1,0,7,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07573E+18,https://twitter.com/WeAreRLadies/status/1075726982996987904,"Fun with minecraft - Teach kids about R with Minecraft.package: #mineralshttps://t.co/7AruQIHhAu",12/20/18,12:17,2018-12-20 12:17 +0000,5297,175,0.033037568,9,2,52,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.0757E+18,https://twitter.com/WeAreRLadies/status/1075696906003775489,"Are you into board game? If so this certainly looks fun!Settlers of Catan - the random generatorhttps://t.co/YhMPrj36b7#catan #magick #shiny",12/20/18,10:18,2018-12-20 10:18 +0000,5842,125,0.021396782,10,2,18,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.0757E+18,https://twitter.com/WeAreRLadies/status/1075696125099823104,"Happy Thursday everyone! 2018 soon will be over but there's time to learn new #rstats skills to combine my hex stickers with magic(k)! Tutorial by @ma_salmonhttps://t.co/wsBqzkKeHxpackage: magick",12/20/18,10:15,2018-12-20 10:15 +0000,2923,49,0.016763599,2,1,6,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07545E+18,https://twitter.com/WeAreRLadies/status/1075450652598378501,"TUTORIAL - learn graph + Neo4j then lets Kahoot! Package: #Rneo4j #igraph #visNetworkhttps://t.co/YYfcRVBw3S by @Chucheria https://t.co/rmSTubrdf6",12/19/18,17:59,2018-12-19 17:59 +0000,2170,98,0.04516129,0,2,7,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07544E+18,https://twitter.com/WeAreRLadies/status/1075436181364662272,"TUTORIAL: Since mentioning #rstats #communities earlier today, it seems natural to think about social network analysis to detect community.Create your collaborator network in R Package: #qgraphhttps://t.co/jwmkgC7k6r https://t.co/WhgeeBbWVZ",12/19/18,17:02,2018-12-19 17:02 +0000,3546,148,0.041737169,7,0,23,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07541E+18,https://twitter.com/WeAreRLadies/status/1075408104056127488,"If you haven‰Ûªt already joined R communities here is the link to sign up https://t.co/C5ISVkqxL7",12/19/18,15:10,2018-12-19 15:10 +0000,2322,47,0.020241171,3,0,7,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07537E+18,https://twitter.com/WeAreRLadies/status/1075371756293099520,"One thing I took away from attending the Datanaut kick off event in DC. Thank you @brianavecchionehttps://t.co/SBQUOBEIcUNow I have 3 people and many more that help me learn and solve problems using #rstats :)",12/19/18,12:46,2018-12-19 12:46 +0000,2879,41,0.014241056,2,1,11,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07537E+18,https://twitter.com/WeAreRLadies/status/1075370915150684162,"When I started learning R I travelled to London, 3 hrs on train to attend London chapter meetups. I‰Ûªve learned a lot from live demo and met lovely people. In 2017 I was really excited to be a member of #NASADatanauts @openNASA where I met many people that continue to inspire me.",12/19/18,12:43,2018-12-19 12:43 +0000,2778,67,0.024118071,2,1,22,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07537E+18,https://twitter.com/WeAreRLadies/status/1075365405273800705,Happy Wednesday! Sorry I‰Ûªm wee bit late with tweet today. Thanks for joining me. Today #rstats I would like to dedicate to importance of #opensource and learning together #communities.,12/19/18,12:21,2018-12-19 12:21 +0000,1721,9,0.005229518,0,0,5,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07514E+18,https://twitter.com/WeAreRLadies/status/1075141840108695552,"Last tweet on Music & Art for tonight. One of my favourite tableau artists @adamemccann used #rstats to convert every pixel of the Starry Night painting into an RGB value.https://t.co/G6tdIKjf8Y‰Û_Package: #EBImage https://t.co/tm3qEB0U1X",12/18/18,21:32,2018-12-18 21:32 +0000,2098,70,0.03336511,1,1,6,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07513E+18,https://twitter.com/WeAreRLadies/status/1075132875832475649,"Drawing: Appreciate Art & Math? This lovely package #mathart is handy to create mathematical art with #rstatshttps://t.co/LflvrM1KRm https://t.co/TKDhVWIVM3",12/18/18,20:57,2018-12-18 20:57 +0000,9955,691,0.069412356,34,2,122,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07513E+18,https://twitter.com/WeAreRLadies/status/1075128115494641666,"Drawing with #shiny #rstatshttps://t.co/eMwmdUKZ8p",12/18/18,20:38,2018-12-18 20:38 +0000,2826,18,0.006369427,2,0,12,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07507E+18,https://twitter.com/WeAreRLadies/status/1075074535513317377,"Sound Analysis: Spectrograms visualise how frequencies change over a time period https://t.co/K1os8HYRwA via @Rbloggerspackages: #seewave, #ggplot2",12/18/18,17:05,2018-12-18 17:05 +0000,1593,51,0.032015066,2,0,8,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07506E+18,https://twitter.com/WeAreRLadies/status/1075057277097443329,"Music Visualizations using MIDI, R, and SVGhttps://t.co/bNz6qPFANNpackages: #tuneR",12/18/18,15:56,2018-12-18 15:56 +0000,1641,45,0.027422303,1,1,8,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07501E+18,https://twitter.com/WeAreRLadies/status/1075009163149893632,"AUDIO: Play Happy Birthday note using #rstatshttps://t.co/MkmGzDdbWaPackage: audio",12/18/18,12:45,2018-12-18 12:45 +0000,1389,25,0.01799856,1,0,2,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07501E+18,https://twitter.com/WeAreRLadies/status/1075008325056716800,"MUSIC: Can you visualise music? Yes you can!https://t.co/7pG2f0gt3aPackage: #spotifyR",12/18/18,12:42,2018-12-18 12:42 +0000,2825,27,0.009557522,2,0,14,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.075E+18,https://twitter.com/WeAreRLadies/status/1074996556078682113,"MUSIC: Feeling musical today? Check this blog out by @_RCharlie Music, Cluster Analysis + PCA all in one bloghttps://t.co/YMULzkpie1Packages: #NbClust, #Shiny, #threejs https://t.co/3kO6coMbgh",12/18/18,11:55,2018-12-18 11:55 +0000,2229,43,0.019291162,3,0,9,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1074790491479252993,SUMMARY: Thanks for staying with me. Tomorrow I will tweet about Music & Art with R. Time for bedtime story with my little man. Goodnight everyone :) (2/2),12/17/18,22:16,2018-12-17 22:16 +0000,2570,32,0.012451362,0,0,9,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07479E+18,https://twitter.com/WeAreRLadies/status/1074789943799676928,"SUMMARY: So last tweet from your curator for tonight. Today we learned about text mining packages tidytext, sentimentr. We can use this for:* Sentiment Analysis* Topic Modelling* Words Association* Text Classifierand many more, do you have more to add to the list? (1/2)",12/17/18,22:14,2018-12-17 22:14 +0000,2352,40,0.017006803,1,1,9,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07478E+18,https://twitter.com/WeAreRLadies/status/1074779047354384385,Tips for Diversity Scholarships https://t.co/5ftBrV2Sae #event #userR2019 #scholarship #Diversity https://t.co/vrFGt9nB7J,12/17/18,21:31,2018-12-17 21:31 +0000,4907,40,0.00815162,7,0,9,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07478E+18,https://twitter.com/WeAreRLadies/status/1074778164545683458,Something to look forward to in the new year! Opportunities to network with like minded #rstats folks https://t.co/l8dcaoSqNt,12/17/18,21:27,2018-12-17 21:27 +0000,1948,13,0.006673511,0,0,2,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1074749884748759040,"""Do valence shifters really matter?"" Another #nlp #textmining package that takes into account ake into account valence shifters https://t.co/lEXPzRc9cf",12/17/18,19:35,2018-12-17 19:35 +0000,2088,13,0.006226054,0,0,7,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07474E+18,https://twitter.com/WeAreRLadies/status/1074738625697460224,#tidytext blogs that I like https://t.co/UzcIOZP2Ic by @astroeringrand and https://t.co/SqYepPejuv by @d4tagirl,12/17/18,18:50,2018-12-17 18:50 +0000,5273,88,0.016688792,5,2,14,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07473E+18,https://twitter.com/WeAreRLadies/status/1074733106366681091,@S_Owla Shiny! I agree its interactivity engages the end users!,12/17/18,18:28,2018-12-17 18:28 +0000,111,4,0.036036036,0,1,1,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07473E+18,https://twitter.com/WeAreRLadies/status/1074732704221069313,"@akon_bol I started my data career using SQL. When I first learned R, Ive found tidyverse and dplyr really user friendly, very similar grammar in my opinion. Interesting about forecast package too. I recently came across https://t.co/ZgelJFYtbT Ive found it powerful :)",12/17/18,18:26,2018-12-17 18:26 +0000,84,5,0.05952381,0,0,1,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07473E+18,https://twitter.com/WeAreRLadies/status/1074731712335220736,@kitkatbar429 Basic chart but very important step for data exploratory analysis for sure! Have you come across DataExplorer package? It gives you overview of your dataset - https://t.co/XbTxQdG9iW,12/17/18,18:23,2018-12-17 18:23 +0000,113,4,0.03539823,0,0,1,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07E+18,https://twitter.com/WeAreRLadies/status/1074712090013822976,"Babynames on CRAN comes in handy when I wanted to remove names people names from my dataset during text ming process. https://t.co/zkzXrbe6mh",12/17/18,17:05,2018-12-17 17:05 +0000,4011,111,0.027673897,3,1,21,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07463E+18,https://twitter.com/WeAreRLadies/status/1074634948311740416,"INTRO: I put together a slide on tidytext which I presented at #satRDayCardiff https://t.co/dtiDzIKPGbHope you enjoy learning this library - I did! :)",12/17/18,11:58,2018-12-17 11:58 +0000,1943,30,0.015440041,2,0,6,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07463E+18,https://twitter.com/WeAreRLadies/status/1074634528214405120,"INTRO: I use #tidytext to analyse Health and Social Care service users case notes in order to better understand their needs. Its the 1st R library that I learned. How about you? Whats your 1st lesson on R and what do you use it for? Please RT and share your story :)",12/17/18,11:56,2018-12-17 11:56 +0000,4223,72,0.017049491,2,4,20,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07463E+18,https://twitter.com/WeAreRLadies/status/1074632632556773376,"1st tweet, I would like to thank the previous curators. Here they are @dataandme@LucyStats@JuliaSilge@dpseidel@kaelen_medeiros@SuzanBaert@sinarueeger@drscranto@alycolumbus@CivicAngela@sastoudt@apreshill@nic_crane@minebocek@CVWickham",12/17/18,11:49,2018-12-17 11:49 +0000,8155,516,0.063274065,8,0,51,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07463E+18,https://twitter.com/WeAreRLadies/status/1074632188111581184,I will be your curator this week. Please join me to learn and share R skills together! (2/2),12/17/18,11:47,2018-12-17 11:47 +0000,1304,17,0.01303681,0,0,6,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07463E+18,https://twitter.com/WeAreRLadies/status/1074631921265729537,"Hello all, I am Nujcharee (Ped), I am a data & intelligence specialist / data scientist for @northyorkcc, a local government based in North Yorkshire, UK. I have background in #BusinessIntelligence #datawarehouse. I use #powerBI and #rstats together to solve problems. (1/2)",12/17/18,11:46,2018-12-17 11:46 +0000,6447,116,0.017992865,5,0,45,12/17/18,12/22/18,Nujcharee Haswell,nujcharee,0
1.07032E+18,https://twitter.com/WeAreRLadies/status/1070324679712358401,"@therupozhudi The curator tweets about all things R from our twitter account (i.e. Curates our twitter feed!) because we are a rotating curation account, a new person tweets from this account each week.",12/5/18,14:31,2018-12-05 14:31 +0000,229,2,0.008733624,0,0,0,12/3/18,12/8/18,BREAK,BREAK,NA
1.07019E+18,https://twitter.com/WeAreRLadies/status/1070193314241146881,@MaryELennon You're on the schedule!! _Ù÷Ä,12/5/18,5:49,2018-12-05 05:49 +0000,422,1,0.002369668,0,0,0,12/3/18,12/8/18,BREAK,BREAK,NA
1.0701E+18,https://twitter.com/WeAreRLadies/status/1070098159785926656,"@EmmaVitz Hi Emma! This refers to your institutional affiliation (e.g., The company you work for)",12/4/18,23:30,2018-12-04 23:30 +0000,313,2,0.006389776,0,1,1,12/3/18,12/8/18,BREAK,BREAK,NA
1.06957E+18,https://twitter.com/WeAreRLadies/status/1069569440642084864,"We're taking a hiatus this week. In the meantime:1•ü‰Ä£Sign up to be a curator in 2019! All #RLadies (regardless of #rstats or Twitter experience) are welcome! https://t.co/1i0m5brf3c 2•ü‰Ä£Follow our curator list! You can see all past curators on one feed: https://t.co/zseYuUdlIO",12/3/18,12:30,2018-12-03 12:30 +0000,17330,399,0.023023658,16,3,42,12/3/18,12/8/18,BREAK,BREAK,NA
1.0911E+18,https://twitter.com/WeAreRLadies/status/1091098151392407552,"The good thing about leaflet is that you have a base map that shows geospatial features & allows panning around and zooming in and out. This makes it easier to get an idea of the surrounding area, and whether you've achieved whatever you were trying to do.",1/31/19,22:17,2019-01-31 22:17 +0000,2100,27,0.012857143,1,1,3,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1091094593163091968,"The syntax of the leaflet package will feel familiar to those of you who use pipes. It also resembles ggplot in that you add successive layers:leaflet() %>% addTiles(., ) %>% addPolygons(., data = polygon) %>% addMarkers(., data = points) %>% addPolylines(., data = line) https://t.co/9jJ58ahDe5",1/31/19,22:03,2019-01-31 22:03 +0000,2601,58,0.022299116,1,1,6,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09109E+18,https://twitter.com/WeAreRLadies/status/1091092237310541824,"The 3rd package I want to mention is leaflet, which is used for visualisation.This is a key part of checking whether something has worked. Here we plotted points we identified as cul-de-sacs using leaflet. You can see we've missed cul-de-sacs with roundabouts on them (in red) https://t.co/Qf9gbCnHnH",1/31/19,21:53,2019-01-31 21:53 +0000,3689,156,0.042287883,4,1,12,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1091090184303570944,"This is basic stuff, but it often forms the foundation of some pretty cool geospatial work. We've calculated many metrics for home insurance using these. e.g. Distance to main road, number of access points that a dwelling has, how far dwellings are from fire stations, etc.",1/31/19,21:45,2019-01-31 21:45 +0000,2129,22,0.01033349,1,1,7,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09109E+18,https://twitter.com/WeAreRLadies/status/1091088810073440256,"Once you've got your spatial data & it's in right projection, what kind of stuff might you want to do with it?The rgeos package allows you to:- Add a buffer to something- Calculate distances between objects- Test whether 2 things intersect- Find the centre of something",1/31/19,21:40,2019-01-31 21:40 +0000,4882,101,0.020688243,6,3,37,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09107E+18,https://twitter.com/WeAreRLadies/status/1091071409168609280,"I have to duck out for a meeting, but when I'm back, I'd like to talk about a couple of other packages I use for geospatial work",1/31/19,20:31,2019-01-31 20:31 +0000,2179,23,0.010555301,0,2,5,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09107E+18,https://twitter.com/WeAreRLadies/status/1091070628382224390,"The unit of measurement for projected coordinate systems is typically meters, while latitude-longitude projections use degrees. A lot of problems in geospatial work comes from objects having different / the wrong projections. I always check this first!",1/31/19,20:28,2019-01-31 20:28 +0000,2732,28,0.010248902,2,1,12,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09107E+18,https://twitter.com/WeAreRLadies/status/1091069767992012800,"Spatial projections differ in how things are measured, and how we translate a 3D globe into 2D. Geographic projections measure coordinates from the center of the earth, while planimetric ones project the earths coordinates onto a 2D surface.",1/31/19,20:24,2019-01-31 20:24 +0000,1516,11,0.007255937,0,1,3,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09107E+18,https://twitter.com/WeAreRLadies/status/1091067303884513280,"The sp package allows you to create spatial objects and transform their projections. Projections are very important in spatial work! They define how something is located and shown within space. (I find this a difficult concept to explain - anyone got a better definition?)",1/31/19,20:14,2019-01-31 20:14 +0000,2030,33,0.016256158,2,5,4,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09107E+18,https://twitter.com/WeAreRLadies/status/1091065084569243650,"You can also create spatial objects from text data. For example, you can take a csv of latitude and longitude of dwellings and create SpatialPoints using the package sp. This package also allows you to work with SpatialPolygons and SpatialLines. https://t.co/m2FDJXUPGW",1/31/19,20:06,2019-01-31 20:06 +0000,2171,79,0.036388761,2,4,11,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09106E+18,https://twitter.com/WeAreRLadies/status/1091063529875005440,"Raster data is made up of pixels or cells, each of which has an associated value. I use rasters of elevation like this LiDAR of Auckland, which captures the elevation at an accuracy of 1 m squared. https://t.co/zhgMZbZSh8",1/31/19,19:59,2019-01-31 19:59 +0000,1841,73,0.039652363,0,1,13,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09106E+18,https://twitter.com/WeAreRLadies/status/1091063188576034816,"Spatial data comes in different forms from your typical text data. Shapefiles are a form of vector data that usually show you the boundaries of a polygon. For example, I use shapefiles of the regional councils and postcodes that make up NZ. https://t.co/Lzb2Ygwmrv",1/31/19,19:58,2019-01-31 19:58 +0000,1635,90,0.055045872,0,1,4,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1091060773818839040,"I do quite a lot of geospatial work to predict natural perils like flood and storm in New Zealand. This involves things like extracting the elevation of dwellings, calculating the distance between dwellings and rivers and the coast, etc.",1/31/19,19:48,2019-01-31 19:48 +0000,1712,25,0.014602804,0,1,11,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09106E+18,https://twitter.com/WeAreRLadies/status/1091059355183534083,"Today I'd like to talk about some of the geospatial work I do in R in a bit more detail, and hopefully also get your input on areas where I don't know as much. (And yes I am convinced this will be my only useful skill in the case of an apocalypse _Ù÷ ) https://t.co/QEWSj1kr0W",1/31/19,19:43,2019-01-31 19:43 +0000,10096,917,0.090828051,18,3,93,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09079E+18,https://twitter.com/WeAreRLadies/status/1090793404961681408,@KapurMaia I always find regex really tricky as well. It never works the first time _Ù÷_,1/31/19,2:06,2019-01-31 02:06 +0000,1036,13,0.012548263,0,1,4,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09079E+18,https://twitter.com/WeAreRLadies/status/1090793140632440832,"@data_stephanie Thank you! If you have more thoughts on when they should / shouldn't be used in R, I'd be keen to hear them.",1/31/19,2:05,2019-01-31 02:05 +0000,1089,8,0.007346189,0,2,5,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09079E+18,https://twitter.com/WeAreRLadies/status/1090792707163746304,@DaniMRodz I definitely have this issue as well. I find it difficult to visualise the transformation in my mind and have to always look up examples.,1/31/19,2:03,2019-01-31 02:03 +0000,957,5,0.00522466,0,1,2,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09078E+18,https://twitter.com/WeAreRLadies/status/1090784447933276160,"What's something relatively basic that you still struggle with in R? One of mine is avoiding for loops. I know they are the devil but I still feel like I haven't fully mastered the alternatives.",1/31/19,1:30,2019-01-31 01:30 +0000,16516,484,0.029304916,10,47,165,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1090773597591810049,@DewiKoning It was very small - something that should probably also be communicated somehow :),1/31/19,0:47,2019-01-31 00:47 +0000,60,0,0,0,0,0,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.0907E+18,https://twitter.com/WeAreRLadies/status/1090699357773455360,"@cvibrt @Thoughtfulnz I haven't been able to work out a structure, but I'd be interested to hear from people who know the language better. That DIA data is what I added to the most popular names dataset to try and get some M€ori names included _Ùªâ",1/30/19,19:52,2019-01-30 19:52 +0000,107,2,0.018691589,0,0,1,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.0907E+18,https://twitter.com/WeAreRLadies/status/1090698882684641280,"@DewiKoning I should have tried to order the graph by how they sit on the political spectrum. From top left: ACT is right, Green is left, JAPP was left, Labour is center-left, Mana & Maori I'm not sure, National is center-right, NZ First right-ish, and United Future was right.",1/30/19,19:50,2019-01-30 19:50 +0000,98,1,0.010204082,0,1,0,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09069E+18,https://twitter.com/WeAreRLadies/status/1090692177007566848,"Unlike the US, NZ doesn't have a 2 party system. We have several smaller parties too. This makes it harder to plot nicely in ggplot (you tend to run out of colours...) This is probably some insider baseball for #nzpol but here we have the gender split of all the parties over time https://t.co/Cnel3CfuOC",1/30/19,19:24,2019-01-30 19:24 +0000,2086,83,0.03978907,0,2,3,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09069E+18,https://twitter.com/WeAreRLadies/status/1090691137155678208,"Looking at the 2 major parties in NZ, we can see that both have fewer women than men. The center-right party (National, in blue) had very few women in the 1990s but this has increased a bit in recent years. Now it is only slightly behind the center left party (Labour, in red) https://t.co/tyaEp6wLQv",1/30/19,19:20,2019-01-30 19:20 +0000,2039,34,0.016674841,0,1,4,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1090689961177767936,"@yiqinfu Nope, not explicitly.",1/30/19,19:15,2019-01-30 19:15 +0000,79,2,0.025316456,0,0,1,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1090689655249367040,"Now that I've dragged my gender classification algorithm through the mud in my last thread, here are some pretty pictures of the gender split of the New Zealand parliament over time! Overall: Not great in terms of representation of women! But getting slightly better over time. https://t.co/GdWgYxXkHK",1/30/19,19:14,2019-01-30 19:14 +0000,2590,109,0.042084942,1,2,6,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09069E+18,https://twitter.com/WeAreRLadies/status/1090688420144279552,"The feature problem is harder to solve (ideas welcome!) But I guess all this is to say that1. Algorithms can be biased, and often this reflects human biases against minority groups2. Training data & feature selection are super important!",1/30/19,19:09,2019-01-30 19:09 +0000,1671,15,0.008976661,0,1,4,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09069E+18,https://twitter.com/WeAreRLadies/status/1090687028121952257,"For the revamp in R, I‰Ûªm using data from the Auckland marathon as my training set. It‰Ûªs classified by gender and has a much wider range of names in it (although there are still biases - for example, more men participate in the marathon than women, so I also included the 5k data)",1/30/19,19:03,2019-01-30 19:03 +0000,1884,19,0.010084926,1,2,6,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09069E+18,https://twitter.com/WeAreRLadies/status/1090686446187335680,"I used the 100 most common baby names of babies born in NZ going back to 1950. It doesn‰Ûªt include people who immigrated here & a name has to be pretty common to make the list. I also added in the most common M€ori names, but these lists are shorter & don't go back as far https://t.co/wq1mmaAoKO",1/30/19,19:01,2019-01-30 19:01 +0000,1160,37,0.031896552,0,1,2,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09069E+18,https://twitter.com/WeAreRLadies/status/1090685340413616128,"I think the problem is twofold: My training data was biased towards English names & the features reflect an English way of specifying gender (Male names in English tend to end in a consonant, while female names tend to end in vowels - but this doesn't hold across other languages)",1/30/19,18:57,2019-01-30 18:57 +0000,1011,8,0.007912957,0,1,2,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09068E+18,https://twitter.com/WeAreRLadies/status/1090684481764114432,"The algorithm does a pretty OK job, but not great. It does particularly badly on predicting the gender of names from certain ethnicities, i.e not English names. I took a closer look at M€ori (indigenous NZ) names and found that it didn‰Ûªt really understand male M€ori names at all. https://t.co/Bb658WKDha",1/30/19,18:53,2019-01-30 18:53 +0000,1137,46,0.040457344,0,1,5,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09068E+18,https://twitter.com/WeAreRLadies/status/1090682660689563648,"So I used a gender classification algorithm I wrote a while back. It‰Ûªs currently in python, but I am working on rewriting and improving it in R. Basically it takes the last letter and last 2 letters of the first name as features & predicts gender based on that.",1/30/19,18:46,2019-01-30 18:46 +0000,1157,14,0.012100259,0,2,4,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1090682192966017024,"This gave me the names and party affiliations of the Members of Parliament, but not their gender. Often we can tell from their first name, but manually classifying almost 1000 names by gender doesn‰Ûªt sound like a data science way of doing things.",1/30/19,18:44,2019-01-30 18:44 +0000,1066,6,0.005628518,0,1,0,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09068E+18,https://twitter.com/WeAreRLadies/status/1090681688881909760,"As you will know if you've delved into scraping wikipedia, the pages can be formatted very differently, which makes scraping a bit of a manual process _Ù÷ but we got there in the end!",1/30/19,18:42,2019-01-30 18:42 +0000,931,5,0.005370569,0,1,2,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09068E+18,https://twitter.com/WeAreRLadies/status/1090681256193384448,"To do that, I would need data on the members of the NZ parliament over time, including their gender. I couldn't find that in a ready format, so I took to scraping the wikipedia pages for each parliament using the package rvest.",1/30/19,18:40,2019-01-30 18:40 +0000,907,3,0.003307607,0,1,0,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09068E+18,https://twitter.com/WeAreRLadies/status/1090680506377588736,"Do you ever see a visualisation & want to recreate it? One visualisation I wanted to recreate with a New Zealand context was this plot from FiveThirtyEight, which shows how the gender split in the US Congress has changed over time. https://t.co/DSSSj4L63f",1/30/19,18:37,2019-01-30 18:37 +0000,3998,251,0.062781391,0,3,27,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09042E+18,https://twitter.com/WeAreRLadies/status/1090417059106701312,Fellow data table enthusiasts - I know that there are at least a couple of you out there! Have I missed anything (without diving into the DT syntax)?,1/30/19,1:11,2019-01-30 01:11 +0000,2919,69,0.023638232,1,6,10,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09042E+18,https://twitter.com/WeAreRLadies/status/1090416344531521536,"Melt and dcast are faster ways of reshaping data (the equivalent of gather & spread). To take advantage of data tables fast joins, you can use setkey and then merge on that key.",1/30/19,1:08,2019-01-30 01:08 +0000,2913,31,0.01064195,1,1,12,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09041E+18,https://twitter.com/WeAreRLadies/status/1090414727681826816,"This sounds trivial, but data table prints out the top & bottom 5 rows when you run the name of the data table. Not only does this save you from using head or tail, it also stops R from crashing when it tries to print out a couple of million rows. https://t.co/1dJVro9GSI",1/30/19,1:01,2019-01-30 01:01 +0000,1947,114,0.058551618,2,2,17,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09041E+18,https://twitter.com/WeAreRLadies/status/1090413935956619264,The functions fwrite and fread are super fast ways of reading in / writing to csv. Here is a comparison of reading in just over 2 million rows. https://t.co/4a45Ydi2Id,1/30/19,0:58,2019-01-30 00:58 +0000,2356,269,0.11417657,3,1,18,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09041E+18,https://twitter.com/WeAreRLadies/status/1090413405331017728,"Earlier today I talked about data table and why you might want to use it for data manipulation instead of dplyr. If you're not sold on the idea, I thought I'd mention some helpful data table features you can use without learning the data table syntax",1/30/19,0:56,2019-01-30 00:56 +0000,11719,192,0.01638365,9,3,48,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09034E+18,https://twitter.com/WeAreRLadies/status/1090344661716107264,"@marcelomuzzi Nope, unfortunately I don't & I'm not sure it's possible. When I talk about geospatial data in the context of using DT I mean text delimited data (e.g. csvs of dwellings) that is manipulated in DT before being turned into a spatial object. After that I don't use DT anymore.",1/29/19,20:23,2019-01-29 20:23 +0000,77,2,0.025974026,0,1,0,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09034E+18,https://twitter.com/WeAreRLadies/status/1090343986793861125,@ellis2013nz That's a good point - we really should be using a database but that's kind of a company IT limitation / issue so this is one way of dealing with it in the meantime,1/29/19,20:20,2019-01-29 20:20 +0000,219,0,0,0,0,0,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1090339687728766977,"@oscar_b123 Not within data table syntax, I don't think. It is worth noting that data tables are also data frames though, so you can do anything you can do with a dataframe to them. So it is possible to use them both, although I'd advise against mashing it up too much to avoid confusion",1/29/19,20:03,2019-01-29 20:03 +0000,255,4,0.015686275,0,1,1,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09034E+18,https://twitter.com/WeAreRLadies/status/1090339167681167360,@MilesMcBain Fair enough. I did learn SQL before R so my mind is kind of used to that way of thinking.,1/29/19,20:01,2019-01-29 20:01 +0000,413,2,0.004842615,0,0,0,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09034E+18,https://twitter.com/WeAreRLadies/status/1090338941905948672,"@TimSalabim3 This is a really good point! As far as I know, you can't use data table on the data within a spatial object. It frustrates me _Ù÷ but if I'm reading in data & doing stuff with it before turning it into a spatial object, I will use data table.",1/29/19,20:00,2019-01-29 20:00 +0000,484,3,0.006198347,0,3,0,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09033E+18,https://twitter.com/WeAreRLadies/status/1090326430309728256,"If you're a dplyr fan, why is that? I'm going to duck out and do some work for a bit, but I'd love to know what you like about it _Ù÷Û And do you ever run into issues with speed?",1/29/19,19:10,2019-01-29 19:10 +0000,4153,120,0.028894775,0,8,8,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1090325704871297024,"@the_engi_nerd I use data table, and because I'm used to it & like its other features, I use it even on small datasets. In terms of text data (i.e. not shapefiles etc), I would get up to several million rows. E.g. NSW in Australia has 7.5 million people - we might deal with the state in one go",1/29/19,19:07,2019-01-29 19:07 +0000,424,3,0.007075472,0,0,1,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09032E+18,https://twitter.com/WeAreRLadies/status/1090324785811271680,"If your datasets are pretty big, this will literally save you hours. Geospatial data is often really big - even little old New Zealand has over 2 million dwellings. Reading that in & manipulating it is so much faster using data table.",1/29/19,19:04,2019-01-29 19:04 +0000,4481,91,0.020307967,3,3,14,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09032E+18,https://twitter.com/WeAreRLadies/status/1090323994383773697,"Using dataframes (and dplyr) is basically the equivalent of moving the entire house to the building site in order to add on a single room. Because of that, it‰Ûªs slow. Data table, on the other hand, adds the room on where the house already exists.",1/29/19,19:01,2019-01-29 19:01 +0000,3013,72,0.023896449,2,2,14,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09032E+18,https://twitter.com/WeAreRLadies/status/1090323290659348480,"Data table, on the other hand, uses a pass-by-reference approach, which means if a function internally changes something, the object outside is also changed, since you didn't pass it a copy, but a pointer to the real thing.",1/29/19,18:58,2019-01-29 18:58 +0000,2797,30,0.010725778,1,2,8,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1090322834033790976,"@el_abstemio Data table, but I also don't like to be too prescriptive - if you know dplyr really well and don't work with very big datasets, it probably works for you. I'd be keen to hear why people prefer dplyr.",1/29/19,18:56,2019-01-29 18:56 +0000,459,7,0.015250545,0,1,3,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09032E+18,https://twitter.com/WeAreRLadies/status/1090322503233228800,Why is that? (I‰Ûªm not a computer scientist and I‰Ûªm sure some of you can explain this better). Dataframes are not changed when you pass them into a function - a copy is made and the copy is changed before being given back to you.,1/29/19,18:55,2019-01-29 18:55 +0000,2687,40,0.014886491,0,1,4,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09032E+18,https://twitter.com/WeAreRLadies/status/1090322094246641665,"@JimGrange I've heard this being mentioned before, and if you don't tend to work with very big datasets and you're used to dplyr, it might be reason to stick with it",1/29/19,18:53,2019-01-29 18:53 +0000,465,4,0.008602151,0,1,1,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09032E+18,https://twitter.com/WeAreRLadies/status/1090320849003925504,"Here we can see how data table compares to dplyr, pandas in python, and a bunch of other options when doing some basic operations on a big dataset. It‰Ûªs a lot faster! This is true for reading data in, adding columns, merging, reshaping, etc. https://t.co/HSXSod9fAR",1/29/19,18:48,2019-01-29 18:48 +0000,3509,457,0.130236535,6,4,26,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09032E+18,https://twitter.com/WeAreRLadies/status/1090318752418193408,"Dplyr seems hugely popular, especially on Twitter. But - controversial opinion here - I don‰Ûªt use it. The main reason being that it is sloowww and that starts to make a real difference when you‰Ûªre working with big datasets (which is often the case with geospatial data).",1/29/19,18:40,2019-01-29 18:40 +0000,6235,172,0.027586207,7,10,29,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09032E+18,https://twitter.com/WeAreRLadies/status/1090316768344588288,"One thing I'd like to talk about today is how you manipulate and reshape your data. Who here uses dplyr? Data table? Something else? (I don‰Ûªt think I can do a poll from TweetDeck, so here‰Ûªs my hacky solution to still get your opinions). https://t.co/4d7Xot7RBv",1/29/19,18:32,2019-01-29 18:32 +0000,11697,177,0.015132085,6,9,28,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09008E+18,https://twitter.com/WeAreRLadies/status/1090084358331875329,@KimmyKy2 Nice _Ù÷ã,1/29/19,3:08,2019-01-29 03:08 +0000,811,2,0.002466091,0,0,0,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09007E+18,https://twitter.com/WeAreRLadies/status/1090066030808846336,@NagolGnissol This is a very cool reason _Ù÷Û,1/29/19,1:56,2019-01-29 01:56 +0000,1133,3,0.002647838,0,1,0,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09007E+18,https://twitter.com/WeAreRLadies/status/1090065271430082560,@alouiseme I have a bit of a controversial take on dplyr (ie. I don't use it) which I want to talk about a bit more at some stage this week. I'll be interested to hear your thoughts! _Ùªâ,1/29/19,1:53,2019-01-29 01:53 +0000,1163,33,0.028374893,0,1,4,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09006E+18,https://twitter.com/WeAreRLadies/status/1090062311098802178,"I once helped run an R Training session and made everyone tell the group which package they would be if they had to be an R package and why, as an ice-breaker _Ù÷ So... which R package would you be, and why?",1/29/19,1:41,2019-01-29 01:41 +0000,18746,499,0.026619012,19,33,111,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09002E+18,https://twitter.com/WeAreRLadies/status/1090023516500443136,"We can extract the end point of each line & add a smaller buffer to those end points (done using the gBuffer function from rgeos). Now we can test whether each buffered end point intersects with any other end points. If it does - the road continues! If not, it‰Ûªs a cul-de-sac!",1/28/19,23:07,2019-01-28 23:07 +0000,2968,33,0.011118598,0,0,10,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09002E+18,https://twitter.com/WeAreRLadies/status/1090022933538295808,"We have every road in Australia as a Spatial Line (a type of spatial data that you can create & deal with using the sp package). Every time lines intersect, a new line starts. So at an intersection, you have 4 line segments coming together in the middle",1/28/19,23:04,2019-01-28 23:04 +0000,3001,15,0.004998334,0,1,3,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09002E+18,https://twitter.com/WeAreRLadies/status/1090020610699186176,"I really like doing this kind of stuff in R, because you have to think about things in a very different way than with most other types of analyses. Coming back to my example, how would you even begin to find every dwelling that‰Ûªs in a culdesac?",1/28/19,22:55,2019-01-28 22:55 +0000,2260,14,0.00619469,0,1,4,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09002E+18,https://twitter.com/WeAreRLadies/status/1090019418225008640,"For example, I found every house in Australia that‰Ûªs in a culdesac (Less people going through might reduce theft, but access for fire engines is harder and increases fire risk). Here‰Ûªs a quick screenshot of visual checks I did using the package leaflet to make sure it was working https://t.co/nVPn2rkHvw",1/28/19,22:50,2019-01-28 22:50 +0000,14223,866,0.060887295,8,1,31,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.09002E+18,https://twitter.com/WeAreRLadies/status/1090018252401520640,So - #rspatial work in insurance! Other than natural perils (which I will talk about at some point) it‰Ûªs also used to identify the features of individual dwellings that might impact their risk of things like burglary or malicious damage.,1/28/19,22:46,2019-01-28 22:46 +0000,5406,113,0.020902701,5,2,20,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.08997E+18,https://twitter.com/WeAreRLadies/status/1089967397706948608,"@EmmaVitz There are also some other really interesting applications of geospatial work in insurance. I should probably go and do some work (it's 8:30 am here), but I'll be back later to dive into some of that!",1/28/19,19:24,2019-01-28 19:24 +0000,2181,35,0.016047685,0,1,7,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.08997E+18,https://twitter.com/WeAreRLadies/status/1089966902342934528,"@yabellini @EmmaVitz I use data table and ggplot2 for pretty much everything, and then sp, rgeos and leaflet for the spatial stuff. I'm planning on talking about these in more detail at some point this week _Ù÷Û",1/28/19,19:22,2019-01-28 19:22 +0000,203,3,0.014778325,0,0,3,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.08997E+18,https://twitter.com/WeAreRLadies/status/1089966055252930562,"@cvibrt @EmmaVitz Yep, I do most of the geospatial stuff in R. I do some things in ArcMap & QGIS - mainly mapping to check things or to present work. I don't use any other languages at work, although I have written SQL and python in other jobs. Some people at work use SAS but I'm not a fan _Ù÷Ý",1/28/19,19:18,2019-01-28 19:18 +0000,141,7,0.04964539,0,1,1,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.08996E+18,https://twitter.com/WeAreRLadies/status/1089959265505136646,"@EmmaVitz About 50% of my time at work is spent using R (My favourite 50%!), although this varies a lot depending on what projects I‰Ûªm on. Right now, quite a big chunk of that is geospatial analysis. In an insurance context, this is used in perils work like predicting flood or storm risk.",1/28/19,18:51,2019-01-28 18:51 +0000,2770,35,0.012635379,0,4,11,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.08996E+18,https://twitter.com/WeAreRLadies/status/1089957350453067777,"@EmmaVitz A year on, I've learnt heaps. Like I said, we‰Ûªre an actuarial consulting company, which means we mainly work for insurance companies and help them assess risk. The consulting side of things means we‰Ûªre always working on lots of different projects, which I like a lot.",1/28/19,18:44,2019-01-28 18:44 +0000,2017,20,0.009915716,0,1,3,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.08995E+18,https://twitter.com/WeAreRLadies/status/1089954598645682176,"@EmmaVitz So when I started working a year ago, my R skills were a pretty mixed bag, as is common when you‰Ûªre mostly self-taught. I was good at some things, terrible at others (hi, writing neat code that can be reused easily!) & perhaps most importantly I didn‰Ûªt know what I didn‰Ûªt know.",1/28/19,18:33,2019-01-28 18:33 +0000,1918,23,0.011991658,0,1,6,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.08995E+18,https://twitter.com/WeAreRLadies/status/1089952783778734080,"@EmmaVitz This was really useful, but still didn‰Ûªt teach me a lot of stuff about working with real life data - getting hold of it, checking it, cleaning it and getting some kind of insight out of it. I did a couple of projects on the side to try & develop this.",1/28/19,18:26,2019-01-28 18:26 +0000,1857,19,0.010231556,0,1,6,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.08995E+18,https://twitter.com/WeAreRLadies/status/1089952076816248832,"@EmmaVitz I first used R as part of my degree at uni. However, the stuff we learnt was very specific to the course (eg I could plot an F-distribution with so-and-so many degrees of freedom, but didn‰Ûªt know how to clean data) so I also went and did courses on R through DataCamp on the side",1/28/19,18:23,2019-01-28 18:23 +0000,2408,42,0.01744186,1,1,8,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.08995E+18,https://twitter.com/WeAreRLadies/status/1089947288267411457,"Hi everyone, I‰Ûªm Emma! (Usually @EmmaVitz) I live in New Zealand & did a degree in Statistics. Now I work as actuarial analyst, which basically means I do risk analysis, mainly for insurance companies. I use R in my work a lot and also do some projects using R on the side _Ù_Ò _ÙÒö",1/28/19,18:04,2019-01-28 18:04 +0000,11325,461,0.040706402,8,3,92,1/28/19,2/2/19,Emma Vitz,EmmaVitz,0
1.08915E+18,https://twitter.com/WeAreRLadies/status/1089146934563094528,"@kitkatbar429 Everyday, all day!",1/26/19,13:03,2019-01-26 13:03 +0000,265,2,0.00754717,0,0,0,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08915E+18,https://twitter.com/WeAreRLadies/status/1089146738018000897,@k_tebbe Same!,1/26/19,13:03,2019-01-26 13:03 +0000,322,1,0.00310559,0,0,0,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08914E+18,https://twitter.com/WeAreRLadies/status/1089143955592282112,"I was a bit nervous at the beginning of my @WeAreRLadies week but I'm now closing feeling great, having learnt so much from your thoughts and comments!Thank you and let's keep in touch (@acastillogill) _ÙÔ܉_•üGlad you enjoyed the thread @etoumpas_ds _Ù÷_, me too! https://t.co/VLHxk5psH7",1/26/19,12:52,2019-01-26 12:52 +0000,4606,78,0.016934433,0,0,23,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08883E+18,https://twitter.com/WeAreRLadies/status/1088828845757788161,_ÙÔàCool tutorial to create a Twitter dashboard and ease the process of #KeepingUpWithTheRStatsFeed _Ù¥¦ https://t.co/wGc1W20jhv,1/25/19,16:00,2019-01-25 16:00 +0000,2562,16,0.006245121,1,0,10,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08879E+18,https://twitter.com/WeAreRLadies/status/1088794747156742144,Excellent tips to stay up to date with the #RStats community _ÙÑ_ https://t.co/sELRM8ZiOf,1/25/19,13:44,2019-01-25 13:44 +0000,3236,15,0.004635352,3,1,6,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08862E+18,https://twitter.com/WeAreRLadies/status/1088617450940366848,"‰ÏÜRaise your hand if you love maps _ÙѼDo I have news for you!_Ù_¬The new super helpful pointdexter _ÙÒ_labels longitudinal and latitudinal coordinates located inside a polygon: _ÙÓÑhttps://t.co/QciuzHKguiMade by the dedicated @cenuno_ , I encourage you to try it!",1/25/19,2:00,2019-01-25 02:00 +0000,4375,175,0.04,13,2,54,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1088541962423037952,"The @RLadiesRemote reading group is always looking to welcome more #RLadies and more readings._ÙÓÑSign up here for the group here: https://t.co/OCM1Gl1Obc_ÙÒÐWhat has been your favourite(s) data science reading(s) of 2018?",1/24/19,21:00,2019-01-24 21:00 +0000,4729,86,0.018185663,10,0,15,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08847E+18,https://twitter.com/WeAreRLadies/status/1088466459553161218,"_ÙÔÒ In another session of the @RLadiesRemote reading group, we read Excuse me? Do you have a moment to talk about version control? (https://t.co/qRCzR2JFdu) _ÙÑâWe found lots of us use version control for repos just for ourselves.‰ÒDo you do this too?‰ÒAny particular tips?",1/24/19,16:00,2019-01-24 16:00 +0000,2720,53,0.019485294,1,0,19,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08841E+18,https://twitter.com/WeAreRLadies/status/1088406058857418752,"I'm curious to know, what has been an #RStats function, workflow, package, that has blown your mind _Ù_ø?All and any top tips are welcome! _ÙÔâ_ÙÔâ_ÙÔâ",1/24/19,12:00,2019-01-24 12:00 +0000,52092,1533,0.029428703,80,98,275,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08834E+18,https://twitter.com/WeAreRLadies/status/1088340905826938880,"@KimJoaoUn @rweekly_org Yes, I did!",1/24/19,7:41,2019-01-24 07:41 +0000,98,1,0.010204082,0,1,0,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08804E+18,https://twitter.com/WeAreRLadies/status/1088043671654551552,"In one of the @rweekly_org newsletters, I came across the fabulous hrbrthemes package _ÙÒ_(https://t.co/hzi1NfSjZH). Everything feels just a little bit more stylish with it _ÙÕÉ Here I'm using the theme: theme_ipsum_rc() https://t.co/2XBZjjRoWV",1/23/19,12:00,2019-01-23 12:00 +0000,14886,802,0.053876125,8,4,85,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08797E+18,https://twitter.com/WeAreRLadies/status/1087968171838062593,"To stay up to date I like to read the:_ÙÒ© @rweekly_org newsletter _ÙÒ©@rstudio community summaryHow do you stay up to date on the latest #RStats developments? Any recommendations?",1/23/19,7:00,2019-01-23 07:00 +0000,6537,168,0.025699862,8,4,31,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08789E+18,https://twitter.com/WeAreRLadies/status/1087892676882575360,"In one of the @RLadiesRemote reading group, we read Good enough practices...(https://t.co/XSSn5KB6Fc)Shortly after I fell into a file ordering frenzy that lasted several days creating folders for data, docs, etc.Give it a read and spring clean your files and folders too _ÙÎá_Ù¤_",1/23/19,2:00,2019-01-23 02:00 +0000,6925,264,0.038122744,15,0,67,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08782E+18,https://twitter.com/WeAreRLadies/status/1087817180035481600,"Every so often, this still happens. It's less frequent since I:_Ù_¦‰Û‰ªÛ•üLearned to take breaks. I often fix things after a walk.‰ÒLearned to ask questions either on #RLadies or on #stackoverflow (Image from Developing R Packages course on DataCamp by @aimeegott_R and @nic_crane) https://t.co/8nYc60Mbc7",1/22/19,21:00,2019-01-22 21:00 +0000,3076,118,0.038361508,4,0,12,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08774E+18,https://twitter.com/WeAreRLadies/status/1087741684618809346,"Now, what if we wanted to know which countries _ÙÎ are the most ""intense"" R users defined as R downloads per capita?Here's another map that shows which countries are the most ""intense"" R users including top 10 countries (https://t.co/3MWPG6GvQO).#TidyTuesday https://t.co/vO0FIUaRtT",1/22/19,16:00,2019-01-22 16:00 +0000,6770,549,0.081093058,11,2,40,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08753E+18,https://twitter.com/WeAreRLadies/status/1087530287763017730,"Here's the here package in action: -This is the root directory of my blog (notice the .RProj file).-The here package creates an invisible file in this root directory.Now I can reference any file as if were always navigating downwards from the root (see next GIF). https://t.co/KuTMqDrGlY",1/22/19,2:00,2019-01-22 02:00 +0000,5061,246,0.048606995,4,1,31,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08745E+18,https://twitter.com/WeAreRLadies/status/1087454790324572165,"One of my favourite packages is the here package _ÙÒ_: (https://t.co/4qohFXZ7HO). It's the perfect complement to @rstudio's projects and helps me quickly reference other files including datasets I've created in one script and that will be used in another script.",1/21/19,21:00,2019-01-21 21:00 +0000,7196,299,0.041550862,11,1,53,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08738E+18,https://twitter.com/WeAreRLadies/status/1087379292676284417,"I also help organise the @RLadiesRemote reading group. Every month we pick a reading we‰Ûªd like explore and then, over a two day period, we ask and answer each other‰Ûªs questions. I encourage you to join: https://t.co/OCM1Gl1Obc here and join the #reading-group channel. #rladies",1/21/19,16:00,2019-01-21 16:00 +0000,5896,172,0.02917232,12,1,27,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08733E+18,https://twitter.com/WeAreRLadies/status/1087326419296944129,@joelrudinas03 @acastillogill Hi Joel! _ÙÔÜ,1/21/19,12:29,2019-01-21 12:29 +0000,211,4,0.018957346,0,0,1,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08732E+18,https://twitter.com/WeAreRLadies/status/1087318895143370752,"Happy Monday everyone, I‰Ûªm Ìngela (@acastillogill) and I‰Ûªm pumped to be this week's @WeAreRLadies curator. One of the reasons I learned R was because of the amazing community: ‰ÛÏWhat a bunch of kind and disciplined people. I want to be friends! What can I do? Learn R? No problem!""",1/21/19,12:00,2019-01-21 12:00 +0000,17268,386,0.022353486,5,3,85,1/21/19,1/26/19,Angela Castillo-Gill,acastillogill,0
1.08672E+18,https://twitter.com/WeAreRLadies/status/1086722740025995266,Does anyone have the link for the $450 #rstudioconf 2019 tickets? I didn't write it down on the closing remarks! _Ù__ https://t.co/6OJTLc3W3Z,1/19/19,20:31,2019-01-19 20:31 +0000,4285,31,0.007234539,0,2,0,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08672E+18,https://twitter.com/WeAreRLadies/status/1086717495111761922,@marskar @minebocek Thank you!! You are so on top of adding them!,1/19/19,20:10,2019-01-19 20:10 +0000,208,1,0.004807692,0,0,1,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08672E+18,https://twitter.com/WeAreRLadies/status/1086715486862229506,"""Data Science in a Box"" for an intro to #datascience and #rstats by @minebocek. Includes lectures, notes, exercises and homework! https://t.co/STtw8s3gu3I think this is the last one today @marskar :) https://t.co/IbGcqfvzto",1/19/19,20:02,2019-01-19 20:02 +0000,6729,370,0.054985882,28,1,84,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08671E+18,https://twitter.com/WeAreRLadies/status/1086709844726423558,"The bookdown guide ""bookdown: Authoring Books and Technical Documents with R Markdown"" by @xieyihui https://t.co/RLg4QrmOnUAnother one to add to the moment too @marskar !! https://t.co/qxa5bTjl4Y",1/19/19,19:39,2019-01-19 19:39 +0000,2820,94,0.033333333,4,1,12,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08671E+18,https://twitter.com/WeAreRLadies/status/1086709227215900672,"Shared by @mickle_od, another great free #rstats book: The Caret Package! https://t.co/VUAL7kqWRa @marskar would you mind adding to the moment of free online resources? https://t.co/7Jc3pQ53g5",1/19/19,19:37,2019-01-19 19:37 +0000,2640,100,0.037878788,3,1,7,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08663E+18,https://twitter.com/WeAreRLadies/status/1086633432678051840,See y'all at next years conference in San Francisco! First 100 to buy their tickets get the low price of $450! https://t.co/7NVNnY5Xyw,1/19/19,14:36,2019-01-19 14:36 +0000,2657,16,0.006021829,2,1,4,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08663E+18,https://twitter.com/WeAreRLadies/status/1086632734838177792,Agree 100% What a lovely few days! https://t.co/wg74Yu39gU,1/19/19,14:33,2019-01-19 14:33 +0000,1944,4,0.002057613,0,0,3,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08663E+18,https://twitter.com/WeAreRLadies/status/1086632043088359424,Agree! Your talk inspired me to take on one of our toughest investment areas through doing an analysis of the cost of not investing. Thank you! _Ù https://t.co/SNtijPFfec,1/19/19,14:30,2019-01-19 14:30 +0000,1863,12,0.006441224,0,0,4,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08639E+18,https://twitter.com/WeAreRLadies/status/1086388979266711552,@sharon000 @cbirunda @hspter @AngeBassa @tracykteal Ha! So true!,1/18/19,22:24,2019-01-18 22:24 +0000,263,6,0.022813688,0,0,3,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08639E+18,https://twitter.com/WeAreRLadies/status/1086387541627060225,PROOF! https://t.co/qXEThIfpOq,1/18/19,22:19,2019-01-18 22:19 +0000,1735,12,0.006916427,0,0,6,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08639E+18,https://twitter.com/WeAreRLadies/status/1086385090920415234,My awesome friend and fellow #rladies and #datanaut member @ckwill36 on how to share your work publicly. #rstudioconf https://t.co/LAT4MhIiqh,1/18/19,22:09,2019-01-18 22:09 +0000,1381,6,0.004344678,0,0,2,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08637E+18,https://twitter.com/WeAreRLadies/status/1086370763840675840,"Export straight to Shutterfly. ""Sharla's RStudioConf 2019 Adventure"" _Ù÷â_Ù÷â https://t.co/uNf1UCLXKy",1/18/19,21:12,2019-01-18 21:12 +0000,1257,4,0.00318218,0,0,3,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1086370557447335936,At #RStudioConf @drob talks about why it's important to put your work into the public space! https://t.co/QLEFXxzcYQ,1/18/19,21:11,2019-01-18 21:11 +0000,918,28,0.030501089,1,0,3,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08635E+18,https://twitter.com/WeAreRLadies/status/1086354169638850560,"From the learning R survey, community is the #1 thing #rstats users like! #rstudioconf with @cdhowe https://t.co/CfLG56Riyv",1/18/19,20:06,2019-01-18 20:06 +0000,3164,271,0.085651075,5,3,31,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08635E+18,https://twitter.com/WeAreRLadies/status/1086350993112076289,At #RStudioConf @cdhowe tells us about his BHAG (Big Hairy Audacious Goal) to get the #NextMillionRUsers _Ù÷±_Ù÷± https://t.co/46RlSNFzAM,1/18/19,19:53,2019-01-18 19:53 +0000,942,17,0.018046709,0,0,2,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08635E+18,https://twitter.com/WeAreRLadies/status/1086347304288899075,And why do people think #rstats is too hard for intro #statistics again? @mrshrbrmstr _Ù in her #RStudioConf talk. Does anyone else remember the old scavenger hunt style instructions for stats on your scientific calculator?? _Ù_£ _Ù_£ https://t.co/cSMuAEiSbo,1/18/19,19:39,2019-01-18 19:39 +0000,1800,194,0.107777778,2,1,20,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08634E+18,https://twitter.com/WeAreRLadies/status/1086343879400607744,I will die on that hill with you Heather! https://t.co/xaRT48Jd3Z,1/18/19,19:25,2019-01-18 19:25 +0000,1103,4,0.003626473,0,0,4,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1086339991972777985,"PREACH!! @beeonaposy at #rstudioconf ""Everyone gets bit by timezones at one time or another"" https://t.co/v5NvCvbLvf",1/18/19,19:10,2019-01-18 19:10 +0000,3903,92,0.023571612,5,0,13,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08634E+18,https://twitter.com/WeAreRLadies/status/1086338893522370560,"""I am the sum of all of the mistakes I have made up to this point"", ""Mistakes are how you gain experience"". Wise advice by our own @RLadiesAustin @beeonaposey at #rstudioconf https://t.co/fIP42zZVdo",1/18/19,19:05,2019-01-18 19:05 +0000,3239,133,0.041062056,7,0,28,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08632E+18,https://twitter.com/WeAreRLadies/status/1086320728167845893,"At #rstudioconf @AngeBassa talks about the importance of diversity on a #datascience team. ""Hire many people that are not like you"".",1/18/19,17:53,2019-01-18 17:53 +0000,2032,30,0.01476378,5,0,15,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08632E+18,https://twitter.com/WeAreRLadies/status/1086318534525964294,"At #rstudioconf, @AngeBassa talks about the practicalities of being ""The first one"" doing #datascience and what happens when you are doing ""all the things"". https://t.co/cbkpOlfBMq",1/18/19,17:44,2019-01-18 17:44 +0000,1463,35,0.023923445,3,1,7,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1086312619420631040,@hspter adjusts the #rstats tidy workflow to account for actual time spent during her #rstudioconf talk. https://t.co/PznQI8FCtM,1/18/19,17:21,2019-01-18 17:21 +0000,1290,138,0.106976744,5,1,9,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1086305378189697026,Can't wait for the talk this afternoon from our own @RLadiesAustin co-founder @beeonaposy! https://t.co/wkEBqqI9Ko,1/18/19,16:52,2019-01-18 16:52 +0000,991,2,0.002018163,0,0,1,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.0863E+18,https://twitter.com/WeAreRLadies/status/1086302266129301504,"@CMastication shows us the custom illustrations for his #rstudioconf talk by the amazing @allison_horst!!! Moving from data silos to a data party!! Seriously, can I go to this party??? https://t.co/Lsd4CErJQO",1/18/19,16:40,2019-01-18 16:40 +0000,9746,553,0.056741227,7,3,31,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.0863E+18,https://twitter.com/WeAreRLadies/status/1086301269210353666,"""No one WANTs to learn coding, we all just want to kick ass and be superheros"" @CMastication at #rstudioconf",1/18/19,16:36,2019-01-18 16:36 +0000,2256,50,0.022163121,6,0,31,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.0863E+18,https://twitter.com/WeAreRLadies/status/1086300774190276608,@CMastication discusses empathy in action at #rstudioconf! Excel CAN be the gateway drug to #rstats. https://t.co/v1WoxVE3BI,1/18/19,16:34,2019-01-18 16:34 +0000,2398,93,0.038782319,5,1,13,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08628E+18,https://twitter.com/WeAreRLadies/status/1086282479634399233,Please help this super cute jacket find it's way back to it's owner. We don't want an #rladies member going cold at #rstudioconf! https://t.co/Y0qig0gbaF,1/18/19,15:21,2019-01-18 15:21 +0000,1786,17,0.009518477,1,3,1,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08628E+18,https://twitter.com/WeAreRLadies/status/1086280517237067776,"Don't be nervous Stephanie! The #rstats community is here to support you! For your use case #ggplot2 package is your friend. Chapter #2 in this book: https://t.co/QxlDus8tiy Also @marskar created this moment with free online resources: https://t.co/53P9u72bP1Good luck! _Ù÷È https://t.co/Kch079gQq5",1/18/19,15:13,2019-01-18 15:13 +0000,1707,43,0.025190393,3,1,12,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08628E+18,https://twitter.com/WeAreRLadies/status/1086275135487836160,This illustration is everything. I need to know more! https://t.co/T9uP95IH3S,1/18/19,14:52,2019-01-18 14:52 +0000,1355,6,0.004428044,0,0,1,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08627E+18,https://twitter.com/WeAreRLadies/status/1086274625863004162,Great session with a lot of content! https://t.co/QqyvbmBRJp,1/18/19,14:50,2019-01-18 14:50 +0000,1228,0,0,0,0,0,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1086274293007233024,@romain_francois balancing parenthood with professional pursuits and making it work! _ÙÕø_ÙÕø https://t.co/SzhelvtxtX,1/18/19,14:49,2019-01-18 14:49 +0000,203,6,0.02955665,0,0,3,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08627E+18,https://twitter.com/WeAreRLadies/status/1086270679048224768,Awesome capture Zev! It was a great section filled with must have _ÙÒ_'s for time series. I'm going to add your tweet to the #FOMORPkgs moment. https://t.co/pxcGSxwG4Q,1/18/19,14:34,2019-01-18 14:34 +0000,1260,5,0.003968254,0,0,2,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08627E+18,https://twitter.com/WeAreRLadies/status/1086270173798154241,Amazing connections happening at #rstudioconf. Yesterday I was retweeting @jent103 and I realized I was sitting right next to her! _ÙªÛ_ÙªÛ_ÙªÛ,1/18/19,14:32,2019-01-18 14:32 +0000,1471,27,0.018354861,0,0,15,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08627E+18,https://twitter.com/WeAreRLadies/status/1086269760013299713,You're not alone! This just speaks to our very strong #rstats community. So many online connections met IRL yesterday at #rstudioconf! https://t.co/kHrydoj4u2,1/18/19,14:31,2019-01-18 14:31 +0000,1534,7,0.004563233,1,0,2,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08601E+18,https://twitter.com/WeAreRLadies/status/1086007089753976832,Talk about being a champion for her students!! She iterated from semester to semester and the students benefited! https://t.co/YKB9PwziEL,1/17/19,21:07,2019-01-17 21:07 +0000,2078,10,0.00481232,0,0,9,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1086005027813163010,"@KellyBodwin working to ease her ""Introduction to Statistics"" students into learning #Rstats. _Ù_Ò Great talk during #rstudioconf!! https://t.co/EtP3dCtqrJ",1/17/19,20:59,2019-01-17 20:59 +0000,3120,68,0.021794872,2,0,7,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.086E+18,https://twitter.com/WeAreRLadies/status/1085999329792483328,@robinson_es talks about her work analyzing the a/b funnels @DataCamp. So pleased to see that she is also discussing some of the realistic problems that we see in the data and how to overcome them. _ÙÕø_ÙÕø https://t.co/TX0orzuj3K,1/17/19,20:36,2019-01-17 20:36 +0000,5098,117,0.022950177,1,0,11,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.086E+18,https://twitter.com/WeAreRLadies/status/1085998120251654144,@robinson_es pokes a little fun at her big bro @drob during her #rstudioconf talk _Ù÷â_Ù÷â_Ù÷â https://t.co/M3B8fjzBi1,1/17/19,20:31,2019-01-17 20:31 +0000,346,25,0.072254335,0,0,1,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08599E+18,https://twitter.com/WeAreRLadies/status/1085994962792206336,"""When you don't have data about something or someone, you don't have to hold yourself accountable"" @brookLYNevery1 in discussing all of the missing records when working with @ACLU on separated families. https://t.co/AWoxzeufTD",1/17/19,20:19,2019-01-17 20:19 +0000,1633,21,0.012859767,3,0,4,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1085994284413784067,"When the stakes are this high, analysis often goes FAR beyond spreadsheets or #rstats functions. @brookLYNevery1 talks about how she used R to expose issues in the information flow for separated families. ""22 children were reported as reunited to themselves"" #rstudioconf https://t.co/28zSWPsVxR",1/17/19,20:16,2019-01-17 20:16 +0000,1190,19,0.015966387,2,0,3,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08599E+18,https://twitter.com/WeAreRLadies/status/1085992711428161538,"@brookLYNevery1 relentlessly working with with ""artisinal, hand-crafted"" and messy data to help reunite families @ACLU _ÙÔ_ https://t.co/pnnJHUjmKP",1/17/19,20:10,2019-01-17 20:10 +0000,107,1,0.009345794,0,0,1,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08599E+18,https://twitter.com/WeAreRLadies/status/1085991456882466818,"EMOJI's are LIVE!!! Thank you to @CivicAngela for showing me the way with the ""better tweet deck"" plugin! _Ù÷_Ù÷_Ù÷_Ù÷_Ù÷",1/17/19,20:05,2019-01-17 20:05 +0000,1663,12,0.007215875,1,0,6,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08596E+18,https://twitter.com/WeAreRLadies/status/1085963841207439362,@AmeliaMN teaches us how to stay sane when working with categorical data. We side step into a small therapy session about stringsAsFactors. :) https://t.co/zeX8Z0pQZU,1/17/19,18:15,2019-01-17 18:15 +0000,188,8,0.042553191,0,0,1,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08596E+18,https://twitter.com/WeAreRLadies/status/1085962323481759745,"Now that is being on top of it! Amelia pre-tweeted her links for us to just forward as we want to share with other #rstats folks. Awesome work! Also, she shared with us a great set of data science/stats papers too: https://t.co/IDsqmSVhnF https://t.co/q0MTRoonNH",1/17/19,18:09,2019-01-17 18:09 +0000,3885,67,0.017245817,7,0,36,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08596E+18,https://twitter.com/WeAreRLadies/status/1085957554725892097,@kara_woo shows us a step by step approach to debugging at #rstudioconf She talks about some #rstats specifics but her great advice can be expanded to any software debugging! https://t.co/AIy99vQchl,1/17/19,17:50,2019-01-17 17:50 +0000,278,22,0.079136691,1,0,4,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08596E+18,https://twitter.com/WeAreRLadies/status/1085956536587993091,@patilindrajeets @LittleMissData You too Indrajeet! By any chance do you happen to be here? (hoping),1/17/19,17:46,2019-01-17 17:46 +0000,84,2,0.023809524,0,1,1,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1085955772901675011,@hadleywickham @StatGarrett And @jrnld just shared the link to his github solutions! https://t.co/DwGKgFW6s6 https://t.co/oOELoDz7Ov,1/17/19,17:43,2019-01-17 17:43 +0000,9938,309,0.031092775,8,1,46,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08595E+18,https://twitter.com/WeAreRLadies/status/1085948728261951489,Watch for all of the awesomely packaged up #DSLearnings by @RLadiesAustin co-founder @beeonaposy! Maybe the #DSLearnings should be an ongoing twitter moment??? https://t.co/mnxZourFMd,1/17/19,17:15,2019-01-17 17:15 +0000,2494,7,0.002806736,2,0,3,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08594E+18,https://twitter.com/WeAreRLadies/status/1085944371185438721,Love the illustration Brooke! https://t.co/ufxYB2qX7d,1/17/19,16:58,2019-01-17 16:58 +0000,990,1,0.001010101,0,0,0,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08594E+18,https://twitter.com/WeAreRLadies/status/1085944144160268291,"4 Reasons why #rstudio loves code: repeatable, inspectable, reusable, diffable (see what changed version to version). All important aspects to democratizing #data analysis! #rstudioconf https://t.co/Ur2R0L7oZB",1/17/19,16:57,2019-01-17 16:57 +0000,1075,27,0.025116279,0,0,7,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08594E+18,https://twitter.com/WeAreRLadies/status/1085943558094364674,"Awesome keynote at #rstudioconf by @hadleywickham, @jcheng and @tareefk! https://t.co/t1skUjZqeP",1/17/19,16:54,2019-01-17 16:54 +0000,2508,120,0.04784689,0,0,9,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08594E+18,https://twitter.com/WeAreRLadies/status/1085937897256161280,"I am loving all of the gentle reminders on how to be a courteous person here at #rstudioconf! Another tip: Keep your talking groups to a pac-man format so that it makes newcomers feel welcome to join you. https://t.co/ieBK6ZAQxM",1/17/19,16:32,2019-01-17 16:32 +0000,2014,22,0.010923535,1,0,12,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08591E+18,https://twitter.com/WeAreRLadies/status/1085914640901656577,Calling all #Rstudioconf virtual attendees. Time to get comfy at your desks or on your couches because the #RStudioConf live stream IS NOW AVAILABLE!! https://t.co/gm0ayqA8Xu https://t.co/jY33pzbldo,1/17/19,15:00,2019-01-17 15:00 +0000,12441,179,0.014387911,17,0,20,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.0859E+18,https://twitter.com/WeAreRLadies/status/1085904528996593665,"Do I suggest that #rstudioconf has less overlapping amazing sessions so that I can attend them all? No.. no thats probably not right lol. Great work with a jam packed, amazing agenda!",1/17/19,14:19,2019-01-17 14:19 +0000,1305,14,0.010727969,0,0,8,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.0859E+18,https://twitter.com/WeAreRLadies/status/1085903685434073090,"Aaahhh!!! My dreams are coming true! I've had #rayshader in my list of packages to try out! Not that I have a 3D printer, BUT where there is a will there is a way. This looked like a good tutorial too: https://t.co/CCkky9RrOO https://t.co/Hjj0QRV0EM",1/17/19,14:16,2019-01-17 14:16 +0000,1426,5,0.003506311,0,0,2,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08589E+18,https://twitter.com/WeAreRLadies/status/1085894627616608261,@HoneycombBethan hahaha yes I can see that your new naming format is clearly working :),1/17/19,13:40,2019-01-17 13:40 +0000,26,1,0.038461538,0,0,1,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08589E+18,https://twitter.com/WeAreRLadies/status/1085892953405575168,I hear you. The FOMO is strong in #rstats. https://t.co/fOWmJUdsRg,1/17/19,13:33,2019-01-17 13:33 +0000,1614,6,0.003717472,1,1,3,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08589E+18,https://twitter.com/WeAreRLadies/status/1085892691219697665,"Wow, this is amazing Brooke!!! Can't wait to see your work! https://t.co/gJ7l0erI14",1/17/19,13:32,2019-01-17 13:32 +0000,1163,1,8.60E-04,0,0,0,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08589E+18,https://twitter.com/WeAreRLadies/status/1085892552429977601,ggrepel has helped me with so many labelling problems. Glad to see it getting showcased! https://t.co/g817Z1v8WI,1/17/19,13:32,2019-01-17 13:32 +0000,1347,8,0.005939124,0,0,4,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08589E+18,https://twitter.com/WeAreRLadies/status/1085891586565693440,"Bethan, are we the same person? The difference is that my file names convey some sort of sad sense of optimism. ""___final"", ""___finalv2"", ___finalReal"" and alike lol. https://t.co/EK1C0H7C4d",1/17/19,13:28,2019-01-17 13:28 +0000,2516,15,0.005961844,1,1,5,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08569E+18,https://twitter.com/WeAreRLadies/status/1085688589231501316,"Today I created a twitter moment with a list of great #rstats packages: https://t.co/FnAUixVJYIBut then I realize that I just want a twitter moment with every single package description @dataandme shares. The perfect package reference guide! https://t.co/XaQhJot81k",1/17/19,0:01,2019-01-17 00:01 +0000,8984,345,0.038401603,25,1,84,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1085655322277031936,"@kaz_yos @ValueVictoria Geez you are right @kaz_yos, I apologize! Can you tell I haven't worked with it yet? Now I'm not sure which @ValueVictoria was discussing. But they both look really good!!! Check out @kaz_yos 's package people: https://t.co/lZ0VUPQrKA https://t.co/f0FKgj0bWh",1/16/19,21:49,2019-01-16 21:49 +0000,148,6,0.040540541,0,1,0,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1085630685593944079,Thank you for helping to spread the word of how many great #rstats beginner resources there are! https://t.co/NIymtH4Mxl,1/16/19,20:11,2019-01-16 20:11 +0000,1932,8,0.004140787,2,0,3,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08563E+18,https://twitter.com/WeAreRLadies/status/1085630109657239552,"Ok I think I'm about finished with my top #FOMORPkgs for now. I will post more as i think of them. also pls msg me with any package write ups you would like to add to the moment!https://t.co/FnAUixVJYI",1/16/19,20:09,2019-01-16 20:09 +0000,1333,20,0.015003751,0,0,0,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08563E+18,https://twitter.com/WeAreRLadies/status/1085627751220969472,#FOMORPkgs: gghighlight by the amazing @yutannihilation shows how to SUPER easily highlight data points or areas of data points within a graph. It really helps to pull out the outliers. I use it at work a lot! I also wrote a tutorial on it: https://t.co/gkAAJKmqsA https://t.co/RVA09uCiFp,1/16/19,20:00,2019-01-16 20:00 +0000,1932,101,0.052277433,2,0,17,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08562E+18,https://twitter.com/WeAreRLadies/status/1085623975282073600,#FOMORPkgs: I learned about the FFTrees package in a @RLadiesAustin workshop with @TheStephLocke. The package (maintained by @YaRrrBook) is an amazing way of producing VERY quick decision trees with awesome graphics ready to show to your stakeholders! https://t.co/SEmqeikJgS https://t.co/KgDoTJc4l9,1/16/19,19:45,2019-01-16 19:45 +0000,2373,114,0.048040455,7,1,22,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08562E+18,https://twitter.com/WeAreRLadies/status/1085620201163493376,"#FOMORPkgs: More network #rstats packages. networkD3 by @ChrisGandrud, @fly_upside_down, @timelyportfolio and @cjyetman This packages produces beautiful and interactive network graphs. I need to check this out!https://t.co/srQiiQqjoM https://t.co/tfQmAyCTNf",1/16/19,19:30,2019-01-16 19:30 +0000,2213,35,0.015815635,3,0,6,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08562E+18,https://twitter.com/WeAreRLadies/status/1085617684052504577,"#FOMORPkgs: More network #rstats packages. This time visNetwork by DataStormPkg here: https://t.co/Wth2TUUph2Great tutorial here: https://t.co/KT6g33GvkJ https://t.co/52YILxRZIF",1/16/19,19:20,2019-01-16 19:20 +0000,1687,30,0.017783047,3,0,4,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08562E+18,https://twitter.com/WeAreRLadies/status/1085615167805812736,"#FOMORPkgs: More network #rstats packages. ggraph by the amazing @thomasp85! I am unclear about the differences btw ggraph and tidygraph, but thats mostly b/c they are still on my ""to do"" list! Great tutorial here: https://t.co/YwGaTfvOAT https://t.co/IQckXdlKVM",1/16/19,19:10,2019-01-16 19:10 +0000,6679,551,0.08249738,11,2,64,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08561E+18,https://twitter.com/WeAreRLadies/status/1085612653064716290,"#FOMORPkgs: More network #rstats packages. Sigmajs by @jdatap looks amazing! https://t.co/Z2jSAC6YQT https://t.co/uYd9L6dUQ3",1/16/19,19:00,2019-01-16 19:00 +0000,1473,44,0.029871012,1,0,3,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08561E+18,https://twitter.com/WeAreRLadies/status/1085611373516730368,@ericbzman 4) Celebrate! (hopefully),1/16/19,18:54,2019-01-16 18:54 +0000,13,0,0,0,0,0,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08561E+18,https://twitter.com/WeAreRLadies/status/1085611284345819137,"@ericbzman 3) query <- ""select ....""data <- dbGetQuery(con, query)",1/16/19,18:54,2019-01-16 18:54 +0000,12,0,0,0,0,0,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08561E+18,https://twitter.com/WeAreRLadies/status/1085611145338212353,"@ericbzman 2) # creates a connection to the postgres databasecon <- dbConnect(drv, dbname = ""DB NAME"", host = ""DB URL"", port = PORT, user = ""USER NAME"", password = ""PASSWORD"")",1/16/19,18:54,2019-01-16 18:54 +0000,20,0,0,0,0,0,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08561E+18,https://twitter.com/WeAreRLadies/status/1085611024827453440,"@ericbzman 1) install.packages(""RPostgreSQL"")library(""RPostgreSQL"")drv <- dbDriver(""PostgreSQL"")",1/16/19,18:53,2019-01-16 18:53 +0000,14,0,0,0,0,0,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08561E+18,https://twitter.com/WeAreRLadies/status/1085610896339152899,@ericbzman Hey Eric I've used the driver before and it's pretty stable so i hope we can resolve this. Are you connecting like so (look for ordered steps since i have to split up in twitter),1/16/19,18:53,2019-01-16 18:53 +0000,18,2,0.111111111,0,1,1,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08561E+18,https://twitter.com/WeAreRLadies/status/1085610134502547457,#FOMORPkgs: More network packages. This time igraph by many authors who are listed on the pkg cran site here: https://t.co/mQWbUZsGBA . https://t.co/Zn55XQY2Gt,1/16/19,18:50,2019-01-16 18:50 +0000,1488,30,0.02016129,0,0,6,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08561E+18,https://twitter.com/WeAreRLadies/status/1085609733044817920,@amin_stat @hadleywickham @StatGarrett The key is that it is available for free and online!,1/16/19,18:48,2019-01-16 18:48 +0000,708,5,0.007062147,0,0,2,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08561E+18,https://twitter.com/WeAreRLadies/status/1085609550001131521,"@marskar @mjhendrickson @LittleMissData @dataandme @SuzanBaert Your moment inspired me to add all the #FOMORPkgs tweets to a moment too! Also my first moment. https://t.co/FnAUixVJYI",1/16/19,18:47,2019-01-16 18:47 +0000,506,27,0.053359684,2,1,6,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08561E+18,https://twitter.com/WeAreRLadies/status/1085607664049184768,@MagnusX71 So glad to hear Arga!!!,1/16/19,18:40,2019-01-16 18:40 +0000,95,2,0.021052632,0,0,0,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08561E+18,https://twitter.com/WeAreRLadies/status/1085607618046017538,"#FOMORPkgs: And here come all of the network analysis packages that I have bookmarked wanting to explore. I don't know which one is best. Maybe y'all can tell me! tidygraph by @thomasp85. For this one, I'll link to an excellent blog tutorial by Thomas: https://t.co/4wD3g9SdsJ https://t.co/VYv7HT4iQy",1/16/19,18:40,2019-01-16 18:40 +0000,5119,375,0.073256495,11,1,39,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08561E+18,https://twitter.com/WeAreRLadies/status/1085607581454921728,@meszilag Thank you Marcelo!! Feel free to tweet out your FOMO pkgs with pics and the hashtag #FOMORPkgs I'll add them to the moment here: https://t.co/FnAUixVJYI,1/16/19,18:39,2019-01-16 18:39 +0000,211,10,0.047393365,0,0,0,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08561E+18,https://twitter.com/WeAreRLadies/status/1085607028507185157,Meant to send this from the proper account! https://t.co/sAWrLaBGTR,1/16/19,18:37,2019-01-16 18:37 +0000,2373,17,0.007163928,1,1,10,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.0856E+18,https://twitter.com/WeAreRLadies/status/1085601326313041920,"#FOMORPkgs: I have been itching to try out tstudio by @Rami_Krispin. It looks like a very straight forward and impactful way of analyzing #timeseries data in #rstats https://t.co/Gr2annGM8e https://t.co/gHqldNw5yR",1/16/19,18:15,2019-01-16 18:15 +0000,2171,188,0.086596039,3,1,17,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.0856E+18,https://twitter.com/WeAreRLadies/status/1085597555537428480,"#FOMORPkgs: And another one that I did eventually check out. But needed to share b/c it is super important to be able to display tables in a digestible way. The formattable pkg is made by @renkun_ken! Link: https://t.co/KyvoG1LHta. My blog tutorial: https://t.co/1qvsPegDVB https://t.co/J6HTIYpXH2",1/16/19,18:00,2019-01-16 18:00 +0000,1719,46,0.026759744,3,1,10,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08559E+18,https://twitter.com/WeAreRLadies/status/1085593776427429889,"#FOMORPkgs: Ok ok ok another one I've worked with, but this is a goodie. Created by @patilindrajeets, ggstatsplot shows a lot of very dense information in visually appealing graphs. Can ya tell I like #dataviz?https://t.co/Sc3lfGWzXU https://t.co/Sv2ygqBUIP",1/16/19,17:45,2019-01-16 17:45 +0000,2826,158,0.055909413,4,1,19,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1085590003177132034,"#FOMORPkgs: Venn Diagrams by Hanbo Chen. I mean Venn Diagrams are useful, so why not give it a shot!? Pkg readme: https://t.co/Lzpl3ryrBIAnother good tutorial by Jọo Neto: https://t.co/7lHukY9Fxq https://t.co/gFy0QGIa09",1/16/19,17:30,2019-01-16 17:30 +0000,1759,63,0.035815804,2,0,4,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08559E+18,https://twitter.com/WeAreRLadies/status/1085586226868936704,"#FOMORPkgs: Visualize set intersections in a beautiful layout with UpSetR by @ngehlenborg and Jake Conway https://t.co/7qcaP3ENMU https://t.co/pqopw2zm4O",1/16/19,17:15,2019-01-16 17:15 +0000,2125,114,0.053647059,4,0,20,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08558E+18,https://twitter.com/WeAreRLadies/status/1085582462191775744,"#FOMORPkgs: Ok, ok not a package, but seriously Y'ALL need #rmarkdown! As pointed out by @stephlocke It's the lazy way to produce reports on your analysis. Also I use it to help navigate the exploratory data analysis results (too many graphs syndrome) https://t.co/8XLJmxCxSi https://t.co/RVJ5jIsutq",1/16/19,17:00,2019-01-16 17:00 +0000,1536,65,0.042317708,1,0,16,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08558E+18,https://twitter.com/WeAreRLadies/status/1085578677117571077,"#FOMORPkgs: ggthemer by CiarÌÁn Tobin allows you to set the graph theme and then forget about it without modifying every #ggplot2 graph!https://t.co/ZogzG2HsVc https://t.co/gqUZs5yjX2",1/16/19,16:45,2019-01-16 16:45 +0000,2351,154,0.065504041,10,1,33,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08557E+18,https://twitter.com/WeAreRLadies/status/1085574910901022721,"#FOMORPkgs - Use Table1 pkg by @kaz_yos & Justin Bohn for descriptive stats. @ValueVictoria shared it with our #rstats Austin group in a lightning talk. It looks super straight forward, so what on earth is my excuse for not trying it!?! pkg link: https://t.co/eBJGhQ0xvH https://t.co/eCLeJXVad4",1/16/19,16:30,2019-01-16 16:30 +0000,3615,134,0.037067773,6,2,17,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08557E+18,https://twitter.com/WeAreRLadies/status/1085571127995523072,"#FOMORPkgs: gg3D by Daniel Acker - I mean I honestly don't have a use case yet, but I. MUST. TRY. THIS. OUT! https://t.co/DzZiWA5Tsp https://t.co/Jh417hQ8zI",1/16/19,16:15,2019-01-16 16:15 +0000,1568,61,0.038903061,1,1,9,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08557E+18,https://twitter.com/WeAreRLadies/status/1085567354761867266,"#FOMORPkgs: The beautiful #ggmaps package by David Kahle to create pretty maps! Here is the pkg link: https://t.co/lpRIVLhK7J . Again, I have used this pkg, but it's too good not to share. I wrote an in-depth tutorial on the pkg too! Check it out! https://t.co/uwgifd1Oyf https://t.co/CeJ7HU4Nf4",1/16/19,16:00,2019-01-16 16:00 +0000,8659,503,0.058089849,39,2,130,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1085566094113366016,"#FOMORPkgs: Speaking of social media analysis, lets get some #twitter action going with rtweet maintained by Michael W. Kearney! This package also goes nicely with wordcloud2 by Dawei Lang!. I show how to use both together on my blog!https://t.co/USocDXbsTf https://t.co/7C9NhLt0uB",1/16/19,15:55,2019-01-16 15:55 +0000,1447,30,0.02073255,0,0,7,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08556E+18,https://twitter.com/WeAreRLadies/status/1085564835977355264,"#FOMORPkgs -instaR by @p_barbera. I mean analyzing #instagram data with #rstats? YES PLEASE!! Haven't seen commits for quite some time so really hoping this still works!https://t.co/vnUVpBwnG2 https://t.co/uSAY1W51RY",1/16/19,15:50,2019-01-16 15:50 +0000,1381,40,0.028964518,4,0,7,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08556E+18,https://twitter.com/WeAreRLadies/status/1085563577967075328,"#FOMORPkgs: Again, I love a fun looking graph I want/need to check out the emojifont package by @guangchuangyu!https://t.co/A9qaNI8cWB https://t.co/WYuNgaA85Y",1/16/19,15:45,2019-01-16 15:45 +0000,1446,53,0.036652835,1,0,6,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08556E+18,https://twitter.com/WeAreRLadies/status/1085559813445115904,#FOMORPkgs: I am a #dataviz sucker and I need to try the circlize package by @jokergoo! Link to pkg: https://t.co/kkdbZae0Ju. Link to a very awesome set of docs: https://t.co/uGmc4NrqH3 https://t.co/aCh42c8Jga,1/16/19,15:30,2019-01-16 15:30 +0000,1780,67,0.037640449,2,1,6,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08556E+18,https://twitter.com/WeAreRLadies/status/1085556819186065409,"Please tag your #FOMORPkgs too and I'll add them to this moment. Also, please include pics if possible! https://t.co/cIIEOUKJNt",1/16/19,15:18,2019-01-16 15:18 +0000,1960,8,0.004081633,2,0,3,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08555E+18,https://twitter.com/WeAreRLadies/status/1085554769651851264,"#FOMORPkgs: #gganimate by @thomasp85. Ok, I've made a number of graphs with this pkg but I don't feel I've reached full potential yet. Check out the docs here: https://t.co/xNJArgMXMA and a growing list examples: https://t.co/yNeDRXK80f (made by many cool ppl incl @AdamGruer) https://t.co/BF7uzHUEp4",1/16/19,15:10,2019-01-16 15:10 +0000,4022,193,0.047986077,5,1,29,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08555E+18,https://twitter.com/WeAreRLadies/status/1085552254529220608,Today I am not at #rstudioconf and I thought I could share some of my #FOMO with you. I have FOMO that leads to keeping large lists of #rstats packages to try out. Let me know if you've tried/like/dislike them! Share your lists and tag with #FOMORPkgs https://t.co/Eesu9FWsET,1/16/19,15:00,2019-01-16 15:00 +0000,2217,23,0.01037438,2,1,8,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08554E+18,https://twitter.com/WeAreRLadies/status/1085543798581723137,"@SuzanBaert hahah I really get that. I reference my blogs a lot too..and honestly I feel like it's a large part of the reason I do blog! But also, I feel like dplyr has so many features that I don't want to forget them so i'll remind myself occasionally with your lovely blog series. :)",1/16/19,14:26,2019-01-16 14:26 +0000,218,3,0.013761468,0,0,2,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08538E+18,https://twitter.com/WeAreRLadies/status/1085376225214898176,"One last share for the day: @nic_crane 's #rstats series of animated gifs is an absolute must! Mesmerizing, inspiring and FOMO overwhelming all in one Moment :). https://t.co/lAqG7DUjfM https://t.co/u31RAngxjN",1/16/19,3:20,2019-01-16 03:20 +0000,4917,333,0.067724222,9,0,33,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08537E+18,https://twitter.com/WeAreRLadies/status/1085371829831770114,"As requested by @gdequeiroz here are the materials for the #deeplearning workshop today given by @Rick_Scavetta Github: https://t.co/iAF2uABG1WHis Video Course: https://t.co/RI4lyt1wo6",1/16/19,3:03,2019-01-16 03:03 +0000,2141,71,0.033162074,3,0,25,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08528E+18,https://twitter.com/WeAreRLadies/status/1085280464800235521,Very cool dashboard to see the dependencies in our beloved #tidyverse https://t.co/4ulzHCjM4d,1/15/19,21:00,2019-01-15 21:00 +0000,1903,10,0.005254861,1,0,2,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08528E+18,https://twitter.com/WeAreRLadies/status/1085280087669387264,"Loving the sounds of this class you're in Allison! What is it called? ""Being a boss and knowing you're a boss in R""? https://t.co/8qqPokYbRD",1/15/19,20:58,2019-01-15 20:58 +0000,3524,22,0.006242906,1,0,14,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08527E+18,https://twitter.com/WeAreRLadies/status/1085272913383612416,"A (hopefully) helpful blog post that I wrote on troubleshooting your #rstats package install! https://t.co/KKQ7bmjruc https://t.co/WAekRwO5K5",1/15/19,20:30,2019-01-15 20:30 +0000,1551,86,0.055448098,2,0,6,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08527E+18,https://twitter.com/WeAreRLadies/status/1085271104032333827,I feel incredibly validated by this comment :) https://t.co/cFsEPM8qyk,1/15/19,20:22,2019-01-15 20:22 +0000,10324,160,0.015497869,13,0,111,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08527E+18,https://twitter.com/WeAreRLadies/status/1085265362407620614,"You're right! @SuzanBaert 's blog on #rstats dplyr is crucial. I am not embarrassed to admit that sometimes I just scroll through it in hopes that I might remember the functions when I need them! https://t.co/Yw3vKimMES https://t.co/BLC0GpAHwy",1/15/19,20:00,2019-01-15 20:00 +0000,4596,164,0.035683203,5,1,42,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08526E+18,https://twitter.com/WeAreRLadies/status/1085257814069497856,"Another great resource in R is to follow some of the amazing #rstats folks on twitter. @BecomingDataSci shares some of her fave #rstats tweeters and also EVEN MORE DATA SCIENCE RESOURCES !!! https://t.co/pmS9VlX8Kw https://t.co/robj505rFR",1/15/19,19:30,2019-01-15 19:30 +0000,1402,90,0.064194009,2,0,2,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08525E+18,https://twitter.com/WeAreRLadies/status/1085245677335138307,The #deeplearning bias variance tradeoff shown to us by @Rick_Scavetta at #rstudioconf You can sense when things are overfit when the loss in training decreases and loss in validation increases. We need the sweet spot. https://t.co/84IHStkbbX,1/15/19,18:41,2019-01-15 18:41 +0000,1792,72,0.040178571,1,0,5,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08524E+18,https://twitter.com/WeAreRLadies/status/1085235164656078848,"Since I love a good #dataviz fail, @beeonaposy recommended Accidental aRt. It features data mistakes turned beautiful! Highly recommend @accidental__aRt https://t.co/QqYBltQTbc https://t.co/9ELXHjrkpM",1/15/19,18:00,2019-01-15 18:00 +0000,2111,102,0.048318333,2,0,10,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08523E+18,https://twitter.com/WeAreRLadies/status/1085229779085873154,"Shared by @alexkgold, you can watch the #rstudioconf live stream on Thurs/Fri! https://t.co/vWjCfUMda0",1/15/19,17:38,2019-01-15 17:38 +0000,5137,110,0.021413276,10,0,13,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08523E+18,https://twitter.com/WeAreRLadies/status/1085227615366062080,"Are you struggling with how to break down a business problem into a data problem? Below is a step by step approach to tackling your toughest issues!https://t.co/Gp6c8BT0oG https://t.co/OFDVZqOFla",1/15/19,17:30,2019-01-15 17:30 +0000,1672,97,0.058014354,0,0,17,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08522E+18,https://twitter.com/WeAreRLadies/status/1085220065006571521,"""From insights to decisions"" by @jacquietran. Great advice in there about the practicalities of using data to drive decisions in business, soft skills, hard skills, glue work, missing info, risk mgmt, data storytelling + more! https://t.co/bbZOEk3Gx7 https://t.co/XzLT2f72Ue",1/15/19,17:00,2019-01-15 17:00 +0000,1422,68,0.047819972,3,0,3,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08521E+18,https://twitter.com/WeAreRLadies/status/1085212516009992192,"Do you have a talk coming up and need advice on how to make great slides?! Look no further, @kjhealy has some excellent tips! https://t.co/ZFJ1ivbQc1 https://t.co/Ot1NYhrpb3",1/15/19,16:30,2019-01-15 16:30 +0000,1648,104,0.063106796,1,0,8,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08521E+18,https://twitter.com/WeAreRLadies/status/1085208409245450240,#deeplearning model training and evaluation with @Rick_Scavetta this am at #rstudioconf! https://t.co/nRQKomMaHc,1/15/19,16:13,2019-01-15 16:13 +0000,2394,60,0.025062657,3,1,9,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.0852E+18,https://twitter.com/WeAreRLadies/status/1085204964408885248,"If you are looking for a great way of searching for #rstats resources, look no further! Rseek - the R search tool! https://t.co/NWH7r5HfFv https://t.co/cSY0odUgqx",1/15/19,16:00,2019-01-15 16:00 +0000,7502,332,0.044254865,37,2,83,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08519E+18,https://twitter.com/WeAreRLadies/status/1085189866902548482,Starting my #deeplearning session at #RStudioConf with @kevinykuo @zkajdan and @Rick_Scavetta!! https://t.co/IFMPUijJsv,1/15/19,15:00,2019-01-15 15:00 +0000,2525,51,0.02019802,3,0,10,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.09E+18,https://twitter.com/WeAreRLadies/status/1085154282486358018,"Use this link to keep on top of the #RStudioConf twitter activity!https://t.co/Kw6XNzKZcZ https://t.co/Q9cRWJ64QB",1/15/19,12:38,2019-01-15 12:38 +0000,1861,34,0.018269747,0,0,3,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08515E+18,https://twitter.com/WeAreRLadies/status/1085151504498069505,Just got this notification on my phone! It's going to be a good day! https://t.co/VBWsiq5pfC,1/15/19,12:27,2019-01-15 12:27 +0000,3396,93,0.027385159,0,0,10,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08501E+18,https://twitter.com/WeAreRLadies/status/1085013003945365504,And these too!!! @kara_woo you and @djnavarro are bringing the nail game. https://t.co/EIL45oZ4O1,1/15/19,3:17,2019-01-15 03:17 +0000,2945,12,0.004074703,0,0,5,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08501E+18,https://twitter.com/WeAreRLadies/status/1085010674080772097,Awesome links @mjhendrickson thank you for sharing!,1/15/19,3:07,2019-01-15 03:07 +0000,2149,33,0.01535598,0,1,1,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08501E+18,https://twitter.com/WeAreRLadies/status/1085008887626022912,Great how to's. Thanks for sharing @mjhendrickson !! https://t.co/zGIEfOMrlQ,1/15/19,3:00,2019-01-15 03:00 +0000,2316,10,0.004317789,0,1,5,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08499E+18,https://twitter.com/WeAreRLadies/status/1084988444588294145,"All done for now! See the previous tweets for all sorts of amazing, free learning resources for R. Now, it's time that you tell me: What did I miss?? Share your links in the replies!",1/15/19,1:39,2019-01-15 01:39 +0000,16210,518,0.031955583,12,12,82,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08499E+18,https://twitter.com/WeAreRLadies/status/1084988119743676417,"12) ""Happy Git and GitHub for the useR"" by @JennyBryan and @jimhester_ guides us how to use the benefits of #git and #github for your #rstats code! https://t.co/02IysNdwCj https://t.co/qQPWkHlnBj",1/15/19,1:38,2019-01-15 01:38 +0000,14473,583,0.040281904,18,0,67,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08499E+18,https://twitter.com/WeAreRLadies/status/1084987196220821505,"11) ""Fundamentals of Data Visualization"" by @ClausWilke. The book guides it's readers on how to get the right #dataviz as accurately and with as much impact as possible! Our beloved #rstats is the language used. https://t.co/o1fRlKQ5N7 https://t.co/Rem506feLE",1/15/19,1:34,2019-01-15 01:34 +0000,4158,231,0.055555556,14,0,51,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08499E+18,https://twitter.com/WeAreRLadies/status/1084986202900574214,"10) ""Hands-On Programming with R"" by the also incredibly productive @StatGarrett! A project oriented resource to learn #RStatsand #datascience.https://t.co/PQz5lJMqUC https://t.co/TISge5bChw",1/15/19,1:30,2019-01-15 01:30 +0000,4084,257,0.062928501,15,0,54,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08E+18,https://twitter.com/WeAreRLadies/status/1084984800291799045,"9) ""Learning Statistics with R"" by @djnavarro. It contains all of the glorious material for her introductory statistics class using #rstats! https://t.co/eYHdFt7ql5 https://t.co/MTuLZMXkxr",1/15/19,1:25,2019-01-15 01:25 +0000,7104,421,0.059262387,25,0,103,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08498E+18,https://twitter.com/WeAreRLadies/status/1084983127758565376,"8) ""R Markdown: The Definitive Guide"" by @xieyihui @fly_upside_down & @StatGarrett . A great technical reference guide to.. you guessed it.. RMarkdown in #rstats! https://t.co/lUHNXQfCMe https://t.co/RlJlBH09NY",1/15/19,1:18,2019-01-15 01:18 +0000,4214,288,0.068343617,17,1,58,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08498E+18,https://twitter.com/WeAreRLadies/status/1084981878036328453,"7) ""Data Visualization. A practical introduction"" by @kjhealy. Using #rstats examples, the book teaches us the foundations of #dataviz!https://t.co/gXLIrz8mHq https://t.co/GOc7eeyZWu",1/15/19,1:13,2019-01-15 01:13 +0000,5215,304,0.058293384,17,0,69,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08E+18,https://twitter.com/WeAreRLadies/status/1084980274390360069,"6) Stat 545 by @STAT545. UBC Statistics course in data wrangling, exploration, and analysis with R, taught by @JennyBryan! https://t.co/HoCwNSlI3y https://t.co/3ut9vrT9Rq",1/15/19,1:07,2019-01-15 01:07 +0000,3549,262,0.073823612,16,0,50,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08498E+18,https://twitter.com/WeAreRLadies/status/1084978724913721345,"5) ""Text Mining with R. A Tidy Approach"" by @juliasilge and @drob. What a gem! This book demystifies the scary world that is analyzing text. Highly recommended! #rstats https://t.co/HH7z27B7ga https://t.co/wn0syVooEx",1/15/19,1:01,2019-01-15 01:01 +0000,7305,481,0.065845311,21,0,106,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08498E+18,https://twitter.com/WeAreRLadies/status/1084977657484378113,"4) More presents from @hadleywickham with the book ""R Packages"". A great resource for turning your precious #rstats code into reusable packages to share with others! https://t.co/XcQ0pHrZMW https://t.co/aMltGvsc6m",1/15/19,0:56,2019-01-15 00:56 +0000,5861,252,0.042996076,12,0,59,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08E+18,https://twitter.com/WeAreRLadies/status/1084976297925885953,"Yes! I should mention that when following this book, you can routinely see areas they are working on. It's very exciting!! https://t.co/2pg7DGH9lM",1/15/19,0:51,2019-01-15 00:51 +0000,2566,21,0.008183944,1,0,7,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08498E+18,https://twitter.com/WeAreRLadies/status/1084976095500398592,"3) ""Advanced R"" by @hadleywickhamwho seems to have discovered a new time dimension to work in! A great resource to further your #rstats skills or transition from other languages. https://t.co/6kvrngbmy9 https://t.co/e2bR1iO4F9",1/15/19,0:50,2019-01-15 00:50 +0000,5560,371,0.066726619,15,0,67,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08498E+18,https://twitter.com/WeAreRLadies/status/1084975066427867138,@old_man_chester @rudeboybert The link!!!! https://t.co/AC6D3ShKlx,1/15/19,0:46,2019-01-15 00:46 +0000,2393,254,0.106142917,5,0,39,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08497E+18,https://twitter.com/WeAreRLadies/status/1084974191273750528,"2) ""An Introduction to Statistical and Data Sciences via R"" by @old_man_chester and @rudeboybert. An incredibly beginner friendly introduction to both #datascience and #statistics concepts as well as #RStats. Very nicely done! https://t.co/7kzfunXe0v",1/15/19,0:42,2019-01-15 00:42 +0000,18176,721,0.039667694,32,2,106,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08497E+18,https://twitter.com/WeAreRLadies/status/1084972685225050113,"Since I'm a complete pack rat, I'll now share with you a bunch of great, free online books to help learn #rstats. 1) The almighty ""R 4 Data Science"" by @hadleywickham and @StatGarrett. Teaches us how to structure, transform, visualize and model #data!https://t.co/QxlDus8tiy https://t.co/z2EuIefUP6",1/15/19,0:37,2019-01-15 00:37 +0000,36624,2263,0.061790083,134,3,372,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08492E+18,https://twitter.com/WeAreRLadies/status/1084920939148705793,Love it!! @RLadiesAustin and @RLadiesChicago UNITE! https://t.co/YOR5vNZSF0,1/14/19,21:11,2019-01-14 21:11 +0000,1987,7,0.003522899,1,0,6,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08488E+18,https://twitter.com/WeAreRLadies/status/1084877867618627584,"When planning your #rstudioconf, don't forget to download the app. Fully synched between online and mobile, you can select and manage your schedule easily!https://t.co/ZCrPfqI2qM https://t.co/3SdHHDgVy9",1/14/19,18:20,2019-01-14 18:20 +0000,3165,94,0.029699842,2,0,15,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08486E+18,https://twitter.com/WeAreRLadies/status/1084864045021315073,Great goals @Dorris_Scott! You should sign up to be a curator!! And did you sign up for @RLadiesRemote yet? https://t.co/yFSW2nRomF,1/14/19,17:25,2019-01-14 17:25 +0000,1468,6,0.004087193,0,1,1,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08486E+18,https://twitter.com/WeAreRLadies/status/1084860384484487168,Join us @rladiesaustin folks for a global #RLadies meetup and happy hour after #rstudioconf https://t.co/zYzLEauqi9 https://t.co/XicaR1VnOp,1/14/19,17:10,2019-01-14 17:10 +0000,2671,59,0.022089105,3,1,16,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08486E+18,https://twitter.com/WeAreRLadies/status/1084857774440366082,"If you can't attend #rstudioconf in person this year, check out some of last year's talks shared by @dataandme !! https://t.co/nmrX1mVd67",1/14/19,17:00,2019-01-14 17:00 +0000,6651,55,0.008269433,7,1,28,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08486E+18,https://twitter.com/WeAreRLadies/status/1084855255576268800,@hspter https://t.co/4GRJTb1eCh,1/14/19,16:50,2019-01-14 16:50 +0000,709,7,0.009873061,0,0,5,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08485E+18,https://twitter.com/WeAreRLadies/status/1084854306774413312,Can't wait to get my hands on these goodie bags! https://t.co/MEifniE65N,1/14/19,16:46,2019-01-14 16:46 +0000,2825,20,0.007079646,0,1,12,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08485E+18,https://twitter.com/WeAreRLadies/status/1084854109918900224,Excellent Rebecca! We are so excited to see you there! https://t.co/FoHiJpWKeW,1/14/19,16:45,2019-01-14 16:45 +0000,1231,3,0.002437043,0,0,2,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08484E+18,https://twitter.com/WeAreRLadies/status/1084841435097169920,"@beeonaposy @LittleMissData haha classic me - I meant that you all are MY benefactors!!!! I really don't know how you do it but the @RLadiesAustin happy hours, tutorials, lightning talks, book clubs and more keep our #RLadies community thriving! https://t.co/WI0GOeUsXN",1/14/19,15:55,2019-01-14 15:55 +0000,536,4,0.007462687,0,0,2,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08484E+18,https://twitter.com/WeAreRLadies/status/1084841023120031744,SO CLOSE!!!!!! https://t.co/1dpyR4E8NU,1/14/19,15:53,2019-01-14 15:53 +0000,1324,4,0.003021148,0,0,1,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08484E+18,https://twitter.com/WeAreRLadies/status/1084840719347564545,"@LittleMissData @IBMcloud @RLadiesAustin @beeonaposy @ValueVictoria haha I mean that they are MY benefactors! I really don't know how they do it but the @RLadiesAustin happy hours, tutorials, lightning talks, book clubs and more keep our #RLadies community thriving! https://t.co/boveri1XnD",1/14/19,15:52,2019-01-14 15:52 +0000,1162,16,0.013769363,0,1,2,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08484E+18,https://twitter.com/WeAreRLadies/status/1084839438176452609,"@LittleMissData @IBMcloud Most importantly, I am the mom of two amazing little girls and I am the wife to an incredibly supportive husband. It is certainly a balancing act to try to do it all. Some days are easier than others, but my support system and #rstats community energy keeps me going! https://t.co/LQx6WLSqTd",1/14/19,15:47,2019-01-14 15:47 +0000,1119,48,0.042895442,0,0,3,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08484E+18,https://twitter.com/WeAreRLadies/status/1084838657436106752,"@LittleMissData @IBMcloud I am the lucky benefactor of a thriving #DataScience community here in Austin. I'm a member of @RLadiesAustin (founded by the amazing @beeonaposy and @ValueVictoria). Through this meetup and a variety of others, us #RLadies in Austin have a good time (and learn a lot)! https://t.co/uEk0BH7yoE",1/14/19,15:44,2019-01-14 15:44 +0000,1615,57,0.035294118,1,1,2,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08484E+18,https://twitter.com/WeAreRLadies/status/1084837234161930241,"@LittleMissData @IBMcloud Outside of work, I love to continue exploring new open data in different ways using a variety of R and #dataviztechniques. I often share my experiences through articles or tutorials on my blog: https://t.co/3ZwD8eoGAk https://t.co/9omJlSolyn",1/14/19,15:38,2019-01-14 15:38 +0000,1081,61,0.056429232,1,0,4,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08484E+18,https://twitter.com/WeAreRLadies/status/1084836464783953920,"@LittleMissData @IBMcloud Working on IBM Cloud is really cool because I get to work with a LOT of cool folks and we have a ton of fun. We encouraged to let our nerd flags fly and as the biggest contributor to our data docs, I do just that! See the image for our data science section below _Ùªâ https://t.co/zVBYEfOlO9",1/14/19,15:35,2019-01-14 15:35 +0000,1268,47,0.037066246,0,1,3,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08E+18,https://twitter.com/WeAreRLadies/status/1084835682231767040,"@LittleMissData @IBMcloud Work: Being an analytics architect means that I get to spend every day differently. I deal with data feeds and flows to tooling selection and maintenance to all forms of analytics doing and reviewing! I use data applications, warehouses, BI and #DataScience using #RStats!",1/14/19,15:32,2019-01-14 15:32 +0000,951,10,0.010515247,1,0,3,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.08484E+18,https://twitter.com/WeAreRLadies/status/1084835078017085443,"Hi all, I'm delighted to be your @WeAreRLadies curator for the week! A little bit about me: while I go by @LittleMissData on twitter, my real name is Laura Ellis :) I'm passionate about #data, data and more data and I work as an analytics architect on @IBMcloud!",1/14/19,15:30,2019-01-14 15:30 +0000,9225,197,0.021355014,2,7,49,1/14/19,1/19/19,Laura Ellis,littlemissdata,0
1.10002E+18,https://twitter.com/WeAreRLadies/status/1100024111500124162,"We're taking a break this week, but we'll be back on Monday, March 4 (is anyone else in disbelief that it's already March?!)In the meantime, if you're an R-Lady interested in curating, consider signing up _ÙÔähttps://t.co/ceqFGDWWkq #RLadies",2/25/19,13:26,2019-02-25 13:26 +0000,8032,117,0.014566733,18,2,37,2/25/19,3/2/19,BREAK,BREAK,NA
1.09933E+18,https://twitter.com/WeAreRLadies/status/1099334519205834753,"@kara_woo @CodeNewbies @github I‰Ûªm heading back to @S_Owla tonight! _ÙÔÜ_Ù÷_I‰Ûªd like to leave you with these wise words:https://t.co/AuaDTU2aWO",2/23/19,15:45,2019-02-23 15:45 +0000,1847,18,0.009745533,1,0,9,2/18/19,2/23/19,Suthira Owlarn,s_owla,0
1.09933E+18,https://twitter.com/WeAreRLadies/status/1099332313828261888,"@kara_woo @CodeNewbies @github So if the only thing stopping you is the thought that you might not be ""good enough""‰Û_ please try to ignore it! _Ù÷ä_Ù÷ÜI know from experience it can be really scary!! _Ù÷¬_Ù÷± But let‰Ûªs try to stop turning ourselves away from opportunities because we *might* get rejected _Ù_Ñ_Ù÷÷",2/23/19,15:37,2019-02-23 15:37 +0000,1713,16,0.009340339,0,1,7,2/18/19,2/23/19,Suthira Owlarn,s_owla,0
1.09933E+18,https://twitter.com/WeAreRLadies/status/1099331343996149760,"You‰Ûªre *not* too inexperienced to contribute to open source: as @kara_woo said ""Anyone can play git/R""!! :Dhttps://t.co/gFqkWS10sDI submitted my first pull request before really knew how to code, because the @CodeNewbies podcast told me @github isn‰Ûªt just for programmers _Ù÷ https://t.co/UJqWyJmEuF",2/23/19,15:33,2019-02-23 15:33 +0000,8573,444,0.051790505,21,1,63,2/18/19,2/23/19,Suthira Owlarn,s_owla,0
1.10E+18,https://twitter.com/WeAreRLadies/status/1099330211009576960,"@drob Honestly, I‰Ûªve learned so much this week from people I don‰Ûªt think would‰Ûªve had access to otherwise and I‰Ûªm so grateful!! Some people seemed pretty happy with what I‰Ûªd shared too, and that kind of encouragement fills me with warm fuzzy feelings! :) :)",2/23/19,15:28,2019-02-23 15:28 +0000,1567,17,0.010848756,0,1,5,2/18/19,2/23/19,Suthira Owlarn,s_owla,0
1.09933E+18,https://twitter.com/WeAreRLadies/status/1099328292061093888,"@drob But the R-Ladies RoCur README https://t.co/JgqE3aBsiS explicitly says ""Everyone is welcome; R-Ladies encourages R-users of all professional backgrounds and experience levels to curate this account"" _Ù_Ñ_Ù÷And I think many #RLadies/#rstats events are similarly welcoming/inclusive!",2/23/19,15:21,2019-02-23 15:21 +0000,1800,17,0.009444444,0,1,2,2/18/19,2/23/19,Suthira Owlarn,s_owla,0
1.09933E+18,https://twitter.com/WeAreRLadies/status/1099326983002079232,"Sharing is caring _Ù÷Ü The last topic I‰Ûªd like to cover this week is, as @drob puts it, ""The unreasonable effectiveness of public work"" _Ù÷ https://t.co/3ZU4xb6XAyIf you think your coding skills aren't up to par/you don't have anything to share.. I‰Ûªve definitely been there! _ÙªÜ_ÙÈ_Ù÷_Ù÷É",2/23/19,15:15,2019-02-23 15:15 +0000,9235,314,0.034001083,8,1,54,2/18/19,2/23/19,Suthira Owlarn,s_owla,0
1.09932E+18,https://twitter.com/WeAreRLadies/status/1099321879398174721,"@ijlyttle @skyetetra @heatherklus @jcheng @AliciaSchep @dreamrs No problem, and thank *you*! I think many people will find it as helpful as I did! :) also thank you for your feedback, I'm really really happy you liked it!! _Ù÷__Ù÷_",2/23/19,14:55,2019-02-23 14:55 +0000,192,1,0.005208333,0,0,1,2/18/19,2/23/19,Suthira Owlarn,s_owla,0
1.09931E+18,https://twitter.com/WeAreRLadies/status/1099308647530807297,"@skyetetra @heatherklus @jcheng and I can‰Ûªt leave without showing some #ShinyAppreciation for these great apps! ;)@AliciaSchep's #rstats package RecommendRhttps://t.co/tjOv5VfZsO@dreamRs‰Ûªs esquisse (GUI for ggplot2)https://t.co/gLmCSOQD0S@ijlyttle‰Ûªs interactive tidy eval tutorialhttps://t.co/4fCklrpGxm",2/23/19,14:03,2019-02-23 14:03 +0000,2014,84,0.041708044,2,1,18,2/18/19,2/23/19,Suthira Owlarn,s_owla,0
1.09927E+18,https://twitter.com/WeAreRLadies/status/1099272656560508928,"@skyetetra @heatherklus Are you sure you need #rshiny? Thanks to @jcheng‰Ûªs {crosstalk} https://t.co/ymgwtk2Tfk and associated widgets, you can render an HTML file with interactive features (eg. linked brushing/filtering) that will work on any computer with a browser!! That was a game changer for me :) https://t.co/2lFUVt3NIP",2/23/19,11:39,2019-02-23 11:39 +0000,2601,182,0.069973087,6,1,24,2/18/19,2/23/19,Suthira Owlarn,s_owla,0
1.09927E+18,https://twitter.com/WeAreRLadies/status/1099271515781169152,"@skyetetra @heatherklus For more on #3 recently, I recently talked about the plethora of shiny extension packages (shinyverse?) that make building fancy shiny apps easier! :)Slides, including links to all packages/materials I covered, are here: https://t.co/SSnd9fM5tf https://t.co/wDl0paACa9",2/23/19,11:35,2019-02-23 11:35 +0000,6177,551,0.089201878,12,2,61,2/18/19,2/23/19,Suthira Owlarn,s_owla,0