-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.tex
More file actions
1269 lines (1046 loc) · 39.2 KB
/
Copy pathindex.tex
File metadata and controls
1269 lines (1046 loc) · 39.2 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
% Options for packages loaded elsewhere
% Options for packages loaded elsewhere
\PassOptionsToPackage{unicode}{hyperref}
\PassOptionsToPackage{hyphens}{url}
\PassOptionsToPackage{dvipsnames,svgnames,x11names}{xcolor}
%
\documentclass[
letterpaper,
DIV=11,
numbers=noendperiod]{scrreprt}
\usepackage{xcolor}
\usepackage{amsmath,amssymb}
\setcounter{secnumdepth}{5}
\usepackage{iftex}
\ifPDFTeX
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{textcomp} % provide euro and other symbols
\else % if luatex or xetex
\usepackage{unicode-math} % this also loads fontspec
\defaultfontfeatures{Scale=MatchLowercase}
\defaultfontfeatures[\rmfamily]{Ligatures=TeX,Scale=1}
\fi
\usepackage{lmodern}
\ifPDFTeX\else
% xetex/luatex font selection
\fi
% Use upquote if available, for straight quotes in verbatim environments
\IfFileExists{upquote.sty}{\usepackage{upquote}}{}
\IfFileExists{microtype.sty}{% use microtype if available
\usepackage[]{microtype}
\UseMicrotypeSet[protrusion]{basicmath} % disable protrusion for tt fonts
}{}
\makeatletter
\@ifundefined{KOMAClassName}{% if non-KOMA class
\IfFileExists{parskip.sty}{%
\usepackage{parskip}
}{% else
\setlength{\parindent}{0pt}
\setlength{\parskip}{6pt plus 2pt minus 1pt}}
}{% if KOMA class
\KOMAoptions{parskip=half}}
\makeatother
% Make \paragraph and \subparagraph free-standing
\makeatletter
\ifx\paragraph\undefined\else
\let\oldparagraph\paragraph
\renewcommand{\paragraph}{
\@ifstar
\xxxParagraphStar
\xxxParagraphNoStar
}
\newcommand{\xxxParagraphStar}[1]{\oldparagraph*{#1}\mbox{}}
\newcommand{\xxxParagraphNoStar}[1]{\oldparagraph{#1}\mbox{}}
\fi
\ifx\subparagraph\undefined\else
\let\oldsubparagraph\subparagraph
\renewcommand{\subparagraph}{
\@ifstar
\xxxSubParagraphStar
\xxxSubParagraphNoStar
}
\newcommand{\xxxSubParagraphStar}[1]{\oldsubparagraph*{#1}\mbox{}}
\newcommand{\xxxSubParagraphNoStar}[1]{\oldsubparagraph{#1}\mbox{}}
\fi
\makeatother
\usepackage{longtable,booktabs,array}
\usepackage{calc} % for calculating minipage widths
% Correct order of tables after \paragraph or \subparagraph
\usepackage{etoolbox}
\makeatletter
\patchcmd\longtable{\par}{\if@noskipsec\mbox{}\fi\par}{}{}
\makeatother
% Allow footnotes in longtable head/foot
\IfFileExists{footnotehyper.sty}{\usepackage{footnotehyper}}{\usepackage{footnote}}
\makesavenoteenv{longtable}
\usepackage{graphicx}
\makeatletter
\newsavebox\pandoc@box
\newcommand*\pandocbounded[1]{% scales image to fit in text height/width
\sbox\pandoc@box{#1}%
\Gscale@div\@tempa{\textheight}{\dimexpr\ht\pandoc@box+\dp\pandoc@box\relax}%
\Gscale@div\@tempb{\linewidth}{\wd\pandoc@box}%
\ifdim\@tempb\p@<\@tempa\p@\let\@tempa\@tempb\fi% select the smaller of both
\ifdim\@tempa\p@<\p@\scalebox{\@tempa}{\usebox\pandoc@box}%
\else\usebox{\pandoc@box}%
\fi%
}
% Set default figure placement to htbp
\def\fps@figure{htbp}
\makeatother
\setlength{\emergencystretch}{3em} % prevent overfull lines
\providecommand{\tightlist}{%
\setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
\KOMAoption{captions}{tableheading}
\makeatletter
\@ifpackageloaded{tcolorbox}{}{\usepackage[skins,breakable]{tcolorbox}}
\@ifpackageloaded{fontawesome5}{}{\usepackage{fontawesome5}}
\definecolor{quarto-callout-color}{HTML}{909090}
\definecolor{quarto-callout-note-color}{HTML}{0758E5}
\definecolor{quarto-callout-important-color}{HTML}{CC1914}
\definecolor{quarto-callout-warning-color}{HTML}{EB9113}
\definecolor{quarto-callout-tip-color}{HTML}{00A047}
\definecolor{quarto-callout-caution-color}{HTML}{FC5300}
\definecolor{quarto-callout-color-frame}{HTML}{acacac}
\definecolor{quarto-callout-note-color-frame}{HTML}{4582ec}
\definecolor{quarto-callout-important-color-frame}{HTML}{d9534f}
\definecolor{quarto-callout-warning-color-frame}{HTML}{f0ad4e}
\definecolor{quarto-callout-tip-color-frame}{HTML}{02b875}
\definecolor{quarto-callout-caution-color-frame}{HTML}{fd7e14}
\makeatother
\makeatletter
\@ifpackageloaded{bookmark}{}{\usepackage{bookmark}}
\makeatother
\makeatletter
\@ifpackageloaded{caption}{}{\usepackage{caption}}
\AtBeginDocument{%
\ifdefined\contentsname
\renewcommand*\contentsname{Table of contents}
\else
\newcommand\contentsname{Table of contents}
\fi
\ifdefined\listfigurename
\renewcommand*\listfigurename{List of Figures}
\else
\newcommand\listfigurename{List of Figures}
\fi
\ifdefined\listtablename
\renewcommand*\listtablename{List of Tables}
\else
\newcommand\listtablename{List of Tables}
\fi
\ifdefined\figurename
\renewcommand*\figurename{Figure}
\else
\newcommand\figurename{Figure}
\fi
\ifdefined\tablename
\renewcommand*\tablename{Table}
\else
\newcommand\tablename{Table}
\fi
}
\@ifpackageloaded{float}{}{\usepackage{float}}
\floatstyle{ruled}
\@ifundefined{c@chapter}{\newfloat{codelisting}{h}{lop}}{\newfloat{codelisting}{h}{lop}[chapter]}
\floatname{codelisting}{Listing}
\newcommand*\listoflistings{\listof{codelisting}{List of Listings}}
\makeatother
\makeatletter
\makeatother
\makeatletter
\@ifpackageloaded{caption}{}{\usepackage{caption}}
\@ifpackageloaded{subcaption}{}{\usepackage{subcaption}}
\makeatother
\usepackage{bookmark}
\IfFileExists{xurl.sty}{\usepackage{xurl}}{} % add URL line breaks if available
\urlstyle{same}
\hypersetup{
pdftitle={ Instructor Guide },
colorlinks=true,
linkcolor={blue},
filecolor={Maroon},
citecolor={Blue},
urlcolor={Blue},
pdfcreator={LaTeX via pandoc}}
\title{\\
Instructor Guide\\}
\author{}
\date{Jun 23, 2026}
\begin{document}
\maketitle
<!-- Formating image above the title and adding the DSA website link -->
<div style="text-align: center; margin-bottom: 20px;">
<a href="https://datascienceacademy.ncsu.edu/courses/upcoming-dsa-courses/" target="_blank">
<img src="DSA-lockUp-2024.png" alt="Header Image" style="max-width: 525px; height: auto;">
</a>
</div>
\renewcommand*\contentsname{On this page}
{
\hypersetup{linkcolor=}
\setcounter{tocdepth}{2}
\tableofcontents
}
\bookmarksetup{startatroot}
\chapter{The Guide}\label{the-guide}
This resource is designed as a guide for instructors in the Data Science
and AI Academy at NC State. In this guide you will find information
about DSA course expectations, course structure and implementation
suggestions, teaching and learning resources, university policies and
more.
You can use the table of contents to navigate to a section of interest.
\section{About the DSA}\label{about-the-dsa}
Visit the \href{https://datascienceacademy.ncsu.edu/about/}{About}
section on the \href{https://datascienceacademy.ncsu.edu/}{DSA Website}
to learn a bit about the DSA.
\subsection{DSA Staff - Teaching \&
Learning}\label{dsa-staff---teaching-learning}
\begin{itemize}
\item
Rachel Levy - Executive Director
\item
David Stokes - Director of Data Science and AI Academic Programs
\item
Sunghwan Byun - DSA Director of Educational Research
\item
Sarah Egan Warren - DSA Director of Instructor Observation \&
Evaluation
\end{itemize}
\href{https://datascienceacademy.ncsu.edu/about/our-team/}{Our Team}
\subsection{Course Collaboration Leaders
Support.}\label{course-collaboration-leaders-support.}
\textbf{What and who are the DSA course collaboration leaders}?
The DSA \texttt{Course\ Collaboration\ Leaders} (CCLs) support DSA
teaching and learning by offering office hours to their peers in DSA
courses. They are a valuable resource for students who may have
questions, or are seeking guidance, discussion \& community.
Course Collaboration Leaders (CCLs) are typically undergraduate students
who have experience with DSA courses (e.g., have taken at least one DSA
course).
\begin{itemize}
\tightlist
\item
CCL office hours are in-person and on Zoom.
\item
The CCL office hours schedule is made available each semester.
\item
Instructors should provide this information to students in their
courses with reminders on a weekly basis.
\end{itemize}
Find the
\href{https://datascienceacademy.ncsu.edu/courses/course-collaboration-leaders/}{current
semester CCL schedule here}.
\begin{itemize}
\item
Share this resource with your classes and on your course learning
management system pages.
\item
Please notify the Director of Data Science and AI Academic Programs if
you have students from your courses that you want to recommend to
become a Course Collaboration Leader in a future semester or year.
\end{itemize}
Please forward other inquiries from students wanting to contribute to
the DSA to datascienceacademy@ncsu.edu.
\href{https://docs.google.com/document/d/1VPfx_Ib2ToiO3eP1ipACCrsnoFTWcJNVhCXyESGf5PY/edit?usp=sharing}{Information
for graduate student TA inquiries}
\bookmarksetup{startatroot}
\chapter{DSA Courses}\label{dsa-courses}
\section{The ADAPT Model: Background}\label{the-adapt-model-background}
The \textbf{A}ll-campus \textbf{D}ata Science and \textbf{A}I
\textbf{P}roject-based \textbf{T}eaching and learning model
(\href{https://datascienceacademy.ncsu.edu/courses/course-model/}{ADAPT
course model}) consists of three primary components:
\begin{enumerate}
\def\labelenumi{\arabic{enumi})}
\tightlist
\item
{Project-Based Learning.}
\end{enumerate}
Each DSA course involves a project, or mini-projects, as a framework for
students to apply and demonstrate their learning in an
application-focused context.
\begin{enumerate}
\def\labelenumi{\arabic{enumi})}
\setcounter{enumi}{1}
\tightlist
\item
{10 Common Learning Elements.}
\end{enumerate}
Data science is an interdisciplinary field. The 10 common learning
elements are overarching objectives that can be considered across all
DSA courses as a means to broaden students experiences within and beyond
a given data science or AI topic.
\begin{enumerate}
\def\labelenumi{\arabic{enumi})}
\setcounter{enumi}{2}
\tightlist
\item
{Workforce Preparedness.}
\end{enumerate}
DSA courses are designed to prepare students for work - in general - in
recognition of the importance, impact, and prevalence of data and AI in
current and future settings across all fields. The workforce
preparedness focus of the ADAPT model can be realized through providing
students with opportunities to engage in relevant choices and decisions
that directly and positively impact their DSA course processes,
facilitating learning and skill retention that carries forward beyond
the academic environment and into their next steps. Furthermore,
informed choices and agency are skills that can be enhanced through
experience and are central components of a daily workforce workflow.
Skills in data science and AI are enhanced through core concepts and
innovative special topics aligned with future-forward workforce
developments and employer needs.
\begin{itemize}
\tightlist
\item
Read more: \href{https://arxiv.org/abs/2604.02597}{The NC State
All-campus Data Science and AI Project-based Teaching and Learning
(ADAPT) Model: A mechanism for interdisciplinary engagement in
workforce-relevant learning}
\end{itemize}
\section{Classroom Considerations}\label{classroom-considerations}
For each of our 1 credit courses: University
\href{https://oucc.dasa.ncsu.edu/courses/contact-credit-hours/}{Contact/Credit
Hour Guidelines} set the expectation that a 1-credit course offering
should amount to approximately 3 hours of student time per week (e.g.,
50 minute class, two hours outside of class).
\begin{itemize}
\tightlist
\item
Please keep the expected time guidelines in mind when designing your
course and related activities. In addition, please use student
feedback to adjust accordingly.
\end{itemize}
\subsection{Implementation}\label{implementation}
A challenge that can arise in the DSA course teaching process involves
how to go about effectively relaying the information that you want
students to receive as you consider the course structure and time
limitations.
These constraints make for interesting design challenges and many
creative course experiences follow.
\textbf{A Few Guidelines}
As a guide, one method to address the course implementation structure is
to consider developing your essential concepts based on the desired
project outcomes. Consider the following:
\begin{itemize}
\item
Planning your instruction based on the question ``What are the few and
essential points students need to know to accomplish {[}this step in
the project{]}?''. This may serve as the contents of a given lecture
within the project-based focus.
\item
Building your course assignments as components of the project can
allow students to create their products over time (as projects
typically occur in real world/workforce settings) and can keep course
workloads consistent and manageable. Furthermore, the project outcomes
and goals can motivate the learning outcomes and the related
assignments, and grounds them in application-focused
explicitly-relevant contexts. Projects built over time can culminate
with student presentations, reports, and similar communicative
experiences.
\item
Another framework to consider for planning your course delivery is the
\href{https://drive.google.com/file/d/13AwDhsoMFh31YdHoxdP_5FaaqUdqkM1W/view}{Launch
(20 minutes) -\textgreater{} Explore (20 minutes) -\textgreater{}
Discuss (10 minutes)} framework, where the key concepts are presented
within 20 or so minutes of the ``launch'', and time is allotted for
students to actively participate through practice/development and
discussion within a class, or with significant frequency (Explore \&
Discuss). These time frames are a just a reference point and if
implemented will naturally vary from class to class.
\begin{itemize}
\tightlist
\item
Example: (50 minute class - launch, discuss, explore) Project Step 1
- Key Concepts -\textgreater{} Weekly Key Concepts Discussions
-\textgreater{} In class work and getting started on Project Step
1/assignment 1.
\end{itemize}
\end{itemize}
\textbf{Additional Considerations}
As you develop your course, consider \emph{how you will assess the
students' projects}.
\begin{itemize}
\tightlist
\item
In determining this criteria, it is helpful to clearly present the
assessment criteria to students. For example, you may have a rubric on
which project assessments are based, and you can share this with the
students in advance so that the project expectations are clear.
Developed assessment criteria can also serve as a project building
guide.
\end{itemize}
Balancing grading time and data science project work can be a challenge.
Consider how you might be able to \emph{incorporate structured and
unstructured learning/feedback opportunities for students}.
\begin{itemize}
\tightlist
\item
Example: As you present your key lesson concepts, you may incorporate
student questions that have an auto-grading feature (structured).
Subsequently, you may allow them to practice similar concepts on their
own datasets as a component of their project work (unstructured).
\end{itemize}
\textbf{Feedback from Educational Research}
\begin{itemize}
\tightlist
\item
Here are some examples of implementing the 10 Common Learning Elements
based on a study by graduate researcher Laurie Short:
\begin{itemize}
\tightlist
\item
\href{https://ncsu.hosted.panopto.com/Panopto/Pages/Viewer.aspx?id=7ba115d4-d47d-412d-b9b9-b46d012e048a}{Purpose,
Methodology, Findings \& Recommendations - Video}
\item
\href{https://www.canva.com/design/DAHMYl_SWow/2qk2aHm_g9S-rpCLHJ3IRw/view?utm_content=DAHMYl_SWow&utm_campaign=designshare&utm_medium=link2&utm_source=uniquelinks&utlId=h2b27e8c45e}{Purpose,
Methodology, Findings \& Recommendations - Slide Deck}
\end{itemize}
\item
Dr.~Sunghwan Byun and Dr.~Jeanne McClure offer additional suggestions
here:
\begin{itemize}
\tightlist
\item
\href{https://docs.google.com/document/d/1jRILSc0DsFm2moet9Ep8bF1suEOfHfnLzfJ2t4tIfjA/edit?usp=sharing}{Educational
Research at the Data Science Academy - Insights from 2022-2023}.
\item
This document contains information on what may work well and what my
require more attention within the DSA course instructional process,
based on certain aspects of student feedback.
\end{itemize}
\end{itemize}
\bookmarksetup{startatroot}
\chapter{To Do - Semesterly}\label{to-do---semesterly}
\section{Throughout the Semester}\label{throughout-the-semester}
\subsection{Bi-monthly Teacher
Discussions}\label{bi-monthly-teacher-discussions}
Throughout the semester we will have weekly instructor meetings designed
to build community through discussion and support around the DSA course
teaching experience. We will discuss topics of interest, which may
include the ADAPT model, and also provide opportunities for lesson
presentations and reviews, among other possibilities.
\begin{tcolorbox}[enhanced jigsaw, opacityback=0, bottomrule=.15mm, colback=white, leftrule=.75mm, colframe=quarto-callout-note-color-frame, toprule=.15mm, arc=.35mm, breakable, left=2mm, rightrule=.15mm]
\begin{minipage}[t]{5.5mm}
\textcolor{quarto-callout-note-color}{\faInfo}
\end{minipage}%
\begin{minipage}[t]{\textwidth - 5.5mm}
\vspace{-3mm}\textbf{{Attention}}\vspace{3mm}
\begin{itemize}
\tightlist
\item
{Attend 2 instructor meetings per month.}
\end{itemize}
\end{minipage}%
\end{tcolorbox}
\subsection{Instructor Chat Group}\label{instructor-chat-group}
You will be added to a chat group through your NCSU credentials -
\href{https://chat.google.com/room/AAQAdfaHlRc?cls=7}{DSA Instructors
Group - Fall 2026}.
\begin{tcolorbox}[enhanced jigsaw, opacityback=0, bottomrule=.15mm, colback=white, leftrule=.75mm, colframe=quarto-callout-note-color-frame, toprule=.15mm, arc=.35mm, breakable, left=2mm, rightrule=.15mm]
\begin{minipage}[t]{5.5mm}
\textcolor{quarto-callout-note-color}{\faInfo}
\end{minipage}%
\begin{minipage}[t]{\textwidth - 5.5mm}
\vspace{-3mm}\textbf{{Attention}}\vspace{3mm}
\begin{itemize}
\tightlist
\item
{Monitor information in the group chat space.}
\end{itemize}
\end{minipage}%
\end{tcolorbox}
\begin{itemize}
\tightlist
\item
Updates and reminders will be posted to this space.
\item
General questions and instructor communication may occur in this
space.
\end{itemize}
For updates and reminders, please acknowledge receipt with a ``thumbs
up'', or another response.
\subsection{Student Work Collection}\label{student-work-collection}
As part of the DSA mission to provide excellent learning opportunities,
we collect data to assess our offerings and learning approach. The
purpose of the data collection is to evaluate the DSA and how well we
are serving our students so that informed adjustments and improvements
can be made. In addition we may plan to share what we learn with other
universities and researchers. For this process, students will be asked
for their consent to data collection/research participation at the
beginning of the course in terms of the use of their de-identified data
and the related work of the DSA.
\begin{tcolorbox}[enhanced jigsaw, opacityback=0, bottomrule=.15mm, colback=white, leftrule=.75mm, colframe=quarto-callout-note-color-frame, toprule=.15mm, arc=.35mm, breakable, left=2mm, rightrule=.15mm]
\begin{minipage}[t]{5.5mm}
\textcolor{quarto-callout-note-color}{\faInfo}
\end{minipage}%
\begin{minipage}[t]{\textwidth - 5.5mm}
\vspace{-3mm}\textbf{{Attention}}\vspace{3mm}
\begin{itemize}
\tightlist
\item
{Plan to collect your students' work for each assignment and project.}
\end{itemize}
\end{minipage}%
\end{tcolorbox}
\begin{itemize}
\item
NOTE: To facilitate student work collection, please use the following
\texttt{naming\ conventions},
\texttt{course\_section\_semester\_assignment\_unityID}, where course
is the 3 digit prefix and number, section is the three digit section
number, semester is FA (Fall) or SP (Spring) followed by the last two
digits of the year, A is for assignments and FP is for final project.
The unityID is for the student whose work is being collected - each
student has a unique unityID. Examples below. Note: If students turn
in group assignments, adjustments may be needed.
\begin{itemize}
\item
\texttt{DSA201\_001\_FA26\_A1\_djstokes}
\item
\texttt{DSA495\_601\_FA26\_FP\_unityID}
\item
\texttt{DSA412\_011\_SP27\_A5\_unityID}
\end{itemize}
\item
NOTE: Build this into your assignment collection protocol so that the
process in not an extra burden for you (i.e., require students to
submit each of their assignments named in the way presented in the
naming conventions).
\end{itemize}
\subsection{Student Feedback
Questionnaires}\label{student-feedback-questionnaires}
Three times throughout the semester, we will provide course
questionnaires, via survey link, for you to give to your students. These
questionnaires are designed to provide you with insight into students'
perspectives of your course and as a source of course evaluation. For
these questionnaires, please note the following:
\begin{itemize}
\item
\textbf{Provide 5 minutes of class-time} for students to complete the
questionnaires.
\item
\textbf{Encourage and incentivize participation} (e.g., count as a
grade, or extra credit)
\item
There is an \textbf{80\% completion expectation \& goal}.
\begin{itemize}
\tightlist
\item
Student feedback will be de-identified and shared back with you,
\item
You can request completion information for grading/extra-credit
purposes,
\end{itemize}
\end{itemize}
\begin{tcolorbox}[enhanced jigsaw, opacityback=0, bottomrule=.15mm, colback=white, leftrule=.75mm, colframe=quarto-callout-note-color-frame, toprule=.15mm, arc=.35mm, breakable, left=2mm, rightrule=.15mm]
\begin{minipage}[t]{5.5mm}
\textcolor{quarto-callout-note-color}{\faInfo}
\end{minipage}%
\begin{minipage}[t]{\textwidth - 5.5mm}
\vspace{-3mm}\textbf{{Attention}}\vspace{3mm}
\begin{itemize}
\tightlist
\item
{Provide 5 minutes of \emph{class time} for students to complete the
course questionnaires.}
\end{itemize}
\end{minipage}%
\end{tcolorbox}
\subsection{Course Collaboration Leaders
Support}\label{course-collaboration-leaders-support}
\href{https://datascienceacademy.ncsu.edu/courses/course-collaboration-leaders/}{Course
Collaboration Leaders Support \& More}
The website link includes Course Collaboration Leaders (CCLs)
peer-support office hours, as well as other recommendations for student
support. The CCLs are typically available on a daily basis according to
the schedule provided. They offer support to their peers in online and
in person spaces as indicated in the website link.
\begin{tcolorbox}[enhanced jigsaw, opacityback=0, bottomrule=.15mm, colback=white, leftrule=.75mm, colframe=quarto-callout-note-color-frame, toprule=.15mm, arc=.35mm, breakable, left=2mm, rightrule=.15mm]
\begin{minipage}[t]{5.5mm}
\textcolor{quarto-callout-note-color}{\faInfo}
\end{minipage}%
\begin{minipage}[t]{\textwidth - 5.5mm}
\vspace{-3mm}\textbf{{Attention}}\vspace{3mm}
\begin{itemize}
\tightlist
\item
{Provide the Course Collaboration Leaders Support \& More information
to your students.}
\end{itemize}
\end{minipage}%
\end{tcolorbox}
\begin{itemize}
\tightlist
\item
NOTE: Build this reminder into your weekly routine so that students
are continuously made aware of this resource and the CCLs office
hours, in particular.
\end{itemize}
\subsection{Course Attendance \& Mid-term
Assessments}\label{course-attendance-mid-term-assessments}
\begin{itemize}
\tightlist
\item
Tracking attendance is required for all 200 level courses (see
\href{https://policies.ncsu.edu/regulation/reg-02-20-03-attendance-regulations/}{REG
02.20.03 - Attendance Regulations}). This is also a good practice for
courses in general so that you can identify any students who may need
extra communication or support (e.g., Student Progress Reports).
\end{itemize}
For online courses: You can generate attendance reports from Zoom, as
one method of record.
\begin{itemize}
\item
Please communicate to students why attendance is important. For
example, collaboration and discussion are expectations for data
scientists, AI experts, and individuals working within related
fields/titles, and is a part of workforce preparedness. These aspect
are likely an integral part of your course as well, so students should
know that this is an expectation and should plan to attend with the
intent to participate in discussions and collaborations.
\item
For online courses, it may be useful to establish classroom
expectations that students keep their cameras on, whenever possible,
as part of the course engagement and workforce preparedness process.
\end{itemize}
\begin{tcolorbox}[enhanced jigsaw, opacityback=0, bottomrule=.15mm, colback=white, leftrule=.75mm, colframe=quarto-callout-note-color-frame, toprule=.15mm, arc=.35mm, breakable, left=2mm, rightrule=.15mm]
\begin{minipage}[t]{5.5mm}
\textcolor{quarto-callout-note-color}{\faInfo}
\end{minipage}%
\begin{minipage}[t]{\textwidth - 5.5mm}
\vspace{-3mm}\textbf{{Attention}}\vspace{3mm}
\begin{itemize}
\tightlist
\item
{Communicate expectations to students that may include classroom
norms, attendance, and participation guidelines.}
\end{itemize}
\end{minipage}%
\end{tcolorbox}
The mid-term is a good time to consider the need for
\href{https://dasa.ncsu.edu/faculty-resources/academic-progress-reporting/}{Academic
Progress Reports}. However, you may submit these reports sooner or later
depending on need.
\subsection{Instructor Communication}\label{instructor-communication}
As an instructor, you are expected to notify the Director of Teaching
and Learning of attendance conflicts. This includes:
\begin{itemize}
\tightlist
\item
Conflicts with scheduled classes,
\item
Conflicts with instructor discussions,
\item
Issues with other deadlines, such as questionnaire timelines.
\end{itemize}
Note that instructor discussion attendance is part of your
responsibility as an instructor in the DSA.
Learning Technologies support can be sought through
\href{https://delta.ncsu.edu/learntech-request/}{DELTA}. However, you
are encouraged to post questions to the
\href{https://chat.google.com/room/AAQA-rEg4KQ?cls=7}{instructor group
chat space} where others may be able to help you sooner and/or may have
the same or similar questions. Email is fine too.
\hfill\break
\bookmarksetup{startatroot}
\chapter{To Do - Weekly}\label{to-do---weekly}
\section{Weekly Reminders}\label{weekly-reminders}
\subsection{Week 1:}\label{week-1}
\begin{enumerate}
\def\labelenumi{\arabic{enumi})}
\item
Check the
\href{https://studentservices.ncsu.edu/calendars/academic/}{NCSU
Academic Calendar} to note important dates (e.g., Wellness Days,
Spring/Fall Break, Drop/Revision Deadline), so that you can plan your
instruction/schedule accordingly.
\item
Your course syllabus should be in your \texttt{Course\ Folder} -
\href{https://docs.google.com/spreadsheets/d/1BfmKDDVHphxg9P5aBqG5MKlu0ZaOudI4i4zswpZXQI0/edit?usp=sharing}{Access
the Link Here}.
\item
Send out {DSA Course Feedback Questionnaire: Part 1 of 3 - Fall 2026}
(Provide your students with the link here:
\url{https://forms.gle/FK8k9H1GkZu7QFPZ9}).
\end{enumerate}
\begin{itemize}
\tightlist
\item
✅ Provide 5 minutes of class time for completion.
\end{itemize}
\subsection{Week 2:}\label{week-2}
\begin{enumerate}
\def\labelenumi{\arabic{enumi})}
\item
Notify students about the
\href{https://datascienceacademy.ncsu.edu/courses/course-collaboration-leaders/}{Course
Collaboration Leaders Support \& More} resource, and add this to your
moodle page/course management system.
\item
\textbf{Research Consent Forms}. During Week 2 a DSA representative
may come to your classroom. Please plan to allow five minutes at the
end of the week 2 class for this representative to speak to students
about the DSA research consent process. You will be asked to leave the
room (or Zoom space) during this presentation to preserve students'
confidentiality.
\end{enumerate}
NOTE: As with the student reflections, please encourage participation in
completing the consent forms. Students will have the option to consent
or decline. A link will be provided so that you can relay this to
students who have not completed the form, and/or were not present in
week 2.
\subsection{Week 3:}\label{week-3}
\begin{enumerate}
\def\labelenumi{\arabic{enumi})}
\item
Remind students about the
\href{https://datascienceacademy.ncsu.edu/courses/course-collaboration-leaders/}{Course
Collaboration Leaders Support \& More} resource.
\item
DSA Course Feedback Questionnaire: Part 1 of 3 de-Identified
feedback/responses will be returned to you.
\end{enumerate}
\subsection{Week 4:}\label{week-4}
\begin{enumerate}
\def\labelenumi{\arabic{enumi})}
\tightlist
\item
Suggestion (if not already done): introduce course project,
expectations, and how it is/will be integrated into/throughout the
course.
\end{enumerate}
\subsection{Week 5:}\label{week-5}
\begin{enumerate}
\def\labelenumi{\arabic{enumi})}
\tightlist
\item
Remind students about the Course Collaboration Leaders Support \& More
resource.
\end{enumerate}
\subsection{Week 6:}\label{week-6}
\begin{enumerate}
\def\labelenumi{\arabic{enumi})}
\tightlist
\item
Send out {DSA Course Feedback Questionnaire: Part 2 of 3 - Fall 2026}
(Provide your students with the link here:
\url{https://forms.gle/PtTnpQXboAvW8VYB8}).
\end{enumerate}
\begin{itemize}
\tightlist
\item
✅ Provide 5 minutes of class time for completion.
\end{itemize}
\subsection{Week 7:}\label{week-7}
\begin{enumerate}
\def\labelenumi{\arabic{enumi})}
\tightlist
\item
\textbf{Progress Reports}. Please refer to this link
\href{https://dasa.ncsu.edu/faculty-resources/academic-progress-reporting/}{Academic
Progress Reporting}. Please complete a report for any student for whom
you may be concerned (e.g., not attending, not completing assignments,
at risk for not successfully completing the course, etc.).
Instructions on completing these reports through mypack portal are
available at the link above.
\end{enumerate}
\begin{itemize}
\item
✅ Please submit any related student reports on or before this week.
\item
✅ Please notify the Teaching Coordinator of any outstanding concerns.
\end{itemize}
\begin{enumerate}
\def\labelenumi{\arabic{enumi})}
\setcounter{enumi}{1}
\tightlist
\item
Remind students to complete \textbf{DSA Course Feedback Questionnaire:
Part 2 of 3} by the end of the week.
\end{enumerate}
\begin{itemize}
\tightlist
\item
✅ Provide 5 minutes of class time for completion.
\end{itemize}
\subsection{Week 8 - Week 10:}\label{week-8---week-10}
\begin{enumerate}
\def\labelenumi{\arabic{enumi})}
\item
Remind students about the Course Collaboration Leaders Support \& More
resource.
\item
\textbf{DSA Course Feedback Questionnaire: Part 2 of 3} de-Identified
feedback/responses will be returned to you.
\end{enumerate}
\subsection{Week 11:}\label{week-11}
\begin{itemize}
\tightlist
\item
(if not already done): Communicate Final Project Plan (e.g., weeks
due, presentations/reports criteria, etc.).
\end{itemize}
\subsection{Week 12:}\label{week-12}
\begin{enumerate}
\def\labelenumi{\arabic{enumi})}
\tightlist
\item
Send out {DSA Course Feedback Questionnaire: Part 3 of 3 - Fall 2026}
(Provide your students with the link here:
\url{https://forms.gle/n77cAs6QdnzKQDSe6}).
\end{enumerate}
\begin{itemize}
\tightlist
\item
✅ Provide 5 minutes of class time for completion.
\end{itemize}
\subsection{Week 13:}\label{week-13}
\begin{enumerate}
\def\labelenumi{\arabic{enumi})}
\tightlist
\item
Add the Director of Data Science and AI Academic Programs to your
course management space with administrative access (e.g., Moodle as a
``hidden instructor'' and non-expiring time frame).
\end{enumerate}
\begin{itemize}
\tightlist
\item
In moodle, at the ``My current courses'' section, scroll to your
current course and\ldots{}
\begin{itemize}
\tightlist
\item
click on the ``gears'' icon,
\item
scroll down to ``users and roster,'' and click ``edit,''
\item
go to ``add a person by name or unityID,'' and type in djstokes, and
search
\item
for ``role'' select ``hidden instructor'' and add the ``begin
date,''\ldots{} you should be able to leave end date blank
(non-expiring).
\end{itemize}
\end{itemize}
\subsection{Week 14 - 16:}\label{week-14---16}
\begin{enumerate}
\def\labelenumi{\arabic{enumi})}
\item
Refer to the
\href{https://studentservices.ncsu.edu/calendars/academic/}{NCSU
Academic Calendar} to see when final grades are due. Refer to this
link
\href{https://sis.emas.ncsu.edu/faculty/faculty-center/\#grades}{Grade
Roster} for how to submit grades.
\item
Add all student work to your \textbf{Course Folder}, assignments and
project(s) (Find your class link here:
\href{https://docs.google.com/spreadsheets/d/1BfmKDDVHphxg9P5aBqG5MKlu0ZaOudI4i4zswpZXQI0/edit?usp=sharing}{Course