briatte / dsr

Introduction to Data Science with R (Sciences Po, Paris, 2023)
https://f.briatte.org/teaching/syllabus-dsr.pdf
42 stars 9 forks source link

TODO items from class debriefs #25

Open briatte opened 1 year ago

briatte commented 1 year ago

Ideas for more graded exercises

See #27

More (bonus) examples

See #28

Teaching resources

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

briatte commented 1 year ago

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?