-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguides.yml
More file actions
2373 lines (2297 loc) · 110 KB
/
guides.yml
File metadata and controls
2373 lines (2297 loc) · 110 KB
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
---
- id: 1
title: Installing Power BI Desktop
url: https://mdl.library.utoronto.ca/technology/tutorials/installing-power-bi-desktop
description: This tutorial will run you through the steps for installing **Power BI Desktop** on your own device. Power BI is Microsoft's Data Visualization tool, allowing users to turn their data into insightful visuals.
technique:
- Data Visualization
tool:
- Power BI
date: "2025-09-05"
series: MDL Tutorials
type: Tutorial
- id: 2
title: Introduction to Power BI
url: https://mdl.library.utoronto.ca/technology/tutorials/introduction-power-bi
description: |
This tutorial outlines the steps taken in the demonstration during the live workshop on an Introduction to Data Visualization Using Power BI. This is a companion tutorial, but can also be used as a stand-alone introduction to Power BI Desktop.
technique:
- Data Visualization
tool:
- Power BI
dataFormat: Statistics
date: "2025-09-05"
series: MDL Tutorials
type: Tutorial
- id: 3
title: Getting MAXQDA
url: https://mdlutoronto.github.io/maxqda-getting/
description: |
MAXQDA is qualitative data analysis software. You are able to access it in the 4th floor computer lab of Robarts Library or purchase your own personal copy.
technique:
- Qualitative Data Analysis
tool:
- MAXQDA
date: "2025-08-08"
series: MDL Tutorials
type: Guide
- id: 4
title: Introduction to Using MAXQDA for Qualitative Data Analysis
url: https://mdl.library.utoronto.ca/technology/tutorials/introduction-using-maxqda-qualitative-data-analysis
description: |
This is an introductory tutorial for MAXQDA. The goal of this tutorial is to learn about the basic features in MAXQDA that will allow you to organize and analyze qualitative data. Part 1 will teach you to use MAXQDA, to load information, code documents, make notes, and export information. Part 2 will explore some of MAXQDA's more advanced features, such as document variables, and analysis and visual tools. If you already have a grasp of the basics and are just interested in learning about the more advanced features, you can jump right to Part 2.
technique:
- Qualitative Data Analysis
tool:
- MAXQDA
date: "2025-08-08"
series: MDL Tutorials
type: Tutorial
- id: 5
title: Moving from NVivo to MAXQDA
url: https://mdlutoronto.github.io/nvivo-to-maxqda/
description: |
To move between qualitative data analysis tools, you must put your project file into [REFI-QDA standard](https://www.qdasoftware.org/).
technique:
- Qualitative Data Analysis
tool:
- MAXQDA
- NVivo
date: "2025-08-08"
series: MDL Tutorials
type: Guide
- id: 6
title: "MAXQDA: Information, Resources, Tutorials, and Workshops"
url: https://mdl.library.utoronto.ca/technology/tutorials/maxqda-information-resources-tutorials-and-workshops
description: |
[MAXQDA](https://www.maxqda.com/) is a program used for qualitative data analysis. It supports researchers in managing, organizing, and analyzing qualitative data to produce new insight, infer relationships, and identify themes.
technique:
- Qualitative Data Analysis
tool:
- MAXQDA
date: "2025-07-22"
series: MDL Tutorials
type: Tutorial
- id: 7
title: Accessing JSTOR Text Analysis Support
url: https://mdlutoronto.github.io/jstor-text-analysis-support-access/
description: |
This tutorial shows how to register for a JSTOR account and use the JSTOR Text Analysis tools, which replace the [now-ended Constellate platform](https://constellate.org/docs/constellate-sunset).
technique:
- Text and Data Mining
tool:
- Python
date: "2025-06-25"
series: MDL Tutorials
type: Tutorial
- id: 8
title: Transferring Data to a Public ArcGIS Online Account
url: https://mdlutoronto.github.io/arcgis-online-account-transferring-data-public/
description: |
This tutorial provides step-by-step guidance on how to transfer work on ArcGIS Online from a University of Toronto (UofT) institutional account to the free (aka ‘public’) version of the service.
technique:
- Converting data formats
- Extracting data
tool:
- ArcGIS Online
date: "2025-05-30"
series: MDL Tutorials
type: Tutorial
- id: 9
title: Geospatial Analysis with Python & Jupyter Notebooks
url: https://mdlutoronto.github.io/python-jupyter-notebooks-geospatial-analysis/
description: |
This tutorial provides detailed walk-throughs of how to use Jupyter Notebooks and open-source Python libraries to perform geospatial analysis.
technique:
- Spatial Analysis
tool:
- Python
date: "2025-05-29"
series: MDL Tutorials
type: Tutorial
- id: 10
title: Working with the Data Axle Historical Business Location Data
url: https://mdlutoronto.github.io/working-data-axle-historical-business-location/
description: |
The Data Axle Historical Business Location Data provides one data file (.txt or .csv format) for each year. The [US data](https://borealisdata.ca/dataset.xhtml?persistentId=doi:10.5683/SP3/GY5K1C) runs from 1997-2024 and contains 11-15 million records per year. The [Canadian data](https://borealisdata.ca/dataset.xhtml?persistentId=doi:10.5683/SP3/IPKREG) runs from 2009-2023 and contains 1.5-2.5 million records per year. Records provide information about business location (including address, census geography & lat/long coordinates (US database only)), number of employees, sales volume, NAICS & SIC codes, unique identifier across time for businesses and parent entities. Complete record layouts and decodes are available for download via the Borealis links above.
date: "2025-05-22"
series: MDL Tutorials
type: Tutorial
- id: 11
title: Accessing and Querying the Revelio Datasets
url: https://mdlutoronto.github.io/revelio-datasets-accessing-querying/
description: |
The University of Toronto has licensed six separate datasets from [Revelio Labs](https://www.reveliolabs.com/data/). These are workforce datasets that range in size from 1 to 4 TB. To facilitate easy access and querying across products, all datasets have been loaded into SciNet's supercomputing environment. Access to this environment can only be granted to current University of Toronto Faculty, Staff and Students, after an application process. This page contains additional details about this process, as well as the data itself and how to query it.
technique:
- Quantitative Data Analysis
date: "2025-05-21"
series: MDL Tutorials
type: Tutorial
- id: 12
title: Introduction to Working with Notebooks in ArcGIS Pro
url: https://mdlutoronto.github.io/arcgis-pro-intro-working-notebooks/
description: |
This guide provides some introductory information on how to use notebooks in the ArcGIS Pro environment. You will learn about what notebooks are, how to use them, and some useful tips on using ArcPy to analyze your geospatial data.
technique:
- Data Visualization
- Mapping
- Spatial Analysis
tool:
- ArcGIS Pro
date: "2025-02-18"
series: MDL Tutorials
type: Tutorial
- id: 13
title: "Bits and Bytes Series: Canadian Census Discovery Portal (Sept. 22, 2020)"
url: https://mdlutoronto.github.io/bits-bytes-series-canadian-census-discovery-sep-22-2020/
description: |
This page provides a presentation on the **Canadian Census Discovery Portal** as part of the Bits and Bytes Webinar Series hosted by the Map & Data Library that features presentations and demonstrations on data-related topics and tools, such as web archives, visualization, GIS and statistics.
technique:
- Searching for maps and data
date: "2025-02-13"
series: Bits and Bytes
type: Video
- id: 14
title:
"Bits and Bytes Series: Constellate - A New Platform to Learn Text Analysis
(Jun. 28, 2021)"
url: https://mdl.library.utoronto.ca/technology/tutorials/bits-and-bytes-series-constellate-new-platform-learn-text-analysis-jun-28-2021
description: |
Please note that Constellate is ending on July 1st, 2025. Some learning materials will remain available afterwards. This page provides a presentation on Constellate: A New Platform to Learn Text Analysis as part of the Bits and Bytes Webinar Series hosted by the Map & Data Library that features presentations and demonstrations on data-related topics and tools, such as web archives, visualization, GIS and statistics.
technique:
- Text and Data Mining
tool:
- Constellate
date: "2025-02-13"
series: Bits and Bytes
type: Tutorial
- id: 15
title: "Bits and Bytes Series: Getting Started with Python in ArcGIS Pro (Nov. 17, 2020)"
url: https://mdlutoronto.github.io/bits-bytes-series-getting-started-python-nov-17-2020/
description: |
This page provides a presentation on **Getting Started with Python in ArcGIS Pro** as part of the Bits and Bytes Webinar Series hosted by the Map & Data Library that features presentations and demonstrations on data-related topics and tools, such as web archives, visualization, GIS and statistics.
technique:
- Mapping
- Spatial Analysis
- Projecting
tool:
- ArcGIS Pro
- Python
date: "2025-02-13"
series: Bits and Bytes
type: Video
- id: 16
title: "Bits and Bytes Series: Introduction to Dataverse for Sharing Data (Dec.1, 2020)"
url: https://mdl.library.utoronto.ca/technology/tutorials/bits-and-bytes-series-introduction-dataverse-sharing-data-dec-1-2020
description: |
This page provides a presentation on an **Introduction to Dataverse for Sharing Data** as part of the Bits and Bytes Webinar Series hosted by the Map & Data Library that features presentations and demonstrations on data-related topics and tools, such as web archives, visualization, GIS and statistics.
date: "2025-02-13"
series: Bits and Bytes
type: Tutorial
- id: 17
title: "Bits and Bytes Series: Introduction to Web APIs (Apr. 1, 2021)"
url: https://mdlutoronto.github.io/bits-bytes-series-intro-web-apis-apr-1-2021/
description: |
This page provides a presentation on an **Introduction to Web APIs** as part of the Bits and Bytes Webinar Series hosted by the Map & Data Library that features presentations and demonstrations on data-related topics and tools, such as web archives, visualization, GIS and statistics.
technique:
- Text and Data Mining
- Searching for maps and data
date: "2025-02-13"
series: Bits and Bytes
type: Video
- id: 18
title: "Bits and Bytes Series: Using LiDAR Data in ArcGIS Pro (Feb. 25, 2021)"
url: https://mdlutoronto.github.io/bits-bytes-series-lidar-data-arcgis-feb-25-2021/
description: |
This page provides a presentation on **Using LiDAR Data in ArcGIS Pro** as part of the Bits and Bytes Webinar Series hosted by the Map & Data Library that features presentations and demonstrations on data-related topics and tools, such as web archives, visualization, GIS and statistics.
technique:
- Mapping
tool:
- ArcGIS Pro
date: "2025-02-13"
series: Bits and Bytes
type: Video
- id: 19
title: "Bits and Bytes Series: Working with Web Archive Data (Sept. 29, 2020)"
url: https://mdlutoronto.github.io/bits-bytes-series-working-web-archive-sep-29-2020/
description: |
This page provides a presentation on **Working with Web Archive Data** as part of the Bits and Bytes Webinar Series hosted by the Map & Data Library that features presentations and demonstrations on data-related topics and tools, such as web archives, visualization, GIS and statistics.
technique:
- Searching for maps and data
- Extracting data
date: "2025-02-13"
series: Bits and Bytes
type: Video
- id: 20
title: "An Introduction to Programming for Absolute Beginners Using Python Pt. 2 (March, 2025)"
url: https://mdlutoronto.github.io/python-programming-absolute-beginners-part2-mar-2025/
description: |
This page provides a video recording of an introductory workshop on Python, continuing from where the first part of the Python series left off.
tool:
- Python
date: "2025-01-28"
series: MDL Tutorials
type: Video
- id: 21
title: "Workshop Recording: An Introduction to Programming for Absolute Beginners Using Python Pt. 1 (March 2025)"
url: https://mdlutoronto.github.io/python-programming-absolute-beginners-part1-mar-2025/
description: |
This page provides a video recording of the first part of an introductory workshop series on Python.
tool:
- Python
date: "2025-01-28"
series: MDL Tutorials
type: Video
- id: 22
title: "Workshop Recording: Excel: Beyond the Basics (Oct. 25, 2022)"
url: https://mdlutoronto.github.io/workshop-excel-beyond-basics-oct-25-2022/
description: |
This page provides a video recording of a workshop on using intermediate features of Excel.
technique:
- Extracting data
tool:
- Excel
date: "2025-01-28"
series: MDL Tutorials
type: Video
- id: 23
title: "Workshop Recording: Introduction to Data Visualization Using Tableau Desktop (Nov. 24, 2021)"
url: https://mdlutoronto.github.io/workshop-intro-data-viz-tableau-nov-24-2021/
description: |
This page provides a video recording of an introductory workshop on using Tableau Desktop for data visualization.
technique:
- Data Visualization
tool:
- Tableau
date: "2025-01-28"
series: MDL Tutorials
type: Video
- id: 24
title: "Workshop Recording: Introduction to Infographics (Feb. 3, 2022 - Social Science Critique Example)"
url: https://mdlutoronto.github.io/workshop-intro-infographics-2022-social-feb-3-2022/
description: |
This page provides a video recording of a workshop on best practices for creating infographics - with a specific social science related infographic critique example.
technique:
- Data Visualization
date: "2025-01-28"
series: MDL Tutorials
type: Video
- id: 25
title: "Workshop Recording: Introduction to Infographics (Nov. 16, 2021 - Health Critique Example)"
url: https://mdlutoronto.github.io/workshop-intro-infographics-2021-health-nov-16-2021/
description: |
This page provides a video recording of a workshop on best practices for creating infographics - with a specific health-related infographic critique example.
technique:
- Data Visualization
date: "2025-01-28"
series: MDL Tutorials
type: Video
- id: 26
title: "Workshop Recording: Introduction to Network Analysis and Visualization Using Gephi (Nov. 2, 2021)"
url: https://mdlutoronto.github.io/workshop-intro-network-analysis-viz-gephi-nov-2-2021/
description: |
This page provides a video recording of an introductory workshop on using Gephi for network analysis and visualization.
technique:
- Data Visualization
tool:
- Gephi
date: "2025-01-28"
series: MDL Tutorials
type: Video
- id: 27
title: "Workshop Recording: Introduction to NVivo 12 (Mac Version) (Mar. 17, 2022)"
url: https://mdlutoronto.github.io/workshop-intro-nvivo-mac-version-mar-17-2022/
description: |
This page provides a video recording of an introductory workshop on NVivo 12 for Mac.
technique:
- Qualitative Data Analysis
tool:
- NVivo
date: "2025-01-28"
series: MDL Tutorials
type: Video
- id: 28
title: "Workshop Recording: Introduction to R (Dec. 8, 2020)"
url: https://mdlutoronto.github.io/workshop-intro-r-2020-dec-8-2020/
description: |
This page provides a video recording of an introductory workshop on using the R statistical programming language.
technique:
- Data Visualization
- Cleaning data
- Extracting data
tool:
- R
date: "2025-01-28"
series: MDL Tutorials
type: Video
- id: 29
title: "Workshop Recording: Introduction to Stata (Dec. 3, 2021)"
url: https://mdlutoronto.github.io/workshop-intro-stata-2021-dec-3-2021/
description: |
This page provides a video recording of an introductory workshop on Stata.
technique:
- Converting data formats
- Cleaning data
- Extracting data
tool:
- Stata
date: "2025-01-28"
series: MDL Tutorials
type: Video
- id: 30
title: "Workshop Recording: Introduction to Using NVivo 14/15 for Qualitative Data Analysis (Mac Version) (Nov. 26, 2024)"
url: https://mdlutoronto.github.io/workshop-intro-nvivo-qualitative-nov-26-2024/
description: |
This page provides a video recording of an introductory workshop on NVivo 14/15 for Mac.
technique:
- Qualitative Data Analysis
tool:
- NVivo
date: "2025-01-28"
series: MDL Tutorials
type: Video
- id: 31
title: "Workshop Recording: Introduction to Using NVivo 14/15 for Qualitative Data Analysis (Windows Version) (Nov. 12, 2024)"
url: https://mdlutoronto.github.io/workshop-intro-nvivo-qualitative-nov-12-2024/
description: |
This page provides a video recording of an introductory workshop on NVivo 14/15 for Windows.
technique:
- Qualitative Data Analysis
tool:
- NVivo
date: "2025-01-28"
series: MDL Tutorials
type: Video
- id: 32
title: "Workshop Recording: Text Analysis Tasting Menu: A Sampling of Available Tools (Feb. 14, 2022)"
url: https://mdl.library.utoronto.ca/technology/tutorials/workshop-recording-text-analysis-tasting-menu-sampling-available-tools-feb-14
description: |
This page provides a video recording of a workshop on various text analysis tools.
**Please note that [Constellate](https://constellate.org/docs/constellate-sunset) is ending on July 1st, 2025. **Some learning materials will remain available afterwards. Please also note that HathiTrust Research Center will no longer be funded by the end of 2026.
technique:
- Text and Data Mining
- Cleaning data
- Extracting data
tool:
- Constellate
- Digital Scholar Lab
- HathiTrust Research Center
date: "2025-01-28"
series: MDL Tutorials
type: Tutorial
- id: 33
title: "Workshop Recording: Working with Messy Data in OpenRefine (Oct. 28, 2021)"
url: https://mdl.library.utoronto.ca/technology/tutorials/workshop-recording-working-messy-data-openrefine-oct-28-2021
description: |
This page provides a video recording of a workshop on OpenRefine.
technique:
- Cleaning data
tool:
- OpenRefine
date: "2025-01-28"
series: MDL Tutorials
type: Tutorial
- id: 34
title: "Self-Paced Online Course: Data Visualization - An Introduction (Part 1 – Theory and Critique)"
url: https://mdlutoronto.github.io/self-paced-data-viz-part-1/
description: |
This page provides access to a Data Visualization self-paced online Quercus course that focuses on data viz theory and provides opportunities to practice critiquing visualizations.
technique:
- Data Visualization
date: "2025-01-24"
series: MDL Tutorials
type: Self-paced course
- id: 35
title: "Self-Paced Online Course: Data Visualization - An Introduction (Part 2 – Practice with Tableau)"
url: https://mdlutoronto.github.io/self-paced-data-viz-part-2/
description: |
This page provides access to a Data Visualization self-paced online Quercus course that introduces participants to Tableau Desktop. Participants will learn to create visualizations using some example datasets.
technique:
- Data Visualization
tool:
- Tableau
date: "2025-01-24"
series: MDL Tutorials
type: Self-paced course
- id: 36
title: "Self-Paced Online Course: Introduction to Infographics"
url: https://mdlutoronto.github.io/self-paced-intro-infographics/
description: |
This page provides access to an Infographics self-paced online Quercus
course that focuses on best practices for creating infographics.
technique:
- Data Visualization
tool:
- Piktochart
date: "2025-01-24"
series: MDL Tutorials
type: Self-paced course
- id: 37
title: "Self-Paced Online Course: R - An Introduction"
url: https://mdlutoronto.github.io/self-paced-intro-r/
description: |
This page provides access to a self-paced online Quercus course that focuses on how to use R for exploring and manipulating data.
technique:
- Data Visualization
- Cleaning data
- Extracting data
tool:
- R
date: "2025-01-24"
series: MDL Tutorials
type: Self-paced course
- id: 38
title: "Self-Paced Online Course: R - Intermediate"
url: https://mdlutoronto.github.io/self-paced-intermediate-r/
description: |
This page provides access to a self-paced online Quercus course that focuses on using R for intermediate level data manipulation and visualization, and programming flow control.
technique:
- Data Visualization
- Cleaning data
- Extracting data
tool:
- R
date: "2025-01-24"
series: MDL Tutorials
type: Self-paced course
- id: 39
title: "Self-Paced Online Course: Working with Messy Data in OpenRefine"
url: https://mdlutoronto.github.io/self-paced-openrefine-messy-data/
description: |
This page provides access to a self-paced online Quercus course that focuses on data cleaning using OpenRefine.
technique:
- Cleaning data
tool:
- OpenRefine
date: "2025-01-24"
series: MDL Tutorials
type: Self-paced course
- id: 40
title: "Workshop Recording: An Introductory Tour of ArcGIS Pro (Oct. 1, 2024)"
url: https://mdlutoronto.github.io/workshop-intro-arcgis-pro-oct-1-2024/
description: |
This page provides a video recording of an introductory workshop on ArcGIS Pro.
technique:
- Mapping
- Spatial Analysis
tool:
- ArcGIS Pro
date: "2025-01-24"
series: MDL Tutorials
type: Video
- id: 41
title: "Workshop Recording: ArcGIS Pro - Spatial Analysis (Nov. 1, 2024)"
url: https://mdlutoronto.github.io/workshop-arcgis-pro-spatial-analysis-nov-1-2024/
description: |
This page provides a video recording of a workshop in ArcGIS Pro focusing on spatial analysis.
technique:
- Mapping
- Spatial Analysis
tool:
- ArcGIS Pro
date: "2025-01-24"
series: MDL Tutorials
type: Video
- id: 42
title: "Workshop Recording: ArcGIS Pro - Loading and Manipulating Data (Oct. 15, 2024)"
url: https://mdlutoronto.github.io/workshop-arcgis-pro-loading-manipulating-data-oct-15-2024/
description: |
This page provides a video recording of a workshop on ArcGIS Pro that focuses on loading and manipulating data.
technique:
- Mapping
- Spatial Analysis
tool:
- ArcGIS Pro
date: "2025-01-24"
series: MDL Tutorials
type: Video
- id: 43
title: "Workshop Recording: Constellate - A New Platform for Text Analysis (Nov. 30, 2021)"
url: https://mdl.library.utoronto.ca/technology/tutorials/workshop-recording-constellate-new-platform-text-analysis-nov-30-2021
description: |
This page provides a video recording of an introductory workshop on Constellate. Please note that Constellate is ending on July 1st, 2025. Some learning materials will remain available afterwards.
technique:
- Text and Data Mining
tool:
- Constellate
date: "2025-01-24"
series: MDL Tutorials
type: Tutorial
- id: 44
title: "Workshop Recording: Introduction to NVivo 12 (Windows Version) (Mar. 15, 2022)"
url: https://mdlutoronto.github.io/workshop-intro-nvivo-windows-version-mar-15-2022/
description: |
This page provides a video recording of a introductory workshop on NVivo 12 for Windows.
technique:
- Qualitative Data Analysis
tool:
- NVivo
date: "2025-01-24"
series: MDL Tutorials
type: Video
- id: 45
title: Downloading, Installing, and Licensing ArcGIS CityEngine
url: https://mdlutoronto.github.io/arcgis-cityengine-install-license/
description: |
This tutorial goes over how to download, install, and license ArcGIS CityEngine with your UTORid.
technique:
- Mapping
- Spatial Analysis
- Installation
tool:
- ArcGIS
date: "2024-11-21"
series: MDL Tutorials
type: Tutorial
- id: 46
title: Introduction to GIS using R
url: https://mdlutoronto.github.io/r-gis-intro/
description: |
This tutorial is a beginner friendly introduction to work with GIS data using R. The topics covered are creating and importing GIS data including point, line, and polygon features; making maps; and running common spatial analyses. The main spatial package used is the sf package.
technique:
- Quantitative Data Analysis
- Mapping
- Spatial Analysis
tool:
- R
dataFormat: Microdata
date: "2024-09-19"
series: MDL Tutorials
type: Tutorial
- id: 47
title: Installing and Licensing NVivo 15 for Mac
url: https://mdlutoronto.github.io/nvivo-15-mac-install-license/
description: |
This tutorial is for installing and licensing **NVivo 15** on Mac computers.
Find information on how to request a license, download and install the software, as well as how to activate the license key for new and existing users. *Note: If you need NVivo 14, please reach out to us using our [contact form](https://mdl.library.utoronto.ca/about/contact-form)*
technique:
- Installation
tool:
- NVivo
date: "2024-09-06"
series: MDL Tutorials
type: Tutorial
- id: 48
title: Installing and Licensing NVivo 15 for Windows
url: https://mdlutoronto.github.io/nvivo-15-windows-install-license/
description: |
This tutorial is for installing and licensing **NVivo 15** on Windows computers. Find information on how to request a license, download and install the software, as well as how to activate the license key for new and existing users. *Note: If you need NVivo 14, please reach out to us using our [contact form](https://mdl.library.utoronto.ca/about/contact-form)*
technique:
- Installation
tool:
- NVivo
date: "2024-08-30"
series: MDL Tutorials
type: Tutorial
- id: 49
title: Guide for Site Research
url: https://mdlutoronto.github.io/site-research-guide/
description: |
Site research involves the comprehensive analysis of a location's physical, cultural, and environmental characteristics. This process encompasses assessing topography, climate, zoning regulations, and existing infrastructure, as well as understanding the historical and social context of the site. Other terms often used interchangeably with site research include site analysis, site assessment, and contextual analysis.
technique:
- Searching for maps and data
dataFormat:
- Paper maps
- Statistics
- Vector
date: "2024-08-12"
series: MDL Tutorials
type: Guide
- id: 50
title: Introduction to R Shiny
url: https://mdlutoronto.github.io/r-shiny-intro/
description: |
Shiny is a powerful open-source tool that is used to build easy interactive web applications. This guide will help users get started in creating R Shiny applications.
technique:
- Quantitative Data Analysis
- Data Visualization
tool:
- R
dataFormat: Microdata
date: "2024-03-27"
series: MDL Tutorials
type: Tutorial
- id: 51
title: Adding Media Layers in ArcGIS Online
url: https://mdlutoronto.github.io/arcgis-online-adding-media-layers/
description: |
This tutorial will cover how to 'georeference' a raster image through media layers in ArcGIS Online.
technique:
- Georeferencing
tool:
- ArcGIS Online
dataFormat: Raster
date: "2024-03-15"
series: MDL Tutorials
type: Tutorial
- id: 52
title: Creating a point layer of locations in ArcGIS Pro
url: https://mdlutoronto.github.io/arcgis-pro-creating-point-layer-locations/
description: |
This is a beginner’s guide to creating a point layer in ArcGIS Pro using the latitude and longitude of the locations you wish to display. How to locate coordinates online will be discussed. The first part of this guide will walk you through creating an Excel file of coordinates found in decimal degrees that are set up and ready to be imported into ArcGIS. This guide will then walk you through bringing your data into ArcGIS and creating your point layer on top of a base layer of countries.
tool:
- ArcGIS Pro
- Excel
dataFormat: Vector
date: "2024-02-20"
series: MDL Tutorials
type: Tutorial
- id: 53
title: Mapping Census Data in ArcGIS Pro
url: https://mdlutoronto.github.io/arcgis-pro-mapping-census-data/
description: |
This tutorial will cover how to download census data and census boundary files and match them together in ArcGIS Pro for further analysis. Census data will be downloaded using CHASS.
technique:
- Data Visualization
- Searching for maps and data
tool:
- ArcGIS Pro
- CHASS Census Analyzer
dataFormat:
- Statistics
- Vector
date: "2024-02-09"
series: MDL Tutorials
type: Tutorial
- id: 54
title: Converting GIS data to AutoCAD in ArcGIS Pro
url: https://mdlutoronto.github.io/arcgis-pro-converting-gis-data-to-autocad/
description: |
This tutorial will demonstrate how to convert geospatial datasets saved as shapefiles into AutoCAD format.
technique:
- Projecting
- Converting data formats
tool:
- ArcGIS Pro
dataFormat: Vector
date: "2024-02-06"
series: MDL Tutorials
type: Tutorial
- id: 55
title: Extracting the geographic features you need from a larger dataset in ArcGIS Pro
url: https://mdlutoronto.github.io/arcgis-pro-extracting-geographic-features-from-larger-dataset/
description: |
You may have noticed that many GIS datasets contain information about a geographic extent that is larger than your area of interest. Your research may involve analysis of data related to a single municipality in Ontario, yet you have only been able to locate a dataset showing all municipalities located within the province. Alternatively, you may be interested in only displaying a selection of features on your completed map, such as the Canadian cities you have selected as case studies for your research. This tutorial will demonstrate how to extract just the features you need from larger datasets, saving them to new files that you can then use to map and analyze your data.
technique:
- Extracting data
tool:
- ArcGIS Pro
dataFormat: Vector
date: "2024-02-06"
series: MDL Tutorials
type: Tutorial
- id: 56
title: Creating contours using ArcGIS Pro
url: https://mdlutoronto.github.io/arcgis-pro-creating-contours/
description: |
Digital elevation models (DEMs) are geospatial datasets that contain elevation values sampled according to a regularly spaced rectangular grid. They can be used in terrain analysis, SD visualizations and hydrological modelling, among other applications. DEMs can be stored in several different formats; however, conversion into a raster dataset is often required for many processes. This tutorial explains how to derive contours from DEMs using ArcGIS Pro.
tool:
- ArcGIS Pro
dataFormat:
- DEM
- Raster
date: "2024-01-17"
series: MDL Tutorials
type: Tutorial
- id: 57
title: Clipping Rasters in ArcGIS Pro
url: https://mdlutoronto.github.io/arcgis-pro-clipping-rasters/
description: |
This tutorial covers two methods for clipping raster datasets from ArcGIS Pro.
technique:
- Extracting data
tool:
- ArcGIS Pro
dataFormat:
- DEM
- Raster
date: "2024-01-15"
series: MDL Tutorials
type: Tutorial
- id: 58
title: Projecting your data in ArcGIS Pro
url: https://mdlutoronto.github.io/projecting-data-arcgis-pro/
description: |
In order for many GIS functions to work properly, your datasets need to be stored in a common projected coordinate system. This guide will assist you with the projection process in ArcGIS Pro. (Unsure of what the appropriate projection is for your area of interest? Refer to this [help document](https://mdlutoronto.github.io/selecting-right-projection/) or ask a staff member for assistance in helping you determine it.)
technique:
- Projecting
tool:
- ArcGIS Pro
dataFormat:
- Raster
- Vector
date: "2024-01-08"
series: MDL Tutorials
type: Tutorial
- id: 59
title: Exporting Data from OpenStreetMap for QGIS
url: https://mdlutoronto.github.io/qgis-exporting-data-openstreetmap/
description: |
In the case you need to acquire detailed city data to produce a large-scale map and we don’t have what you’re looking for in our data inventory, there is a chance that the user-contributed maps of OpenStreetMap.org may do the trick. QGIS can query and load this data into your map for a specified area of interest. The data can then be exported into common geospatial file formats.
tool:
- QGIS
dataFormat: Vector
date: "2023-12-08"
series: MDL Tutorials
type: Tutorial
- id: 60
title: Importing Alternative Sources in NVivo 14/15 for Mac
url: https://mdlutoronto.github.io/nvivo-14-15-mac-importing-alternative-sources/
description: |
NVivo can handle many types of files, such as text, audio, videos, images, etc. You would import these from the Data menu, by choosing the appropriate option. However, this tutorial will show you a common source of data that you might want to code in NVivo that is a bit more complicated to import.
technique:
- Qualitative Data Analysis
tool:
- NVivo
date: "2023-11-20"
series: MDL Tutorials
type: Tutorial
- id: 61
title: Importing Alternative Sources in NVivo 14/15 for Windows
url: https://mdlutoronto.github.io/nvivo-14-15-windows-importing-alternative-sources/
description: |
NVivo can handle many types of files, such as text, audio, videos, images, etc. You would import these from the Import Ribbon, by choosing the Files option. However, this tutorial will show you two common sources of data that you might want to code in NVivo that are a bit more complicated to import.
tool:
- NVivo
date: "2023-11-20"
series: MDL Tutorials
type: Tutorial
- id: 62
title: Installing and Licensing NVivo 14
url: https://mdlutoronto.github.io/nvivo-14-install-license/
description: |
This tutorial describes how to request a license for NVivo 14, download it, and license it.
technique:
- Installation
tool:
- NVivo
date: "2023-11-20"
series: MDL Tutorials
type: Tutorial
- id: 63
title: Introduction to NVivo 14/15 for Mac
url: https://mdlutoronto.github.io/nvivo-14-15-mac-intro/
description: |
This is a beginner level tutorial for NVivo 14 or 15 for Mac (the versions are almost identical). The goal of this tutorial is to learn about the basic features in NVivo that will allow you to organize and analyze qualitative data. Part 1 will go over the basics of navigating the NVivo interface, importing data, and coding with codes. Part 2 will explore the different types of queries you can run in NVivo. If you already have a grasp of the basics and are just interested in learning about queries, you can jump right to Part 2.
technique:
- Qualitative Data Analysis
tool:
- NVivo
date: "2023-11-20"
series: MDL Tutorials
type: Tutorial
- id: 64
title: Introduction to NVivo 14/15 for Windows
url: https://mdlutoronto.github.io/nvivo-14-15-windows-intro/
description: |
This is a beginner level tutorial for NVivo 14 or 15 for Windows (the versions are almost identical). The goal of this tutorial is to learn about the basic features in NVivo that will allow you to organize and analyze qualitative data. Part 1 will go over the basics of navigating the NVivo interface, importing data, and coding with codes. Part 2 will explore the different types of queries you can run in NVivo. If you already have a grasp of the basics and are just interested in learning about queries, you can jump right to Part 2.
technique:
- Qualitative Data Analysis
tool:
- NVivo
date: "2023-11-20"
series: MDL Tutorials
type: Tutorial
- id: 65
title: How to georeference images in ArcGIS Pro
url: https://mdlutoronto.github.io/arcgis-pro-georeference-images/
description: |
This tutorial will explain how to georeference a raster image in ArcGIS so it can be used as an overlay or for digitizing purposes.
technique:
- Georeferencing
tool:
- ArcGIS Pro
dataFormat: Raster
date: "2023-11-03"
series: MDL Tutorials
type: Tutorial
- id: 66
title: Introduction to GGPLOT2
url: https://mdl.library.utoronto.ca/technology/tutorials/ggplot2
technique:
- Data Visualization
tool:
- R
date: "2023-07-12"
series: MDL Tutorials
type: Tutorial
- id: 67
title: PCCF Guide
url: https://mdlutoronto.github.io/pccf-guide/
description: |
In this tutorial, we will use the Postal Code Conversion File (PCCF) to match postal codes to dissemination areas in order to incorporate additional neighbourhood-level demographic data into your dataset.
technique:
- Quantitative Data Analysis
tool:
- R
- SAS
- SPSS
- Stata
- Python
dataFormat: Microdata
date: "2023-06-06"
series: MDL Tutorials
type: Tutorial
- id: 68
title: PCCF+ Guide
url: https://mdlutoronto.github.io/pccf-plus-guide/
description: |
In this tutorial, we will use the Postal Code Conversion File Plus (PCCF+) to match postal codes to dissemination areas in order to incorporate additional neighbourhood-level demographic data into your dataset.
technique:
- Quantitative Data Analysis
tool:
- R
- SAS
- SPSS
- Stata
- Python
dataFormat: Microdata
date: "2023-06-06"
series: MDL Tutorials
type: Tutorial
- id: 69
title: Importing Alternative Sources in NVivo 12 for Mac
url: https://mdl.library.utoronto.ca/technology/tutorials/importing-alternative-sources-nvivo-12-mac
description: |
NVivo can handle many types of files, such as text, audio, videos, images, etc. You would import these from the Data menu, by choosing the appropriate option. However, this tutorial will show you two common sources of data that you might want to code in NVivo that are a bit more complicated to import.
technique:
- Qualitative Data Analysis
tool:
- NVivo
date: "2023-03-10"
series: MDL Tutorials
type: Tutorial
- id: 70
title: Importing Alternative Sources in NVivo 12 for Windows
url: https://mdl.library.utoronto.ca/technology/tutorials/importing-alternative-sources-nvivo-12-windows
description: |
NVivo can handle many types of files, such as text, audio, videos, images, etc. You would import these from the Import Ribbon, by choosing the Files option. However, this tutorial will show you two common sources of data that you might want to code in NVivo that are a bit more complicated to import.
technique:
- Qualitative Data Analysis
tool:
- NVivo
date: "2023-03-10"
series: MDL Tutorials
type: Tutorial
- id: 71
title: Intermediate R Course
url: https://mdlutoronto.github.io/r-course-intermediate/
description: |
To get started with intermediate R, enroll in this Intermediate R quercus course here. To enroll, you will need to use your UTORid login. This course consists of demonstration videos. By enrolling in this course, you can keep track of your progress! If you are a member of the public and you do not have a UTORid login, you can access the videos in the following guide below.
technique:
- Data Visualization
- Cleaning data
- Extracting data
tool:
- R
date: "2023-02-27"
series: MDL Tutorials
type: Self-paced course
- id: 72
title: "Excel: Beyond The Basics - Mac"
url: https://mdlutoronto.github.io/excel-beyond-basics-mac/
description: |
About this workshop
**What**: This is a beginner to intermediate tutorial, that will allow you to gain a deeper understanding of the uses and types of data that can be manipulated in Excel, an extremely popular spreadsheet software. Through practical exercises using real world data from the Toronto Transit Commission (TTC), you will learn important terminology and software features, and gain a better understanding of Excel’s built-in methods for data manipulation and cleaning, as well as analysis and visualization.
**Why**: Excel is a popular spreadsheet software that allows you to organize, modify and analyze your data. It remains one of the most widely used software for data analytics. A deeper understanding of Excel will help you better navigate the tool to work with your data sets, in the classroom and beyond.
**Who**: This tutorial assumes you have used Excel before at a basic level, but haven’t explored all it has to offer. There are no prerequisites or assumptions of knowledge of math, statistics, or programming!
**Software**: Excel is freely available for download for University of Toronto staff, faculty and students. Note: This tutorial is intended for Mac users. If you are using Windows, check out this tutorial instead.
**Code of Conduct**: Map & Data Library (MDL) workshops are a welcoming and inclusive environment for learning. To learn more, check out our Code of Conduct.
**For help contact**: Map & Data Library, mdl@library.utoronto.ca
tool:
- Excel
date: "2023-02-21"
series: MDL Tutorials
type: Tutorial
- id: 73
title: "Excel: Beyond The Basics - Windows"
url: https://mdl.library.utoronto.ca/technology/tutorials/excel-beyond-basics-windows
description: |
About this workshop
**What**: This is a beginner to intermediate tutorial, that will allow you to gain a deeper understanding of the uses and types of data that can be manipulated in Excel, an extremely popular spreadsheet software. Through practical exercises using real world data from the Toronto Transit Commission (TTC), you will learn important terminology and software features, and gain a better understanding of Excel’s built-in methods for data manipulation and cleaning, as well as analysis and visualization.
**Why**: Excel is a popular spreadsheet software that allows you to organize, modify and analyze your data. It remains one of the most widely used software for data analytics. A deeper understanding of Excel will help you better navigate the tool to work with your data sets, in the classroom and beyond.
**Who**: This tutorial assumes you have used Excel before at a basic level, but haven’t explored all it has to offer. There are no prerequisites or assumptions of knowledge of math, statistics, or programming!
**Software**: Excel is freely available for download for University of Toronto staff, faculty and students.
**Note**: This tutorial is intended for Windows users. If you are using a Mac, check out this tutorial instead.
**Code of Conduct**: Map & Data Library (MDL) workshops are a welcoming and inclusive environment for learning. To learn more, check out our Code of Conduct.
**For help contact**: Map & Data Library, mdl@library.utoronto.ca
tool:
- Excel
date: "2023-02-21"
series: MDL Tutorials
type: Tutorial
- id: 74
title: Digital Scholar Lab - Collaboration and Notes
url: https://mdlutoronto.github.io/dsl-collaboration-notes/
description: |
[Return to the main Gale Digital Scholar Lab tutorial](https://mdl.library.utoronto.ca/technology/tutorials/digital-humanities-tools-digital-scholar-lab)
Here is how to collaborate between users in the Gale Digital Scholar Lab using the Workspace and Notes features. This allows for a shared workspace and options for documenting your steps.
tool:
- Digital Scholar Lab
date: "2023-02-07"
series: MDL Tutorials
type: Tutorial
- id: 75
title: "Python: Information, Tutorials, and Workshops"
url: https://mdlutoronto.github.io/python-info-tutorials-workshops/
description: |
Python is a simple programming language that is popular for being easy to learn to read, write, and understand. You can use Python for automating repetitive tasks like cleaning data, creating data visualizations, analyzing data, conducting complex statistical calculations, or even building machine learning algorithms. Its ease of use and versatility means that many tools have been built on top of Python, but being able to explore those requires a good foundation and understanding of the language itself first!
tool:
- Python
date: "2023-02-03"
series: MDL Tutorials
type: Guide
- id: 76
title: Qualitative Data Analysis Software Options
url: https://mdl.library.utoronto.ca/technology/tutorials/qualitative-data-analysis-software-options
description: |
UofT currently subscribes to the latest few versions of NVivo. Consult our [NVivo software license page](https://mdl.library.utoronto.ca/technology/nvivo-software) to request a license key. Consult our [getting started guide for NVivo](https://mdl.library.utoronto.ca/technology/tutorials/nvivo-12-information-tutorials-and-workshops) or our for tutorials, resources, and workshop recordings to help you get started using the software.
technique:
- Qualitative Data Analysis
tool:
- NVivo
date: "2023-01-27"
series: MDL Tutorials
type: Tutorial
- id: 77
title: Transcription Options
url: https://mdl.library.utoronto.ca/technology/tutorials/transcription-options
description: |
If you have an audio or video file that you need to get transcribed, this page describes some automated options to consider. But keep in mind, though, that none of these options (including NVivo transcription) provides a 100% perfectly accurate transcript. You will always have to go back in and correct your transcript.
Note: If you want to pay a human to transcribe things accurately (so no or minimal correction is needed later), you could try [Rev](https://www.rev.com/) or [Transcript Divas](https://transcriptdivas.co.uk/about/).
technique:
- Qualitative Data Analysis
tool:
- NVivo
date: "2023-01-27"
series: MDL Tutorials
type: Tutorial
- id: 78
title: Working in Teams Using NVivo
url: https://mdl.library.utoronto.ca/technology/tutorials/working-teams-using-nvivo
description: |
This page provides an overview and tips for working as a team using NVivo. There are three main options: the manual way, the old collaboration cloud, and the new collaboration cloud. There is also [NVivo Collaboration Server](https://community.lumivero.com/s/article/TRC-Using-NVivo-with-NVivo-Collaboration-Server?language=en_US), but that involves purchasing, setting up, and maintaining NVivo Server software, and it only works in a Windows environment with NVivo 12 or 13.
technique:
- Qualitative Data Analysis
tool:
- NVivo
date: "2023-01-27"
series: MDL Tutorials
type: Tutorial
- id: 79
title: Getting Started with the Canadian Intellectual Property Office (CIPO) Patent PostgreSQL Database - Windows
url: https://mdlutoronto.github.io/cipo-windows/