dsr icon indicating copy to clipboard operation
dsr copied to clipboard

TODO items from class debriefs

Open briatte opened this issue 2 years ago • 1 comments

  • All weeks
    • [ ] Unify slides ('practice session' slides are different in Weeks 1-10 and in Weeks 11-12)
    • [ ] Clean up the readings
      • [ ] Focus on as a few core handbooks as possible
      • [ ] Cite extra references in the slides/emails
    • [ ] Sync the 'readings' slides with the lists of readings + videos sent by email
    • [ ] Sync with 'official' syllabus
  • Week 3
    • [x] Fix #10
    • [ ] Fix #11
    • [ ] Lose countrycode dependency?
  • Week 4
    • [ ] Fix #11 (again?!)
    • [ ] Fix #9
  • Week 5
  • Week 6
    • [ ] Refer students to readings, and to this for distributions: https://www.statology.org/tutorials/
    • [ ] Link from example NYT article with confidence intervals
  • Week 7
    • [ ] Slides required!!!
    • [ ] Debrief email required!!!
    • [ ] Refer students to this tutorial as wrap-up on descriptive stats, correlation and SEs
  • Week 8
    • [ ] Update Bartels data using recent BLS data?
    • [ ] Try to code an EU 2012 membership dummy and add it to Exercise 8?
      • [ ] use this: https://jfjelstul.github.io/eums/index.html
      • [ ] Current europe dummy, minus Albania, Bosnia, Croatia, Kosovo
    • [ ] … or try a Eurozone membership dummy?
      • [ ] use this: https://jfjelstul.github.io/eums/index.html
    • [ ] Add a mention of Schrodt 2010 in the slides?
    • [ ] Cite other extra references, e.g. book on interactions, Breiman's two cultures?
    • [ ] Mention the many model tutorials there: https://ourcodingclub.github.io/tutorials.html
    • [ ] Mention the many stat/ML tutorials there: https://www.statology.org/machine-learning-tutorials/
  • Week 9 (nonlinearity/logit)
    • [ ] Slides required!!! (use those from this year's Session 10)
    • [ ] Debrief email required!!!
    • [ ] Show Jackman graphs of US votes?
  • Week 10 (surveys, ex-Week 6)
    • [ ] Debrief email required!!!
    • [ ] Slides required!!! (cite Gelman 2006)
    • [ ] Cover survey data with dummies -- use Chris Hanretty example on same-sex vote?
    • [ ] Code Arab Barometer example with survey weights?
    • [ ] Code ESS example with weights?
      • [ ] In that case, make the exercise use them too?
    • [ ] survey exercise using LFS data (relevant to student internships)
  • Week 11
    • [ ] Debrief email required!!!
  • Week 12

Ideas for more graded exercises

See #27

More (bonus) examples

See #28

Teaching resources

https://education.rstudio.com/teach/

briatte avatar Apr 20 '23 14:04 briatte

For maps on Week 12, show Scandinavia:

sc <- filter(geo, NAME_EN %in% c("Denmark", "Finland", "Norway", "Sweden"))
(bb <- sf::st_bbox(sc))
ggplot(sc) +
  geom_sf(aes(fill = NAME_EN)) +
  coord_sf(ylim = c(54, 71), # y = latitude = horizontal
           xlim = c(4, 33))  # x = longitude = vertical

… or even plot EU with 2004 accession countries?

briatte avatar Apr 26 '23 10:04 briatte