-
Notifications
You must be signed in to change notification settings - Fork 0
/
readings.Rmd
305 lines (216 loc) · 17.4 KB
/
readings.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
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
# Meeting Schedule
Select a module from the menu to see details about topics, readings, and assignments. Additional notes and links to course materials are available through Canvas, which has dedicated sections for each module and meeting.
```{r, echo=FALSE, message=FALSE}
schedule_tbl <- readr::read_csv("schedule.csv",
col_types = readr::cols(
module = readr::col_character(),
date = readr::col_character(),
start = readr::col_logical()
))
schedule_tbl <- dplyr::mutate(schedule_tbl, date = lubridate::mdy(date))
schedule_tbl <- dplyr::mutate(schedule_tbl, month = lubridate::month(date))
schedule_tbl <- dplyr::mutate(schedule_tbl, month = month.name[month])
schedule_tbl <- dplyr::mutate(schedule_tbl, day = lubridate::day(date))
schedule_tbl <- dplyr::mutate(schedule_tbl, dow = weekdays(date, abbreviate = FALSE))
schedule_tbl <- dplyr::mutate(schedule_tbl, label = paste0(dow, ", ", month, " ", day))
schedule_assign_tbl <- readr::read_csv("schedule_assignments.csv",
col_types = readr::cols(
assignment = readr::col_character(),
date = readr::col_character()
))
schedule_assign_tbl <- dplyr::filter(schedule_assign_tbl, is.na(assignment) == FALSE)
schedule_assign_tbl <- dplyr::mutate(schedule_assign_tbl, date = lubridate::mdy(date))
schedule_assign_tbl <- dplyr::mutate(schedule_assign_tbl, month = lubridate::month(date))
schedule_assign_tbl <- dplyr::mutate(schedule_assign_tbl, month = month.name[month])
schedule_assign_tbl <- dplyr::mutate(schedule_assign_tbl, day = lubridate::day(date))
schedule_assign_tbl <- dplyr::mutate(schedule_assign_tbl, dow = weekdays(date, abbreviate = FALSE))
schedule_assign_tbl <- dplyr::mutate(schedule_assign_tbl, label = paste0(dow, ", ", month, " ", day))
```
\newpage
## Module 1 - Engaging the Social World
### Meeting 1-1 - `r schedule_tbl$label[1]` - Course Introduction {-}
* **Before Class:**
* Read *A Sociology Experiment*, "Chapter 1 - A Sociology Experiment," pp. 1-9 (<a href = "https://www.sociologyexperiment.com/" target = "_blank">Link</a>)
* Complete the Course Onboarding tasks (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
* **After Class:**
* Complete the Student Information Sheet for `r schedule_assign_tbl$label[1]` (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
---
### Meeting 1-2 - `r schedule_tbl$label[2]` - Social Theory {-}
* **Before Class:**
* Read *A Sociology Experiment*, "Chapter 1 - A Sociology Experiment," pp. 9-24 (<a href = "https://www.sociologyexperiment.com/" target = "_blank">Link</a>)
* Complete the Student Information Sheet (via <a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
---
### Meeting 1-3 - `r schedule_tbl$label[3]` - Theorizing Health Disparities {-}
* **Before Class:**
* Read *A Sociology Experiment*, "Chapter 15 - Health and Illness," pp. 1-10 and pp. 23-35 (<a href = "https://www.sociologyexperiment.com/" target = "_blank">Link</a>)
* Read Phelan et al. (2010)
* Phelan, Jo C., Bruce Link, and Parisa Tehranifar. 2010. "Social Conditions as Fundamental Causes of Health Inequalities: Theory, Evidence, and Policy Implications." *Journal of Health and Social Behavior* 51(S):S28-S40. (<a href="http://ezp.slu.edu/login?url=http://www.jstor.org/stable/20798314" target="_blank">Link</a>)
* Watch *Unnatural Causes*, Part 1 - "In Sickness and in Wealth" (<a href="http://ezp.slu.edu/login?url=http://search.ebscohost.com/login.aspx?direct=true&db=cat00825a&AN=slu.b4325118&site=eds-live" target="_blank">Pius Library</a>)
---
### Meeting 1-4 - `r schedule_tbl$label[4]` - Studying Society {-}
* **Before Class:**
* Read *A Sociology Experiment*, "Chapter 2 - Research Methods" (<a href = "https://www.sociologyexperiment.com/" target = "_blank">Link</a>)
* **After Class:**
* Complete Theory Isn't Dead 1 for `r schedule_assign_tbl$label[2]` (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
\newpage
## Module 2 - Structuring the Social World
### Meeting 2-1 - `r schedule_tbl$label[5]` - Nature or Nurture? {-}
* **Before Class:**
* Read *A Sociology Experiment*, "Chapter 3 - Social Structure and the Individual," pp. 1-4 (<a href = "https://www.sociologyexperiment.com/" target = "_blank">Link</a>)
* Read Bearman (2008)
* Bearman, Peter. 2008. "Introduction: Exploring Genetics and Social Structure." *American Journal of Sociology* 114(S1):v-x. (<a href="http://ezp.slu.edu/login?url=http://www.jstor.org/stable/10.1086/596596" target="_blank">Link</a>)
---
### Meeting 2-2 - `r schedule_tbl$label[6]` - Social Structure {-}
* **Before Class:**
* Read *A Sociology Experiment*, "Chapter 3 - Social Structure and the Individual," pp. 4-14 (<a href = "https://www.sociologyexperiment.com/" target = "_blank">Link</a>)
---
### Meeting 2-3 - `r schedule_tbl$label[7]` - Socialization {-}
* **Before Class:**
* Read *A Sociology Experiment*, "Chapter 3 - Social Structure and the Individual," pp. 15-26 (<a href = "https://www.sociologyexperiment.com/" target = "_blank">Link</a>)
* Read Braveman and Barclay (2009)
* Braveman, Paula and Colleen Barclay. 2009. "Health Disparities Beginning in Childhood: A Life-Course Perspective." *Pediatrics* 123(S3):S163-S175. (<a href="http://pediatrics.aappublications.org.ezp.slu.edu/content/124/Supplement_3/S163" target="_blank">Link</a>)
* **After Class:**
* Complete Sociological Experience 1 - High School for `r schedule_assign_tbl$label[4]` (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
---
### Meeting 2-4 - `r schedule_tbl$label[8]` - The Institution of Medicine {-}
* **Before Class:**
* TBD
---
### Meeting 2-5 - `r schedule_tbl$label[9]` - Medicalization {-}
* **Before Class:**
* Read *A Sociology Experiment*, "Chapter 15 - Health and Illness," pp. 10-16 (<a href = "https://www.sociologyexperiment.com/" target = "_blank">Link</a>)
* Read Conrad and Barker (2010)
* Conrad, Peter and Kristin K. Barker. 2010. "The Social Construction of Illness: Key Insights and Policy Implications." *Journal of Health and Social Behavior* 51(S):S67-S79. (<a href="http://ezp.slu.edu/login?url=https://www.jstor.org/stable/20798317" target="_blank">Link</a>)
* **After Class:**
* Study for Quiz 1 on `r schedule_assign_tbl$label[11]` (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
\newpage
## Module 3 - Culture
### Meeting 3-1 - `r schedule_tbl$label[10]` - Decoding Culture {-}
* **Before Class:**
* Read *A Sociology Experiment*, "Chapter 5 - Culture" (<a href = "https://www.sociologyexperiment.com/" target = "_blank">Link</a>)
---
### Meeting 3-2 - `r schedule_tbl$label[11]` - Culture and Health {-}
* **Before Class:**
* Read Acevedo-Garcia and Bates (2008)
* Acevedo-Garcia, Dolores and Lisa M. Bates. 2008. "Latino Health Paradoxes: Empirical Evidence, Explanations, Future Research, and Implications." Pp. 101-113 in *Latinas/os in the United States: Changing the Face of América*, edited by H. Rodríguez, R. Sáenz, and C. Menjívar. New York: Springer. (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
* **After Class:**
* Watch *Unnatural Causes*, Part 3 - "Becoming Americans" (<a href="http://ezp.slu.edu/login?url=http://search.ebscohost.com/login.aspx?direct=true&db=cat00825a&AN=slu.b4325118&site=eds-live" target="_blank">Pius Library</a>)
* Complete Theory Isn't Dead 2 for `r schedule_assign_tbl$label[3]` (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
\newpage
## Module 4 - Socioeconomic Status
### Meeting 4-1 - `r schedule_tbl$label[12]` - Social Class {-}
* **Before Class:**
* Read *A Sociology Experiment*, "Chapter 4 - Social Class, Inequality, and Poverty," pp. 1-15 (<a href = "https://www.sociologyexperiment.com/" target = "_blank">Link</a>)
---
### Meeting 4-2 - `r schedule_tbl$label[13]` - Inequality and Poverty {-}
* **Before Class:**
* Read *A Sociology Experiment*, "Chapter 4 - Social Class, Inequality, and Poverty," pp. 15-35 (<a href = "https://www.sociologyexperiment.com/" target = "_blank">Link</a>)
* **After Class:**
* Complete Sociological Experience 2 for `r schedule_assign_tbl$label[5]` (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
---
### Meeting 4-3 - `r schedule_tbl$label[14]` - Socioeconomic Status and Health {-}
* **Before Class:**
* Read Dow and Rehkopf (2010)
* Dow, William H. and David H. Rehkopf. 2010. "Socioeconomic gradients in health in international and historical context." *Annals of the New York Academy of Sciences* 1186:24-36. (<a href="http://ezp.slu.edu/login?url=http://search.ebscohost.com/login.aspx?direct=true&db=edselc&AN=edselc.2-52.0-77249121135&site=eds-live" target="_blank">Pius Library</a>)
* **After Class:**
* Watch *Unnatural Causes*, Part 7 - "Not Just a Paycheck" (<a href="http://ezp.slu.edu/login?url=http://search.ebscohost.com/login.aspx?direct=true&db=cat00825a&AN=slu.b4325118&site=eds-live" target="_blank">Pius Library</a>)
* Make sure you are wrapping up *Mama* Paper 1 for `r schedule_assign_tbl$label[8]` (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
---
### Meeting 4-4 - `r schedule_tbl$label[15]` - *Mama* Discussion 1 {-}
* **Before Class:**
* Read *Mama Might Be Better Off Dead*, Chapters 1-5
* Complete *Mama* Paper 1 (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
\newpage
## Module 5 - Gender and Sexuality
### Meeting 5-1 - `r schedule_tbl$label[16]` - Gender and Health {-}
* **Before Class:**
* Read *A Sociology Experiment*, "Chapter 6 - Gender and Sexuality," pp. 1-28 (<a href = "https://www.sociologyexperiment.com/" target = "_blank">Link</a>)
* Read Krieger (2003)
* Krieger, Nancy. 2003. "Genders, Sexes, and Health: What Are the Connections - and Why Does It Matter?" *International Journal of Epidemiology* 32(4):652-657. (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
---
### Meeting 5-2 - `r schedule_tbl$label[17]` - Sexuality and Health {-}
* **Before Class:**
* Read *A Sociology Experiment*, "Chapter 6 - Gender and Sexuality," pp. 28-36 (<a href = "https://www.sociologyexperiment.com/" target = "_blank">Link</a>)
* **After Class:**
* Study for Quiz 2 on `r schedule_assign_tbl$label[12]` (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
\newpage
## Module 6 - Race and Racism
### Meeting 6-1 - `r schedule_tbl$label[18]` - Race and Racism 1 {-}
* **Before Class:**
* Read *A Sociology Experiment*, "Chapter 7 - Race and Ethnicity," pp. 1-23 (<a href = "https://www.sociologyexperiment.com/" target = "_blank">Link</a>)
* Read Cooper et al. (2003)
* Cooper, Richard S., Jay S. Kaufman, and Ryk Ward. 2003. "Race and Genomics." *New England Journal of Medicine* 348(12):1166-1170. (<a href="https://www-nejm-org.ezp.slu.edu/doi/full/10.1056/NEJMsb022863" target="_blank">Link</a>)
---
### Meeting 6-2 -`r schedule_tbl$label[19]` - Race and Racism 2 {-}
* **Before Class:**
* *no assignments*
---
### Meeting 6-3 - `r schedule_tbl$label[20]` - Race and Racism 3 {-}
* **Before Class:**
* Read *A Sociology Experiment*, "Chapter 7 - Race and Ethnicity," pp. 23-28 (<a href = "https://www.sociologyexperiment.com/" target = "_blank">Link</a>)
* **After Class:**
* Complete Sociological Experience 3 for `r schedule_assign_tbl$label[6]` (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
---
### Meeting 6-4 - `r schedule_tbl$label[21]` - Racism and Health {-}
* **Before Class:**
* Read Jones (2006)
* Jones, David S. 2006. "The persistence of American Indian health disparities." *American Journal of Public Health* 96(12): 2122-2134. (<a href="https://ajph.aphapublications.org/doi/full/10.2105/AJPH.2004.054262" target="_blank">Link</a>)
* Read Sarche and Spicer (2008)
* Sarche, Michelle, and Paul Spicer. 2008. "Poverty and health disparities for American Indian and Alaska Native children." *Annals of the New York Academy of Sciences* 1136(1): 126-136. (<a href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2567901/" target="_blank">Link</a>)
* Read Williams and Sternthal (2010)
* Williams, David R. and Michelle Sternthal. 2010. "Understanding Racial-ethnic Disparities in Health : Sociological Contributions." *Journal of Health and Social Behavior* 51(S):S15-S27. (<a href="http://ezp.slu.edu/login?url=https://journals.sagepub.com/doi/abs/10.1177/0022146510383838" target="_blank">Link</a>)
* **After Class:**
* Watch *Unnatural Causes*, Part 4 - "Bad Sugar" (<a href="http://ezp.slu.edu/login?url=http://search.ebscohost.com/login.aspx?direct=true&db=cat00825a&AN=slu.b4325118&site=eds-live" target="_blank">Pius Library</a>)
* Make sure you are wrapping up *Mama* Paper 2 for `r schedule_assign_tbl$label[9]` (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
\newpage
## Module 7 - Intersectionality
### Meeting 7-1 - `r schedule_tbl$label[22]` - *Mama* Discussion 2 {-}
* **Before Class:**
* Read *Mama Might Be Better Off Dead*, Chapters 6-10
* Complete *Mama* Paper 2 (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
---
### Meeting 7-2 - `r schedule_tbl$label[23]` - Intersectionality and Health {-}
* **Before Class:**
* Read Collins et al. (2004)
* Collins, Jr, James W. et al. 2004. "Very Low Birthweight in African American Infants: The Role of Maternal Exposure to Interpersonal Racial Discrimination." *American Journal of Public Health* 94(12):2132-2138. (<a href="https://ajph.aphapublications.org/doi/abs/10.2105/ajph.94.12.2132" target="_blank">Link</a>)
* Read David and Collins (1997)
* David, Richard J. and James W. Collins, Jr. 1997. "Differing Birth Weight among Infants of U.S.-Born Blacks, African-Born Blacks, and U.S.-Born Whites." *The New England Journal of Medicine* 337:1209-1214. (<a href="https://www.nejm.org/doi/full/10.1056/NEJM199710233371706" target="_blank">Link</a>)
* **After Class:**
* Watch *Unnatural Causes*, Part 2 - "When the Bough Breaks" (<a href="http://ezp.slu.edu/login?url=http://search.ebscohost.com/login.aspx?direct=true&db=cat00825a&AN=slu.b4325118&site=eds-live" target="_blank">Pius Library</a>)
\newpage
## Module 8 - Urban Sociology
### Meeting 8-1 - `r schedule_tbl$label[24]` - Urban America {-}
* **Before Class:**
* Read *A Sociology Experiment*, "Chapter 12 - Urban Sociology" (<a href = "https://www.sociologyexperiment.com/" target = "_blank">Link</a>)
* Read selections from *Segregation in St. Louis: Dismantling the Divide* (<a href="https://wustl.app.box.com/s/y1n98bgzm6wulv3xg56krvg5r5axhhva" target="_blank">Link</a>)
* Chapter 1 - "Segregation at the center", pp. 4-13
* Chapter 2 - "St. Louis: A city of promise, a history of segregation", pp. 14-25
* Chapter 5 - "Segregation in St. Louis today", pp. 64-85
* **After Class:**
* Complete Sociological Experience 4 for `r schedule_assign_tbl$label[7]` (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
---
### Meeting 8-2 - `r schedule_tbl$label[25]` - Cities and Health {-}
* **Before Class:**
* Read selections from *For the Sake of All: A report on the health and well-being of African Americans in St. Louis and why it matters for everyone* (<a href="https://cpb-us-w2.wpmucdn.com/sites.wustl.edu/dist/3/1454/files/2018/06/FSOA_report_2-17zd1xm.pdf" target="_blank">Link</a>)
* Chapter 1 - "Introduction: Why consider economics, education, and health together?", pp. 10-15
* Chapter 3 - "Place matters: Neighborhood resources and health", pp. 26-33
* Chapter 5 - "A health profile of African Americans in St. Louis", pp. 46-67
* **After Class:**
* Watch *Unnatural Causes*, Part 5 - "Place Matters" (<a href="http://ezp.slu.edu/login?url=http://search.ebscohost.com/login.aspx?direct=true&db=cat00825a&AN=slu.b4325118&site=eds-live" target="_blank">Pius Library</a>)
* Make sure you are wrapping up *Mama* Paper 3 for `r schedule_assign_tbl$label[10]` (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
\newpage
## Module 9 - Course Conclusion
### Meeting 9-1 - `r schedule_tbl$label[26]` - *Mama* Discussion 3 {-}
* **Before Class:**
* Read *Mama Might Be Better Off Dead*, Chapters 11-Epilogue
* Complete *Mama* Paper 3 (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
---
### Meeting 9-2 - `r schedule_tbl$label[27]` - Course Conclusion {-}
* **Before Class:**
* Read Quadagno (2010)
* Quadagno, Jill. 2010. "Institutions, Interest Groups, and Ideology: An Agenda for the Sociology of Health Care Reform." *Journal of Health and Social Behavior* 51(2):125-136. (<a href="https://journals.sagepub.com/doi/abs/10.1177/0022146510368931" target="_blank">Link</a>)
* Read Williams (2010)
* Williams, David. 2010. "Beyond The Affordable Care Act: Achieving Real Improvements In Americans’ Health." *Health Affairs* 29(8):1481-1488. (<a href="https://www.healthaffairs.org/doi/full/10.1377/hlthaff.2010.0071" target="_blank">Link</a>)
* **After Class:**
* Study for Quiz 3 on `r schedule_assign_tbl$label[13]` (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)
* Complete the Final Project, which is due on `r schedule_assign_tbl$label[14]` (<a href = "http://canvas.slu.edu" target = "_blank">Canvas</a>)