-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsyllabus.Rmd
216 lines (139 loc) · 9.04 KB
/
syllabus.Rmd
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
---
title: "Syllabus"
output:
html_document
---
```{r setup, echo = FALSE, message = FALSE}
library(tidyverse)
```
<br>
## Overview
**`r config::get("course_name_long")`**
This course will provide *"hands-on" training* for learning how to analyze data in the R statistical software package. We will cover data input/output, data management and manipulation, and how to make useful and informative graphics.
<br>
## Objectives
By the end of the course, students should be comfortable:
- Reading data into R
- Recoding and manipulating data
- Using R add-on packages
- Making exploratory plots
- Performing basic statistical tests
- Understanding basic programming syntax
- Creating reproducible R documents
<br>
## Logistics
<br>
### When
- **Dates:** `r config::get("course_dates")`
<!-- (`r config::get("holiday")`) -->
- **Time:** `r config::get("course_time")`
- **Assignments due:** <span style="background-color: yellow;">`r config::get("final_due_date")` </span>
<br>
### Where
- **Class Website:** http://jhudatascience.org/intro_to_r/
- **CoursePlus:** `r config::get("courseplus_web")`
- Course lectures and labs will be online through Zoom
- Zoom link and Slack link will be emailed to students
- Communication will mainly occur through Slack
<br>
### Instruction Team
- **Instructors:** `r config::get("instructors")`
- **Teaching Assistants:** `r config::get("ta")`
<br>
## Course Format
- Each class will consist of 2 or 3 hour-long modules.
- Each module features a lecture and an R programming lab, where students apply the skills taught in the modules to real data in breakout rooms.
- Class sessions will be recorded and later posted.
- If you have a question not covered during class, please post it on Slack. This allows everyone to see it. If another student does not answer your question (which we encourage!), we will try to answer it within 24 hours. If you feel uncomfortable posting a question publicly, let a TA or instructor know your question and we will post it for you anonymously.
- To get the most out of this class, if possible, we suggest working virtually with a **large monitor or two screens**. This setup allows you to follow along on Zoom while also doing the hands-on coding.
- <details><summary> <span style = "color: #5383bb;"> **Please click here for details about using Zoom.**</span></summary>
Zoom + Working Virtually
***
* Please be aware that there is the option to use closed captioning:
![closed captioning on zoom](docs/images/CC.png)
* During lectures you can indicate how you feel about the pace of the course like so:
![reactions about pace](docs/images/slow_fast_reactions.png)
* In breakout room sessions you can ask for help like so:
![ask for help](docs/images/help.png)
* For directions on how to change breakout rooms click [here](https://docs.google.com/document/d/1YP1pZF1bIm66_Tl15Y3eHl8pGxNIASD33mKCtGCfQzc/edit?usp=sharing).
***
</details>
<br>
## Course Evaluation
Course evaluations are very important for the school to determine what courses to continue to support. It also helps us to improve the course with your feedback.
- Use this link to access the evaluation: https://courseevaluations.jhsph.edu.
- Use your JHED ID or and password to log in. If you do not have a JHED ID, sign in as a “Guest User” using the email provided to create your JHU login during course registration. Please contact [email protected] for assistance.
- All non-auditing institute students (whether they are taking courses for credit or not) are eligible to evaluate their courses.
<br>
## Assignments
<br>
### Grading
All assignments are due **`r config::get("final_due_date")`**.
| **Assignment** | **Percent of Grade**|
|:---------------------|---------------------:|
|Attendance/Participation | 20% |
|Homework 1 | 15% |
|Homework 2 | 15% |
|Homework 3 | 15% |
|Final Project | 35% |
|**Total** | 100%|
**Note**: only people taking the course for credit must turn in the assignments. However, we will evaluate all submitted assignments in case others would like feedback on their work.
<br>
### Homework
You should complete the following:
| **Module** | **Details** | **Code** |
| :-------------------------: | :-------------------------------------------------: | :------------------------------------------------------------------------------------------------------------------------------------------------: |
| Homework 1 | [Day 0 Instructions](docs/module_details/day0.html) | [HTML](modules/HW/homework1.html) |
| Homework 2 | | [Rmd](modules/HW/homework2.Rmd), [HTML](modules/HW/homework2.html), [Key](modules/HW/homework2_Key.Rmd), [Key HTML](modules/HW/homework2_Key.html) |
| Homework 3 | | [Rmd](modules/HW/homework3.Rmd), [HTML](modules/HW/homework3.html), [Key](modules/HW/homework3_Key.Rmd), [Key HTML](modules/HW/homework3_Key.html) |
<br>
### Final Project
This project should entail:
- reading in a dataset of your choosing
- doing some light data cleaning
- performing some data summarization
- creating a couple of visualizations
- doing some very light statistical analysis, like regression or t-tests
You may use public datasets, or your own data for the project. If using your own dataset, **be sure any sensitive information is protected**.
Example projects can be found with the source code: [Rmd](modules/Project_Example/Project_Example.Rmd), and the output [html](modules/Project_Example/Project_Example.html) here.
See the [guidelines/instructions](modules/Project_Guidelines/Project_Guidelines.html) for final projects, including dataset resources.
<br>
### Submission
All assignments are due **`r config::get("final_due_date")`**.
Submit each assignment to the designated [Drop Box on CoursePlus](`r config::get("courseplus_dropboxes")`).
<br>
### Assignment Extensions
We know that you will try your best to submit assignments on time. However, we understand that life happens. We can accept late assignments with a deduction of 2% of your assignment score per day late.
For example, if you scored 9/10 on an assignment (90%) but turned it in two days late, your score would be 8.6/10 (86%).
<br>
## Code of Conduct
We would like to create an open, safe, welcoming, diverse, inclusive, intellectually stimulating, and hopefully fun class experience.
We strive to be a space in which individual differences are respected, so that each individual can reach their fullest potential.
<br>
### Guidelines
- Demonstrating empathy and kindness toward other people
- Giving and gracefully accepting constructive feedback
- Avoiding making assumptions about others
- Being respectful of differing opinions, viewpoints, and experiences
- Take the time to consider how your speech and actions may influence others
- Actively seek to acknowledge and respect the boundaries of other members
- Demonstrating academic integrity
- Students can work together, but assignments must show unique contributions from the student who turns in the assignment
- Students can use online resources for help, but assignments must show unique contributions from the student who turns in the assignment - plagiarism is not allowed
- If students are struggling, reach out to instructors or TAs as early as possible
This applies to emails, surveys, Slack, Zoom, office hours, meetings with other students, instructors, or TAs.
**Please reach out to a TA or instructor if you witness or experience a violation of the class guidelines or other JHU codes of conduct.**
<br>
### Resources
- **JHU Student Code of Conduct:** https://studentaffairs.jhu.edu/policies-guidelines/student-code/
- **Hopkins School of Medicine:** https://www.hopkinsmedicine.org/research/resources/offices-policies/OPC/Research_Integrity/som_code_of_conduct_04302020.pdf
- **JHSPH Academic Ethics Code:** https://www.jhsph.edu/offices-and-services/student-affairs/resources/student-policies/_documents/academic-ethics-code.pdf
**The University has developed avenues for reporting and for seeking help including:**
- JHU Sexual Assault Helpline, 410-516-7333 (confidential)
- Campus Safety and Security, 410-516-7777
- University Sexual Assault Response and Prevention website
- Johns Hopkins Compliance Hotline, 844-SPEAK2US (844-733-2528)
- JHU Office of Institutional Equity 410-516-8075 (nonconfidential)
- Johns Hopkins Student Assistance Program (JHSAP), 443-287-7000
- University Health Services - Mental Health (UHS-MS), 410-955-1892
- The Faculty and Staff Assistance Program (FASAP), 443-997-7000