-
Notifications
You must be signed in to change notification settings - Fork 2
/
calendar_9148_1704824475_2024-01-09.xml
1749 lines (1749 loc) · 125 KB
/
calendar_9148_1704824475_2024-01-09.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<libcal>
<calendar>
<id>9148</id>
<name>Workshops</name>
<status>Public</status>
<owner>Shannon Riffe</owner>
<URL>https://cmu.libcal.com/calendar/workshops</URL>
<timezone>America/New_York</timezone>
</calendar>
<events>
<event>
<id>11620595</id>
<title>3MT Slide Design and Presentation Skills Overview In-Person</title>
<description><p dir="ltr"><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;"><a href="https://www.cmu.edu/student-success/other-resources/resource-descriptions/three-minute-thesis.html">Three Minute Thesis</a>&nbsp;(3MT)&nbsp;is more than just a way to share information on your research, it is also a presentation and design challenge. This workshops will help those entering 3MT learn the basics of presentation skills and styles, so their verbal game is on point, while also showing what visual techniques are the best for showing off their research, getting the best slide for the job.</span></span><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;"></span></span></p>
<p><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">Students are encouraged to bring their example slides to the workshop so they can receive direct feedback prior to their submission deadline, but students at all stages in the process are welcome.</span></span></p></description>
<start>2024-01-22T16:00:00-05:00</start>
<end>2024-01-22T17:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11620595</URL>
<color>#25B891</color>
<location>Hunt Library</location>
<campus>Hunt Library</campus>
<presenter>Emily Bongiovanni, Emma Slayton & Sonia Wellington</presenter>
<categories>
<category>Writing and Publishing</category>
</categories>
<registration>
<seats>40</seats>
<seats_taken>5</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11622573</id>
<title>Submitting Your Thesis or Dissertation to CMU Libraries</title>
<description><p><meta charset="utf-8"></p>
<p><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">This session will walk through the steps for depositing your thesis or dissertation to <a href="https://kilthub.cmu.edu/">KiltHub</a>, the CMU institutional repository and the&nbsp;thesis and dissertation&nbsp;database, ProQuest.&nbsp;We will also cover intellectual property considerations like embargos, licensing, and how to manage published materials that are part of the thesis.</span></span></p></description>
<start>2024-01-24T12:00:00-05:00</start>
<end>2024-01-24T13:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11622573</URL>
<color>#25B891</color>
<location>Online</location>
<campus>Virtual Workshop</campus>
<presenter>Katie Behrman & Emily Bongiovanni</presenter>
<categories>
<category>Open Science</category>
<category>Writing and Publishing</category>
</categories>
<registration>
<seats>70</seats>
<seats_taken>0</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11721905</id>
<title>Open Science Framework (OSF) for Beginners</title>
<description><p style="line-height:1.38; margin-top:16px; margin-bottom:16px"><span style="font-size:9pt; font-variant-ligatures:normal; font-variant-numeric:normal; font-variant-caps:normal; font-variant-alternates:normal; font-variant-east-asian:normal; font-variant-position:normal; white-space:pre-wrap"><span style="font-family:Verdana"><span style="color:#000000"><span style="font-weight:700"><span style="font-style:normal"><span style="text-decoration:none"></span></span></span></span></span></span></p>
<p><a href="https://osf.io/">Open Science Framework (OSF) </a>is a research reproducibility and project management platform that is free, open source, and designed to support research across the research lifecycle. OSF allows you to organize all of your research documentation, such as datasets, code, analysis, background literature and more, into a single space shared by your collaborators. OSF also supports the pre-registration of research protocols and preprint publication.</p>
<p>&nbsp;</p>
<p>This workshop will cover:</p>
<ul>
<li aria-level="1">Creating and collaborating on OSF projects</li>
<li aria-level="1">Uploading files from your desktop</li>
<li aria-level="1">Connecting external platforms like Google Drive, Mendeley, and GitHub</li>
<li aria-level="1">Understanding version control in OSF</li>
<li aria-level="1">Pre-registration of research protocols</li>
<li aria-level="1">Publishing supplementary materials</li>
</ul>
<p dir="ltr"><br />
No previous experience with OSF is required! Please register for an <a href="https://osf.io/">OSF account</a> with your CMU email address beforehand if you&#39;re a hands on learner!</p>
<p dir="ltr"><span style="font-size:9pt; font-variant-ligatures:normal; font-variant-numeric:normal; font-variant-caps:normal; font-variant-alternates:normal; font-variant-east-asian:normal; font-variant-position:normal; white-space:pre-wrap"><span style="font-family:Verdana"><span style="color:#000000"><span style="font-weight:400"><span style="font-style:normal"><span style="text-decoration:none"></span></span></span></span></span></span></p></description>
<start>2024-01-26T13:00:00-05:00</start>
<end>2024-01-26T14:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11721905</URL>
<color>#F5E616</color>
<location>Sorrells Library, Den</location>
<campus></campus>
<presenter>Lencia Beltran</presenter>
<categories>
<category>Open Science</category>
</categories>
<registration>
<seats>30</seats>
<seats_taken>2</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11732479</id>
<title>Data Carpentry: Introduction to Python</title>
<description><p><meta charset="utf-8"><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">This is a three-day workshop (January 29-31, 9:00am-12:00pm) on basic data manipulation and visualization in Python intended for students and researchers in any subject area with little or no coding experience. Short tutorials alternate with hands-on practical exercises, and participants are encouraged both to help one another and to try applying what they have learned to their own research problems during and between sessions. </span></span></p>
<p><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">Please try to attend all three sessions if you register for the workshop. Registration can be found on this <a href="https://www.eventbrite.com/e/data-carpentry-intro-to-python-tickets-660653812337">page</a>.</span></span></p></description>
<start>2024-01-29T09:00:00-05:00</start>
<end>2024-01-29T12:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11732479</URL>
<color>#F5E616</color>
<location>Online</location>
<campus>Virtual Workshop</campus>
<presenter>Lencia Beltran, Chasz Griego & Sarah Young</presenter>
<categories>
<category>Open Science</category>
<category>Working With Data</category>
</categories>
</event>
<event>
<id>11622522</id>
<title>Introduction to LaTeX and Overleaf</title>
<description><p><meta charset="utf-8"><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">This workshop will introduce LaTeX, a typesetting system used to prepare documents and separate text from formatting. This introductory workshop will focus on using Overleaf, an online real-time collaborative LaTeX editor.</span></span></p>
<p>&nbsp;</p></description>
<start>2024-01-29T12:00:00-05:00</start>
<end>2024-01-29T13:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11622522</URL>
<color>#25B891</color>
<location></location>
<campus>Virtual Workshop</campus>
<presenter>Emily Bongiovanni</presenter>
<categories>
<category>Writing and Publishing</category>
</categories>
<registration>
<seats>75</seats>
<seats_taken>7</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11732480</id>
<title>Data Carpentry: Introduction to Python</title>
<description><p><meta charset="utf-8"><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">This is a three-day workshop on basic data manipulation and visualization in Python intended for students and researchers in any subject area with little or no coding experience. Short tutorials alternate with hands-on practical exercises, and participants are encouraged both to help one another and to try applying what they have learned to their own research problems during and between sessions. </span></span></p>
<p><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">Please try to attend all three sessions if you register for the workshop. Registration can be found on this <a href="https://www.eventbrite.com/e/data-carpentry-intro-to-python-tickets-660653812337">page</a>.</span></span></p></description>
<start>2024-01-30T09:00:00-05:00</start>
<end>2024-01-30T12:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11732480</URL>
<color>#F5E616</color>
<location>Online</location>
<campus>Virtual Workshop</campus>
<presenter>Lencia Beltran, Chasz Griego & Sarah Young</presenter>
<categories>
<category>Open Science</category>
<category>Working With Data</category>
</categories>
</event>
<event>
<id>11627051</id>
<title>Introduction to the Fundamentals of Engineering Exam</title>
<description><p><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">This workshop&nbsp;provides an overview of the Fundamentals of Engineering (FE) Exam which is the first step in the process of becoming a professional licensed engineer (P.E.). You will also get introduced to some study guides and learn how to prepare for the exam.</span></span></p></description>
<start>2024-01-30T11:00:00-05:00</start>
<end>2024-01-30T12:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11627051</URL>
<color>#B3C8EF</color>
<location>Sorrells Library, Den</location>
<campus>Sorrells Library</campus>
<presenter>Haoyong Lan</presenter>
<registration>
<seats>30</seats>
<seats_taken>1</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11677891</id>
<title>Introduction to R Part 1: Getting started with R and RStudio</title>
<description><p style="line-height:1.38; margin-top:16px; margin-bottom:16px"><span style="font-size:9pt; font-variant-ligatures:normal; font-variant-numeric:normal; font-variant-caps:normal; font-variant-alternates:normal; font-variant-east-asian:normal; font-variant-position:normal; white-space:pre-wrap"><span style="font-family:Verdana"><span style="color:#000000"><span style="font-weight:700"><span style="font-style:normal"><span style="text-decoration:none"></span></span></span></span></span></span></p>
<p>This 2-part introductory workshop aims to teach basic concepts, skills, and tools for working with data in R so that you can get more done in less time, and apply concepts of reproducibility to your research. This is an introduction to R designed for participants with no programming experience. Part 1 of the workshop covers basic information about R syntax and the RStudio interface, including installing packages and working with vectors. Part 2 will cover importing CSV files, working with dataframes, how to deal with factors, how to add/remove rows and columns using the popular dplyr package, and how to calculate summary statistics from a data frame. Taking Part 1 and Part 2 is encouraged, but optional.</p>
<p><br />
Learners should bring a laptop and should already have installed R and RStudio on their computer. Installation and set-up instructions, as well as a detailed curriculum for the workshop <a href="https://cmu-lib.github.io/portfolio_workshop/content/introR.html">can be found here</a>.</p>
<p>Part 1 Learning Outcomes</p>
<ul>
<li>Describe the different panes in the RStudio environment and how they are used when coding in R.</li>
<li>Run lines of R code from a script file to the console.</li>
<li>Create and store new objects in R.</li>
<li>Find help information for functions.</li>
<li>Use functions in R with appropriate syntax and arguments.</li>
<li>Define, create and manipulate vectors in R.</li>
</ul>
<p>&nbsp;</p>
<p dir="ltr"><span style="font-size:9pt; font-variant-ligatures:normal; font-variant-numeric:normal; font-variant-caps:normal; font-variant-alternates:normal; font-variant-east-asian:normal; font-variant-position:normal; white-space:pre-wrap"><span style="font-family:Verdana"><span style="color:#000000"><span style="font-weight:400"><span style="font-style:normal"><span style="text-decoration:none"></span></span></span></span></span></span></p></description>
<start>2024-01-30T13:00:00-05:00</start>
<end>2024-01-30T14:30:00-05:00</end>
<URL>https://cmu.libcal.com/event/11677891</URL>
<color>#2A96DE</color>
<location>Hunt Library - Room 308</location>
<campus>Hunt Library</campus>
<presenter>Sarah Young</presenter>
<categories>
<category>Open Science</category>
<category>Working With Data</category>
</categories>
<registration>
<seats>50</seats>
<seats_taken>1</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11732481</id>
<title>Data Carpentry: Introduction to Python</title>
<description><p><meta charset="utf-8"><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">This is a three-day workshop on basic data manipulation and visualization in Python intended for students and researchers in any subject area with little or no coding experience. Short tutorials alternate with hands-on practical exercises, and participants are encouraged both to help one another and to try applying what they have learned to their own research problems during and between sessions. </span></span></p>
<p><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">Please try to attend all three sessions if you register for the workshop. Registration can be found on this <a href="https://www.eventbrite.com/e/data-carpentry-intro-to-python-tickets-660653812337">page</a>.</span></span></p></description>
<start>2024-01-31T09:00:00-05:00</start>
<end>2024-01-31T12:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11732481</URL>
<color>#F5E616</color>
<location>Online</location>
<campus>Virtual Workshop</campus>
<presenter>Lencia Beltran, Chasz Griego & Sarah Young</presenter>
<categories>
<category>Open Science</category>
<category>Working With Data</category>
</categories>
</event>
<event>
<id>11627052</id>
<title>Introduction to Technical Standards</title>
<description><p><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">This workshop helps you get familiar with definitions and types of technical standards. You will be introduced to major standards databases and develop effective standards-searching strategies. The basic structure of technical standards will also be covered in the workshop.</span></span></p></description>
<start>2024-01-31T11:00:00-05:00</start>
<end>2024-01-31T12:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11627052</URL>
<color>#B3C8EF</color>
<location>Online</location>
<campus>Virtual Workshop</campus>
<presenter>Haoyong Lan & Matt Marsteller</presenter>
<registration>
<seats>100</seats>
<seats_taken>1</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11690015</id>
<title>Introduction to Python for Data Science: Introduction to Basic Programming with Data</title>
<description><p style="line-height:1.38; margin-top:16px; margin-bottom:16px">In this first part of the 3-part workshop series, &quot;Introduction to Python for Data Science,&quot; we offer an introduction to Python for non-programmers with a focus on data analysis. In this workshop, we will demonstrate how to do basic Python programming in Jupyter Notebooks. Topics will include working with different data types, using built-in functions and libraries to read and manipulate data.&nbsp;</p></description>
<start>2024-01-31T13:00:00-05:00</start>
<end>2024-01-31T15:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11690015</URL>
<color>#F5E616</color>
<location>Sorrells Library, Den</location>
<campus>Sorrells Library</campus>
<presenter></presenter>
<categories>
<category>Open Science</category>
<category>Open Science</category>
<category>Working With Data</category>
</categories>
<registration>
<seats>30</seats>
<seats_taken>9</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11622444</id>
<title>Auto-magic citations and bibliographies: Introduction to Citation Management with Zotero</title>
<description><p style="line-height:1.38; margin-top:16px; margin-bottom:16px"><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">This workshop will introduce the benefits of citation management software for easy in-text citations and automatic bibliographies. Participants are encouraged to bring a laptop so they are able to practice using Zotero.</span></span></p></description>
<start>2024-02-01T12:30:00-05:00</start>
<end>2024-02-01T13:30:00-05:00</end>
<URL>https://cmu.libcal.com/event/11622444</URL>
<color>#25B891</color>
<location>Sorrells Library, Den</location>
<campus>Sorrells Library</campus>
<presenter>Emily Bongiovanni</presenter>
<categories>
<category>Writing and Publishing</category>
</categories>
<registration>
<seats>40</seats>
<seats_taken>2</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11627053</id>
<title>Introduction to Research Metrics</title>
<description><p><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">This workshop provides guidance on understanding research metrics,&nbsp;enhancing research impact statements, evaluating publishing effectiveness, and benchmarking against peers. You will gain awareness of and experience with the tools acquired by the University Libraries to assist you with these tasks.</span></span></p></description>
<start>2024-02-02T11:00:00-05:00</start>
<end>2024-02-02T12:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11627053</URL>
<color>#B3C8EF</color>
<location>Online</location>
<campus>Virtual Workshop</campus>
<presenter>Haoyong Lan & Matt Marsteller</presenter>
<registration>
<seats>100</seats>
<seats_taken>4</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11722733</id>
<title>Building your Programming Tool Box: Command Line Crash Course for Beginners</title>
<description><p style="line-height:1.38; margin-top:16px; margin-bottom:16px"><span style="font-size:9pt; font-variant-ligatures:normal; font-variant-numeric:normal; font-variant-caps:normal; font-variant-alternates:normal; font-variant-east-asian:normal; font-variant-position:normal; white-space:pre-wrap"><span style="font-family:Verdana"><span style="color:#000000"><span style="font-weight:700"><span style="font-style:normal"><span style="text-decoration:none"></span></span></span></span></span></span></p>
<p>This hands-on introduction to the command line interface is part 1 of a four-part series called Building Your Programming Toolbox.&nbsp;</p>
<p>This is a hands-on introduction to using the command line interface. This workshop is designed for those who are beginning their exploration into command-line programming and anyone seeking to refresh their skills. A command line interface (CLI) is a quick and efficient way to perform computing tasks. A few of the topics that will be introduced include navigating the directory structure, commonly used commands, working with files and directories, and more.</p>
<p>If you are a hands on learner and want to follow along, you&rsquo;ll want to have&nbsp;access to Bash Shell. If you use macOS or Linux then you should have Bash already installed. For those on Windows OS, you may need to install a bash shell. <a href="https://gitforwindows.org/">Git Bash</a> installation is one option for installing Bash Shell.&nbsp;&nbsp;</p>
<p dir="ltr"><span style="font-size:9pt; font-variant-ligatures:normal; font-variant-numeric:normal; font-variant-caps:normal; font-variant-alternates:normal; font-variant-east-asian:normal; font-variant-position:normal; white-space:pre-wrap"><span style="font-family:Verdana"><span style="color:#000000"><span style="font-weight:400"><span style="font-style:normal"><span style="text-decoration:none"></span></span></span></span></span></span></p></description>
<start>2024-02-05T13:00:00-05:00</start>
<end>2024-02-05T15:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11722733</URL>
<color>#F5E616</color>
<location>Sorrells Library, Den</location>
<campus></campus>
<presenter>Lencia Beltran</presenter>
<categories>
<category>Open Science</category>
<category>Working With Data</category>
</categories>
<registration>
<seats>30</seats>
<seats_taken>1</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11627054</id>
<title>Introduction to Engineering Research Competencies</title>
<description><p><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">This workshop introduces engineering information literacy including engineering academic databases, database searching strategies, and efficient citation management.</span></span></p></description>
<start>2024-02-06T11:00:00-05:00</start>
<end>2024-02-06T12:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11627054</URL>
<color>#B3C8EF</color>
<location>Online</location>
<campus>Virtual Workshop</campus>
<presenter>Haoyong Lan</presenter>
<registration>
<seats>100</seats>
<seats_taken>1</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11677895</id>
<title>Introduction to R Part 2: Working with data in R</title>
<description><p>This 2-part introductory workshop aims to teach basic concepts, skills, and tools for working with data in R so that you can get more done in less time, and apply concepts of reproducibility to your research. This is an introduction to R designed for participants with no programming experience. Part 1 of the workshop covers basic information about R syntax and the RStudio interface, including installing packages and working with vectors. Part 2 will cover importing CSV files, working with dataframes, how to deal with factors, how to add/remove rows and columns using the popular dplyr package, and how to calculate summary statistics from a data frame. Taking Part 1 and Part 2 is encouraged, but optional.</p>
<p>Learners should bring a laptop and should already have installed R and RStudio on their computer. Installation and set-up instructions, as well as a detailed curriculum for the workshop <a href="https://cmu-lib.github.io/portfolio_workshop/content/introR.html">can be found here</a>.</p>
<p>Part 2 Learning Outcomes</p>
<ul>
<li>Install packages and load libraries in R.</li>
<li>Import a dataset and use tidyverse functions to explore dataset attributes.</li>
<li>Create subsets of dataframes.</li>
<li>Work with categorical variables in R.</li>
<li>Use the dplyr package to select columns and filter rows.</li>
<li>Use the dplyr package to perform various operations on a dataframe such as creating new variables, splitting and combining data, and summarizing data.</li>
<li>Use pipes in R to string together a series of steps.</li>
<li>Export a data set from R Studio.</li>
</ul>
<p>&nbsp;</p></description>
<start>2024-02-06T13:00:00-05:00</start>
<end>2024-02-06T14:30:00-05:00</end>
<URL>https://cmu.libcal.com/event/11677895</URL>
<color>#2A96DE</color>
<location>Hunt Library - Room 308</location>
<campus>Hunt Library</campus>
<presenter>Sarah Young</presenter>
<categories>
<category>Open Science</category>
<category>Working With Data</category>
</categories>
<registration>
<seats>50</seats>
<seats_taken>0</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11627055</id>
<title>Prompt Engineering for Research</title>
<description><p>This workshop introduces prompt engineering techniques for generative artificial intelligence (AI) chatbots to elicit desired outputs. You will also get familiar with generative AI tools embedded in research databases.</p></description>
<start>2024-02-07T11:00:00-05:00</start>
<end>2024-02-07T12:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11627055</URL>
<color>#B3C8EF</color>
<location></location>
<campus>Virtual Workshop</campus>
<presenter>Haoyong Lan</presenter>
<registration>
<seats>100</seats>
<seats_taken>3</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11720589</id>
<title>Introduction to Python for Data Science: Plotting and Analyzing Tabular Datasets</title>
<description><p style="line-height:1.38; margin-top:16px; margin-bottom:16px"><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-size:12px;">In the second part of the 3-part workshop series, &quot;Introduction to Python for Data Science,&quot; we demonstrate beginner Python programming techniques using the Pandas library to read tabular datasets, perform simple analyses, and visualize data. The content covered in this workshop will be a continuation of the content covered in part 1, &quot;Introduction to Basic Programming with Data&quot;. We highly encourage attending the first part of the workshop series before this workshop, especially for learners that are new to the Python programming language.</span></span></p></description>
<start>2024-02-07T13:00:00-05:00</start>
<end>2024-02-07T15:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11720589</URL>
<color>#F5E616</color>
<location>Sorrells Library, Den</location>
<campus>Sorrells Library</campus>
<presenter></presenter>
<categories>
<category>Open Science</category>
<category>Open Science</category>
<category>Working With Data</category>
</categories>
<registration>
<seats>30</seats>
<seats_taken>3</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11676891</id>
<title>Tools, techniques and strategies for efficient and effective literature reviews</title>
<description><p><meta charset="utf-8"><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;"></span></span></p>
<p>Are you conducting a formal literature review for publication or a grant proposal? Are you looking for ways to stay on top of a rapidly emerging field? Or are you seeking to identify knowledge gaps to explore novel areas of research? Conducting literature reviews and staying on top of the research can feel like a daunting task. This workshop will provide a set of skills and tools to make this process easier and help you feel confident that you have found a thorough and representative body of literature on your topic. We will cover tips and techniques for searching the literature, managing the research papers you find, accessing full text of research quickly, and setting up search alerts for new papers. The workshop is aimed at graduate students, staff and faculty researchers, but anyone is welcome to join. &nbsp;</p>
<p>This is Part 1 of the Advanced and systematized literature review methods Workshop Series. Join us for one or any of these sessions. Other workshops in this series:</p>
<ul>
<li><a href="https://cmu.libcal.com/event/11677021">Synthesizing research with a scoping review</a>, Thursday, March 14, 12-1pm ET</li>
<li><a href="https://cmu.libcal.com/event/11677025">Analyzing scholarly literature using bibliometrics</a>, Thursday, April 11, 12-1pm ET</li>
</ul>
<p>&nbsp;</p>
<p><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-size:12px;"></span></span></p>
<p>&nbsp;</p></description>
<start>2024-02-08T12:00:00-05:00</start>
<end>2024-02-08T13:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11676891</URL>
<color>#9276C9</color>
<location></location>
<campus>Virtual Workshop</campus>
<presenter>Melanie Gainey, Haoyong Lan, Ryan Splenda & Sarah Young</presenter>
<categories>
<category>Evidence Synthesis</category>
</categories>
<registration>
<seats>300</seats>
<seats_taken>2</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11720611</id>
<title>Building Your Programming Toolbox: Version Control with Git</title>
<description><p style="line-height:1.38; margin-top:16px; margin-bottom:16px"><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-size:12px;"></span></span>This workshop is for those beginning to explore the concept of version control, as well as anyone seeking to refine their skills. Git is a version control system that lets you manage and track changes to files on your computer through the command line interface. Topics covered will include configuring a local repository on your computer, modifying files and committing changes, and exploring version histories.&nbsp;</p>
<p>This hands-on introduction to version control and Git is part 2 of a four-part series called &quot;Building Your Programming Toolbox.&quot;&nbsp;We highly encourage attending the first part of the workshop series, &quot;Command Line Crash Course for Beginners&quot; before this workshop, especially for learners who are new to a command line interface.&nbsp;</p>
<p style="line-height:1.38; margin-top:16px; margin-bottom:16px"><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-size:12px;"></span></span></p></description>
<start>2024-02-12T13:00:00-05:00</start>
<end>2024-02-12T15:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11720611</URL>
<color>#F5E616</color>
<location>Sorrells Library, Den</location>
<campus>Sorrells Library</campus>
<presenter></presenter>
<categories>
<category>Open Science</category>
<category>Open Science</category>
<category>Working With Data</category>
</categories>
<registration>
<seats>30</seats>
<seats_taken>2</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11677591</id>
<title>Text Mining with TDM Studio Workbench: An Introduction</title>
<description><p><meta charset="utf-8"><span style="font-size:12px;"></span>In this 1-hour workshop, TDM Studio experts will provide an overview of what TDM Studio is and how to get started with TDM Studio Workbench for your research project. You will have the opportunity to create a dataset related to your research topic and to begin analyzing that dataset within TDM Studio. We will use and run sample Jupyter Notebooks, written in Python, to look at word counts and word co-occurrences in your project dataset. No coding experience is needed for the workshop, and by the end of the workshop you will have: 1) Familiarity with using TDM Studio as well as 2) Starting, baseline results for a text analysis project. Which politicians have the most newspaper presence? Does this vary by specific newspaper titles? Which politicians co-occur together most frequently?</p>
<p>Join us for other workshop in this series:</p>
<ul>
<li><a href="https://cmu.libcal.com/event/11677593">Sentiment Analysis Overview and State of the Art</a>, March 11, 3:30-4:30pm ET</li>
</ul>
<p><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;"></span></span></p>
<p>&nbsp;</p></description>
<start>2024-02-12T15:30:00-05:00</start>
<end>2024-02-12T16:30:00-05:00</end>
<URL>https://cmu.libcal.com/event/11677591</URL>
<color>#2A96DE</color>
<location></location>
<campus>Virtual Workshop</campus>
<presenter>Emily Bongiovanni & Sarah Young</presenter>
<categories>
<category>Working With Data</category>
</categories>
<registration>
<seats>300</seats>
<seats_taken>2</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11851398</id>
<title>Data Storytelling</title>
<description><p><meta charset="utf-8"></p>
<p>When working with data, the ways in which we communicate about or discuss analysis is as important as the act of research itself. A large part of being able to effectively use data is to understand what stories are contained within data sets, and what information may play a key role in analysis. In this&nbsp;workshop, we will go over strategies to develop research questions tied to specific data sets, identify core elements of data that may lead to successful and fruitful analysis, as well as how to use both data and results from analysis to communicate ideas to academic and public audiences.</p>
<p>This workshop is a part of CMU Libraries&rsquo;&nbsp;<em><strong>Communicating Data and Research Storytelling</strong></em> . For other workshops in the series, please see the links below at CMU Libraries website:&nbsp;</p>
<p>Data Storytelling | <a href="https://cmu.libcal.com/event/11851398">February 13th</a>&nbsp;</p>
<p>Data Visualization Best Practices | <a href="https://cmu.libcal.com/event/11851456">February 20th</a></p>
<p>Data Visualization in Tableau | <a href="https://cmu.libcal.com/event/11851521">February 27th</a></p>
<p>
<style type="text/css"><!--td {border: 1px solid #cccccc;}br {mso-data-placement:same-cell;}-->
</style>
Data Visualization and Tableau Dashboards | <a href="https://cmu.libcal.com/event/11851565">March 12th</a>&nbsp;</p>
<p>Data Visualization in R | <a href="https://cmu.libcal.com/event/11851585">March 19th</a></p>
<p>
<style type="text/css"><!--td {border: 1px solid #cccccc;}br {mso-data-placement:same-cell;}-->
</style>
Introduction to Data Visualization in R Shiny | <a href="https://cmu.libcal.com/event/11851602">March 26th&nbsp;</a></p>
<p>Data for Citizen Science on Community Data | <a href="https://cmu.libcal.com/event/11851621">April 2nd</a></p></description>
<start>2024-02-13T09:00:00-05:00</start>
<end>2024-02-13T10:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11851398</URL>
<color>#2A96DE</color>
<location></location>
<campus>Virtual Workshop</campus>
<presenter></presenter>
<categories>
<category>Working With Data</category>
</categories>
<registration>
<seats>40</seats>
<seats_taken>1</seats_taken>
<wait_list>false</wait_list>
</registration>
</event>
<event>
<id>11622353</id>
<title>Introduction to Electronic Lab Notebooks</title>
<description><p><meta charset="utf-8"><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;"></span></span></p>
<p><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">Join us for a demonstration on LabArchives ELN. LabArchives is a cloud-based platform that you can use to securely store, search, share and publish your research and data. As a Carnegie Mellon affiliate, you have free access to the platform. We&rsquo;ll go over notebook creation and access, adding and managing data, and other features to help integrate LabArchives into your team&#39;s workflow.&nbsp;</span></span></p></description>
<start>2024-02-13T10:00:00-05:00</start>
<end>2024-02-13T11:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11622353</URL>
<color>#F5E616</color>
<location>Online</location>
<campus>Virtual Workshop</campus>
<presenter>Chasz Griego</presenter>
<categories>
<category>Open Science</category>
<category>Working With Data</category>
</categories>
<registration>
<seats>300</seats>
<seats_taken>1</seats_taken>
<wait_list>false</wait_list>
</registration>
</event>
<event>
<id>11622486</id>
<title>Introduction to Academic Publishing Processes and Models</title>
<description><p style="line-height:1.38; margin-top:16px; margin-bottom:16px"><span style="font-size:9pt; font-variant-ligatures:normal; font-variant-numeric:normal; font-variant-caps:normal; font-variant-alternates:normal; font-variant-east-asian:normal; font-variant-position:normal; white-space:pre-wrap"><span style="font-family:Verdana"><span style="color:#000000"><span style="font-weight:700"><span style="font-style:normal"><span style="text-decoration:none"></span></span></span></span></span></span><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-size:12px;">This workshop will introduce academic publishing models, including Open Access models,&nbsp;and the publishing process of a scholarly work, including the peer-review process.</span></span></p>
<p dir="ltr"><span style="font-size:9pt; font-variant-ligatures:normal; font-variant-numeric:normal; font-variant-caps:normal; font-variant-alternates:normal; font-variant-east-asian:normal; font-variant-position:normal; white-space:pre-wrap"><span style="font-family:Verdana"><span style="color:#000000"><span style="font-weight:400"><span style="font-style:normal"><span style="text-decoration:none"></span></span></span></span></span></span></p></description>
<start>2024-02-13T11:00:00-05:00</start>
<end>2024-02-13T12:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11622486</URL>
<color>#B3C8EF</color>
<location>Sorrells Library, Den</location>
<campus>Sorrells Library</campus>
<presenter>Emily Bongiovanni</presenter>
<registration>
<seats>40</seats>
<seats_taken>3</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11738974</id>
<title>Qualitative Research Design</title>
<description><p>This workshop is part of the Qualitative Research series. This workshop discusses the fundamentals of Qualitative Research Design and gives an introduction to how to conduct a qualitative research data collection and analysis.</p></description>
<start>2024-02-13T12:00:00-05:00</start>
<end>2024-02-13T13:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11738974</URL>
<color>#C3C3C3</color>
<location></location>
<campus>Virtual Workshop</campus>
<presenter>Taiwo Lasisi</presenter>
<categories>
<category>Working With Data</category>
</categories>
<registration>
<seats>50</seats>
<seats_taken>2</seats_taken>
<wait_list>false</wait_list>
</registration>
</event>
<event>
<id>11676663</id>
<title>Introduction to R Part 1: Getting started with R and RStudio</title>
<description><p><meta charset="utf-8"><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;"></span></span></p>
<p>This 2-part introductory workshop aims to teach basic concepts, skills, and tools for working with data in R so that you can get more done in less time, and apply concepts of reproducibility to your research. This is an introduction to R designed for participants with no programming experience. Part 1 of the workshop covers basic information about R syntax and the RStudio interface, including installing packages and working with vectors. <a href="https://cmu.libcal.com/event/11676685">Part 2</a> will cover importing CSV files, working with dataframes, how to deal with factors, how to add/remove rows and columns using the popular dplyr package, and how to calculate summary statistics from a data frame. Taking Part 1 and Part 2 is encouraged, but optional.</p>
<p><br />
Learners should bring a laptop and should already have installed R and RStudio on their computer. Installation and set-up instructions, as well as a detailed curriculum for the workshop <a href="https://cmu-lib.github.io/portfolio_workshop/content/introR.html">can be found here</a>.</p>
<p><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-size:12px;"></span></span></p>
<p>Part 1 Learning Outcomes</p>
<ul>
<li>Describe the different panes in the RStudio environment and how they are used when coding in R.</li>
<li>Run lines of R code from a script file to the console.</li>
<li>Create and store new objects in R.</li>
<li>Find help information for functions.</li>
<li>Use functions in R with appropriate syntax and arguments.</li>
<li>Define, create and manipulate vectors in R.</li>
</ul>
<p><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-size:12px;"></span></span></p></description>
<start>2024-02-14T09:00:00-05:00</start>
<end>2024-02-14T10:30:00-05:00</end>
<URL>https://cmu.libcal.com/event/11676663</URL>
<color>#2A96DE</color>
<location></location>
<campus>Virtual Workshop</campus>
<presenter>Sarah Young</presenter>
<categories>
<category>Open Science</category>
<category>Working With Data</category>
</categories>
<registration>
<seats>300</seats>
<seats_taken>2</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11702384</id>
<title>ARTS x ESHIP: Financial Statements and Bookkeeping for Entrepreneurs</title>
<description><p>Thinking of starting (or expanding) your art business, but aren&rsquo;t really sure how to keep track of all the financial information? Join us at this virtual workshop for an introductory lesson on financial statements and bookkeeping for entrepreneurs. This workshop will include advice on keeping your data organized, financial statement templates for arts entrepreneurs, bookkeeping tips, and more!</p>
<p>This is one of several workshops, contained within the Arts X EShip Spring 2024 series.</p></description>
<start>2024-02-14T12:00:00-05:00</start>
<end>2024-02-14T13:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11702384</URL>
<color>#B3C8EF</color>
<location>Online</location>
<campus>Virtual Workshop</campus>
<presenter>Jimmy McKee & Ashley Werlinich</presenter>
<registration>
<seats>300</seats>
<seats_taken>2</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11720619</id>
<title>Introduction to Python for Data Science: Analyzing Data with Logic and Iteration</title>
<description><p style="line-height:1.38; margin-top:16px; margin-bottom:16px"><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-size:12px;">In the final part of the 3-part workshop series, &quot;Introduction to Python for Data Science,&quot; we offer an overview of Python fundamentals for performing iterative tasks with for loops and conditional tasks using logic and if statements. We will then show how to apply these programming techniques to analyze and visualize multiple tabular datasets with Pandas. The content covered in this workshop will be a continuation of the content covered in part 1, &quot;Introduction to Basic Programming with Data&quot; and part 2, &quot;Plotting and Analyzing Tabular Datasets&quot;. We highly encourage attending both part 1 and 2 of the series before this workshop, especially for learners that are new to the Python programming language.</span></span></p></description>
<start>2024-02-14T13:00:00-05:00</start>
<end>2024-02-14T15:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11720619</URL>
<color>#F5E616</color>
<location>Sorrells Library, Den</location>
<campus>Sorrells Library</campus>
<presenter></presenter>
<categories>
<category>Open Science</category>
<category>Open Science</category>
<category>Working With Data</category>
</categories>
<registration>
<seats>30</seats>
<seats_taken>2</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11676509</id>
<title>Cleaning Untidy Data with OpenRefine</title>
<description><p><meta charset="utf-8"><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;"></span></span></p>
<p>Tired of spending hours and hours cleaning messy data in Excel spreadsheets? Come learn <a href="https://openrefine.org/">OpenRefine</a>, an easy-to-use, open source tool for data cleaning. OpenRefine (formerly Google Refine) helps you prepare your data for analysis. Quickly and easily transform data, split and merge columns, remove whitespace, and perform many more common data cleaning tasks. With OpenRefine, you can also easily create JSON scripts for repeating series of tasks across multiple datasets.</p>
<p>No previous experience is required. This will be a hands-on workshop--please bring a laptop.</p>
<p>&nbsp;</p>
<p><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-size:12px;"></span></span></p>
<p>&nbsp;</p></description>
<start>2024-02-15T12:00:00-05:00</start>
<end>2024-02-15T13:30:00-05:00</end>
<URL>https://cmu.libcal.com/event/11676509</URL>
<color>#F5E616</color>
<location></location>
<campus>Virtual Workshop</campus>
<presenter>Sarah Young</presenter>
<categories>
<category>Open Science</category>
<category>Working With Data</category>
</categories>
<registration>
<seats>300</seats>
<seats_taken>2</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11720634</id>
<title>Building Your Programming Toolbox: Collaborating with GitHub</title>
<description><p style="line-height:1.38; margin-top:16px; margin-bottom:16px"><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-size:12px;"></span></span>If you are interested in creating and collaborating on remote repositories on GitHub, this workshop is for you if you are a beginner or just seeking to refine your skills. GitHub is a cloud-based platform for open and collaborative software development and version control using Git. Topics covered will include pushing/pulling changes to files in a local repository to GitHub, making copies of public repositories to modify, and collaboratively pushing changes to a common repository shared among workshop participants.&nbsp;</p>
<p>This hands-on introduction to collaborating with GitHub is part 3 of a four-part series called &quot;Building Your Programming Toolbox.&quot;&nbsp;We highly encourage attending the first two parts of the workshop series, &quot;Command Line Crash Course for Beginners&quot; and &quot;Version Control with Git&quot; before this workshop, especially for learners who are new to a command line interface and version control.&nbsp;</p>
<p style="line-height:1.38; margin-top:16px; margin-bottom:16px"><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-size:12px;"></span></span></p></description>
<start>2024-02-19T13:00:00-05:00</start>
<end>2024-02-19T15:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11720634</URL>
<color>#F5E616</color>
<location>Sorrells Library, Den</location>
<campus>Sorrells Library</campus>
<presenter></presenter>
<categories>
<category>Open Science</category>
<category>Open Science</category>
<category>Working With Data</category>
</categories>
<registration>
<seats>30</seats>
<seats_taken>1</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11851456</id>
<title>Data Visualization BestPractices</title>
<description><p><meta charset="utf-8"></p>
<p dir="ltr">Data visualization, or the techniques used to visually display or communicate data, is an obvious output of our research or data analysis. Being able to effectively communicate your data to an audience is a necessary part of any project. How to harness visualization tools to tell a story will be presented in this short workshop. We will discuss how different types of graphs and charts are perceived and how they can be used to answer different questions, as well as what aspects of graphs make for effective storytelling.</p>
<p>This workshop is a part of CMU Libraries&rsquo;&nbsp;<em><strong>Communicating Data and Research Storytelling</strong></em> . For other workshops in the series, please see the links below at CMU Libraries website:&nbsp;</p>
<p>Data Storytelling | <a href="https://cmu.libcal.com/event/11851398">February 13th</a>&nbsp;</p>
<p>Data Visualization Best Practices | <a href="https://cmu.libcal.com/event/11851456">February 20th</a></p>
<p>Data Visualization in Tableau | <a href="https://cmu.libcal.com/event/11851521">February 27th</a></p>
<p>
<style type="text/css"><!--td {border: 1px solid #cccccc;}br {mso-data-placement:same-cell;}-->
</style>
Data Visualization and Tableau Dashboards | <a href="https://cmu.libcal.com/event/11851565">March 12th</a>&nbsp;</p>
<p>Data Visualization in R | <a href="https://cmu.libcal.com/event/11851585">March 19th</a></p>
<p>
<style type="text/css"><!--td {border: 1px solid #cccccc;}br {mso-data-placement:same-cell;}-->
</style>
Introduction to Data Visualization in R Shiny | <a href="https://cmu.libcal.com/event/11851602">March 26th&nbsp;</a></p>
<p>Data for Citizen Science on Community Data | <a href="https://cmu.libcal.com/event/11851621">April 2nd</a></p></description>
<start>2024-02-20T09:00:00-05:00</start>
<end>2024-02-20T10:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11851456</URL>
<color>#2A96DE</color>
<location></location>
<campus>Virtual Workshop</campus>
<presenter></presenter>
<categories>
<category>Working With Data</category>
</categories>
<registration>
<seats>40</seats>
<seats_taken>1</seats_taken>
<wait_list>false</wait_list>
</registration>
</event>
<event>
<id>11676685</id>
<title>Introduction to R Part 2: Working with data in R</title>
<description><p><meta charset="utf-8"><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;"></span></span></p>
<p>This 2-part introductory workshop aims to teach basic concepts, skills, and tools for working with data in R so that you can get more done in less time, and apply concepts of reproducibility to your research. This is an introduction to R designed for participants with no programming experience. Part 1 of the workshop covers basic information about R syntax and the RStudio interface, including installing packages and working with vectors. Part 2 will cover importing CSV files, working with dataframes, how to deal with factors, how to add/remove rows and columns using the popular dplyr package, and how to calculate summary statistics from a data frame. Taking Part 1 and Part 2 is encouraged, but optional.</p>
<p><br />
Learners should bring a laptop and should already have installed R and RStudio on their computer. Installation and set-up instructions, as well as a detailed curriculum for the workshop <a href="https://cmu-lib.github.io/portfolio_workshop/content/introR.html">can be found here</a>.</p>
<p><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-size:12px;"></span></span></p>
<p>Part 2</p>
<ul>
<li>Install packages and load libraries in R.</li>
<li>Import a dataset and use tidyverse functions to explore dataset attributes.</li>
<li>Create subsets of dataframes.</li>
<li>Work with categorical variables in R.</li>
<li>Use the dplyr package to select columns and filter rows.</li>
<li>Use the dplyr package to perform various operations on a dataframe such as creating new variables, splitting and combining data, and summarizing data.</li>
<li>Use pipes in R to string together a series of steps.</li>
<li>Export a data set from R Studio.</li>
</ul></description>
<start>2024-02-21T09:00:00-05:00</start>
<end>2024-02-21T10:30:00-05:00</end>
<URL>https://cmu.libcal.com/event/11676685</URL>
<color>#F5E616</color>
<location></location>
<campus>Virtual Workshop</campus>
<presenter>Sarah Young</presenter>
<categories>
<category>Open Science</category>
<category>Working With Data</category>
</categories>
<registration>
<seats>300</seats>
<seats_taken>2</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11702839</id>
<title>ARTS x ESHIP: How to Work In-Person Events</title>
<description><p>Join guest speaker Peter DePasquale (Career Consultant for the College of Fine Arts and co-owner of wearables brand <a href="https://www.minima-maxima.com/">MINIMA-MAXIMA</a>) as he discusses best practices for working in person events as an arts entrepreneur!</p>
<p>This is one of several workshops, contained within the Arts X EShip Spring 2024 series.</p></description>
<start>2024-02-21T12:00:00-05:00</start>
<end>2024-02-21T13:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11702839</URL>
<color>#B3C8EF</color>
<location>Online</location>
<campus>Virtual Workshop</campus>
<presenter>Jimmy McKee & Ashley Werlinich</presenter>
<registration>
<seats>300</seats>
<seats_taken>1</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11620640</id>
<title>Introduction to Research Data Management and Data Management Plans</title>
<description><p style="line-height:1.38; margin-top:16px; margin-bottom:16px"><span style="font-size:9pt; font-variant-ligatures:normal; font-variant-numeric:normal; font-variant-caps:normal; font-variant-alternates:normal; font-variant-east-asian:normal; font-variant-position:normal; white-space:pre-wrap"><span style="font-family:Verdana"><span style="color:#000000"><span style="font-weight:700"><span style="font-style:normal"><span style="text-decoration:none"></span></span></span></span></span></span><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;">This workshop will introduce the FAIR data principles (Findable, Accessible, Interoperable, and Reusable) and research data management plans.&nbsp;</span></span></p>
<p dir="ltr"><span style="font-size:9pt; font-variant-ligatures:normal; font-variant-numeric:normal; font-variant-caps:normal; font-variant-alternates:normal; font-variant-east-asian:normal; font-variant-position:normal; white-space:pre-wrap"><span style="font-family:Verdana"><span style="color:#000000"><span style="font-weight:400"><span style="font-style:normal"><span style="text-decoration:none"></span></span></span></span></span></span></p></description>
<start>2024-02-22T12:00:00-05:00</start>
<end>2024-02-22T13:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11620640</URL>
<color>#2A96DE</color>
<location>Sorrells Library, Den</location>
<campus>Sorrells Library</campus>
<presenter>Emily Bongiovanni</presenter>
<categories>
<category>Working With Data</category>
</categories>
<registration>
<seats>35</seats>
<seats_taken>3</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11720699</id>
<title>Building Your Programming Toolbox: Creating Websites and Portfolios with GitPages</title>
<description><p style="line-height:1.38; margin-top:16px; margin-bottom:16px"><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-size:12px;"></span></span><a href="https://pages.github.com/">GitPages</a>&nbsp;is a free platform for hosting your own simple website and showcasing your work to potential employers and clients. In this workshop, we&#39;ll introduce you to Git and GitHub, and then we&#39;ll provide a hands-on experience with setting up a GitPage website using Jekyll, a versatile website generator that uses markdown or HTML to create static websites with many templates to choose from.&nbsp;</p>
<p>This workshop is the final part of a four-part series called &quot;Building Your Programming Toolbox.&quot;&nbsp;No prior knowledge or experience with Git, GitHub or GitPages is required, but we highly encourage attending parts 1-3 if you if you are interested in building your skills on the command line or learning version control with Git and GitHub.</p>
<p style="line-height:1.38; margin-top:16px; margin-bottom:16px"><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-size:12px;"></span></span></p></description>
<start>2024-02-26T13:00:00-05:00</start>
<end>2024-02-26T15:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11720699</URL>
<color>#F5E616</color>
<location>Sorrells Library, Den</location>
<campus>Sorrells Library</campus>
<presenter></presenter>
<categories>
<category>Open Science</category>
<category>Open Science</category>
<category>Working With Data</category>
<category>Writing and Publishing</category>
</categories>
<registration>
<seats>30</seats>
<seats_taken>1</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11851521</id>
<title>Introduction to Tableau</title>
<description><p><meta charset="utf-8"><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;"></span></span></p>
<p>Are you currently involved in work that could be augmented by visualizing your data for analysis or to communicate your findings to the public? Would you like to further your skills or learn new ways to make charts, graphs, maps using the Tableau?</p>
<p>Being able to effectively communicate your data to an audience is a necessary part of any project, and is made easier through the use of visualization tool like Tableau. In this workshop, we will discuss the basic capabilities of Tableau as well as take a hands-on approach to using the tool.</p>
<p>Please have downloaded Tableau with a student (https://www.tableau.com/academic/students) or teacher (https://www.tableau.com/academic/teaching) license prior to the workshop.</p>
<p>This workshop is a part of CMU Libraries&rsquo;&nbsp;<em><strong>Communicating Data and Research Storytelling</strong></em> . For other workshops in the series, please see the links below at CMU Libraries website:&nbsp;</p>
<p>Data Storytelling | <a href="https://cmu.libcal.com/event/11851398">February 13th</a>&nbsp;</p>
<p>Data Visualization Best Practices | <a href="https://cmu.libcal.com/event/11851456">February 20th</a></p>
<p>Data Visualization in Tableau | <a href="https://cmu.libcal.com/event/11851521">February 27th</a></p>
<p>
<style type="text/css"><!--td {border: 1px solid #cccccc;}br {mso-data-placement:same-cell;}-->
</style>
Data Visualization and Tableau Dashboards | <a href="https://cmu.libcal.com/event/11851565">March 12th</a>&nbsp;</p>
<p>Data Visualization in R | <a href="https://cmu.libcal.com/event/11851585">March 19th</a></p>
<p>
<style type="text/css"><!--td {border: 1px solid #cccccc;}br {mso-data-placement:same-cell;}-->
</style>
Introduction to Data Visualization in R Shiny | <a href="https://cmu.libcal.com/event/11851602">March 26th&nbsp;</a></p>
<p>Data for Citizen Science on Community Data | <a href="https://cmu.libcal.com/event/11851621">April 2nd</a></p>
<p><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-size:12px;"></span></span></p>
<p>&nbsp;</p></description>
<start>2024-02-27T09:00:00-05:00</start>
<end>2024-02-27T10:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11851521</URL>
<color>#2A96DE</color>
<location></location>
<campus>Virtual Workshop</campus>
<presenter></presenter>
<categories>
<category>Working With Data</category>
</categories>
<registration>
<seats>40</seats>
<seats_taken>2</seats_taken>
<wait_list>false</wait_list>
</registration>
</event>
<event>
<id>11732026</id>
<title>Easing the transition from MATLAB to Python with AI</title>
<description><p style="line-height:1.38; margin-top:16px; margin-bottom:16px"><span style="font-size:12px;"><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-variant: normal; white-space: pre-wrap;"><span style="color:#000000"><span style="font-weight:400"><span style="font-style:normal"><span style="text-decoration:none">Are you reliant on MATLAB for your coding needs, but interested in embracing the freedom of a non-proprietary platform? Python is a versatile and readable open-source programming language that is widely used across diverse domains, including: web development, data science, and artificial intelligence. This workshop is for individuals seeking to liberate their coding experience from proprietary constraints and explore the expansive world of non-proprietary alternatives. We&rsquo;ll use AI chatbots, such as ChatGPT and Bard, to ease the MATLAB-to-Python transition. </span></span></span></span></span><span style="font-variant: normal; white-space: pre-wrap;"><span style="color:#000000"><span style="font-weight:400"><span style="font-style:normal"><span style="text-decoration:none"></span></span></span></span></span><br />
<span style="font-variant: normal; white-space: pre-wrap;"><span style="color:#000000"><span style="font-weight:400"><span style="font-style:normal"><span style="text-decoration:none"></span></span></span></span></span><br />
<span style="font-variant: normal; white-space: pre-wrap;"><span style="color:#000000"><span style="font-weight:400"><span style="font-style:normal"><span style="text-decoration:none">While not required, attendees are encouraged to bring MATLAB code they would like converted to Python.</span></span></span></span></span></span></span></p></description>
<start>2024-02-27T13:00:00-05:00</start>
<end>2024-02-27T15:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11732026</URL>
<color>#F5E616</color>
<location>Sorrells Library, Den</location>
<campus>Sorrells Library</campus>
<presenter>Kristen Scotti</presenter>
<categories>
<category>Open Science</category>
</categories>
<registration>
<seats>30</seats>
<seats_taken>1</seats_taken>
<wait_list>true</wait_list>
</registration>
</event>
<event>
<id>11720891</id>
<title>Encapsulating Reproducible Computational Research with Code Ocean</title>
<description><p style="line-height:1.38; margin-top:16px; margin-bottom:16px"><span style="font-family:Verdana,Geneva,sans-serif;"><span style="font-size:12px;">Code Ocean is a cloud-based platform for creating, organizing, and sharing reproducible computational research environments. In this workshop, we will show you how to create a &quot;Capsule&quot; for a computational research project. We will demonstrate how to organize data, code, and results in a Capsule, create a reproducible snapshot of a software environment for a variety of programming languages and libraries (including Python, R, MATLAB, and Julia), and create metadata to prepare your project for publication and enhanced discoverability. This workshop is open to anyway that is interested in computational reproducibility. No prior experience with a programming language is required, but we encourage participants to attend with a project in mind, so that they are able to immediately utilize this platform. &nbsp; &nbsp;</span></span></p></description>
<start>2024-02-28T10:00:00-05:00</start>
<end>2024-02-28T12:00:00-05:00</end>
<URL>https://cmu.libcal.com/event/11720891</URL>
<color>#F5E616</color>