Skip to content

Instantly share code, notes, and snippets.

@njtierney
Last active November 29, 2022 04:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save njtierney/4862fa73abab97093d779fa7f2904d11 to your computer and use it in GitHub Desktop.
Save njtierney/4862fa73abab97093d779fa7f2904d11 to your computer and use it in GitHub Desktop.
library(tidyverse)
library(ggforce)
wpp_020 <- readr::read_csv("https://gist.githubusercontent.com/njtierney/8b3b55cec0fe95f496b7047bf095fd5b/raw/5b31740a102198fa3f76105f5f994bfa16e3e7f5/wpp_020.csv")
#> Rows: 70854 Columns: 4
#> ── Column specification ────────────────────────────────────────────────────────
#> Delimiter: ","
#> chr (1): country
#> dbl (3): lower.age.limit, year, population
#> 
#> ℹ Use `spec()` to retrieve the full column specification for this data.
#> ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.

wpp_018 <- readr::read_csv("https://gist.githubusercontent.com/njtierney/0761a2ca22fe0171c4fbbe6490ea5609/raw/e6066236e3a94d5ef5349c37ef84ee356fe2460a/wpp_018.csv")
#> Rows: 70854 Columns: 4
#> ── Column specification ────────────────────────────────────────────────────────
#> Delimiter: ","
#> chr (1): country
#> dbl (3): lower.age.limit, year, population
#> 
#> ℹ Use `spec()` to retrieve the full column specification for this data.
#> ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.

countries <- c(
  "Belgium",
  "Finland",
  "Germany",
  "Italy",
  "Luxembourg",
  "Netherlands",
  "Poland",
  "United Kingdom"
)

wpp_2005_020 <- wpp_020 %>% 
  as_tibble() %>% 
  filter(country %in% countries) %>% 
  filter(year == 2005) %>% 
  arrange(lower.age.limit)

wpp_2005_018 <- wpp_018 %>% 
  filter(country %in% countries) %>% 
  filter(year == 2005) %>% 
  arrange(lower.age.limit)

wpp_2005_combined <- bind_rows(
  v020 = wpp_2005_020,
  v018 = wpp_2005_018,
  .id = "version"
)

ggplot(wpp_2005_combined,
       aes(x = lower.age.limit,
           y = population,
           fill = version)) + 
  geom_col(position = "dodge") +
  facet_wrap(~country,
             scales = "free_y")

Created on 2022-11-29 with reprex v2.0.2

Session info
sessioninfo::session_info()
#> ─ Session info ───────────────────────────────────────────────────────────────
#>  setting  value
#>  version  R version 4.2.1 (2022-06-23)
#>  os       macOS Monterey 12.3.1
#>  system   aarch64, darwin20
#>  ui       X11
#>  language (EN)
#>  collate  en_US.UTF-8
#>  ctype    en_US.UTF-8
#>  tz       Australia/Perth
#>  date     2022-11-29
#>  pandoc   2.19.2 @ /Applications/RStudio.app/Contents/Resources/app/quarto/bin/tools/ (via rmarkdown)
#> 
#> ─ Packages ───────────────────────────────────────────────────────────────────
#>  package       * version  date (UTC) lib source
#>  assertthat      0.2.1    2019-03-21 [1] CRAN (R 4.2.0)
#>  backports       1.4.1    2021-12-13 [1] CRAN (R 4.2.0)
#>  bit             4.0.4    2020-08-04 [1] CRAN (R 4.2.0)
#>  bit64           4.0.5    2020-08-30 [1] CRAN (R 4.2.0)
#>  broom           1.0.1    2022-08-29 [1] CRAN (R 4.2.0)
#>  cellranger      1.1.0    2016-07-27 [1] CRAN (R 4.2.0)
#>  cli             3.4.1    2022-09-23 [1] CRAN (R 4.2.0)
#>  colorspace      2.0-3    2022-02-21 [1] CRAN (R 4.2.0)
#>  crayon          1.5.2    2022-09-29 [1] CRAN (R 4.2.0)
#>  curl            4.3.3    2022-10-06 [1] CRAN (R 4.2.0)
#>  DBI             1.1.3    2022-06-18 [1] CRAN (R 4.2.0)
#>  dbplyr          2.2.1    2022-06-27 [1] CRAN (R 4.2.0)
#>  digest          0.6.30   2022-10-18 [1] CRAN (R 4.2.0)
#>  dplyr         * 1.0.10   2022-09-01 [1] CRAN (R 4.2.0)
#>  ellipsis        0.3.2    2021-04-29 [1] CRAN (R 4.2.0)
#>  evaluate        0.17     2022-10-07 [1] CRAN (R 4.2.0)
#>  fansi           1.0.3    2022-03-24 [1] CRAN (R 4.2.0)
#>  farver          2.1.1    2022-07-06 [1] CRAN (R 4.2.0)
#>  fastmap         1.1.0    2021-01-25 [1] CRAN (R 4.2.0)
#>  forcats       * 0.5.2    2022-08-19 [1] CRAN (R 4.2.0)
#>  fs              1.5.2    2021-12-08 [1] CRAN (R 4.2.0)
#>  gargle          1.2.1    2022-09-08 [1] CRAN (R 4.2.0)
#>  generics        0.1.3    2022-07-05 [1] CRAN (R 4.2.0)
#>  ggforce       * 0.4.1    2022-10-04 [1] CRAN (R 4.2.0)
#>  ggplot2       * 3.3.6    2022-05-03 [1] CRAN (R 4.2.0)
#>  glue            1.6.2    2022-02-24 [1] CRAN (R 4.2.0)
#>  googledrive     2.0.0    2021-07-08 [1] CRAN (R 4.2.0)
#>  googlesheets4   1.0.1    2022-08-13 [1] CRAN (R 4.2.0)
#>  gtable          0.3.1    2022-09-01 [1] CRAN (R 4.2.0)
#>  haven           2.5.1    2022-08-22 [1] CRAN (R 4.2.0)
#>  highr           0.9      2021-04-16 [1] CRAN (R 4.2.0)
#>  hms             1.1.2    2022-08-19 [1] CRAN (R 4.2.0)
#>  htmltools       0.5.3    2022-07-18 [1] CRAN (R 4.2.0)
#>  httr            1.4.4    2022-08-17 [1] CRAN (R 4.2.0)
#>  jsonlite        1.8.2    2022-10-02 [1] CRAN (R 4.2.0)
#>  knitr           1.40     2022-08-24 [1] CRAN (R 4.2.0)
#>  labeling        0.4.2    2020-10-20 [1] CRAN (R 4.2.0)
#>  lifecycle       1.0.3    2022-10-07 [1] CRAN (R 4.2.0)
#>  lubridate       1.8.0    2021-10-07 [1] CRAN (R 4.2.0)
#>  magrittr        2.0.3    2022-03-30 [1] CRAN (R 4.2.0)
#>  MASS            7.3-58.1 2022-08-03 [1] CRAN (R 4.2.0)
#>  mime            0.12     2021-09-28 [1] CRAN (R 4.2.0)
#>  modelr          0.1.9    2022-08-19 [1] CRAN (R 4.2.0)
#>  munsell         0.5.0    2018-06-12 [1] CRAN (R 4.2.0)
#>  pillar          1.8.1    2022-08-19 [1] CRAN (R 4.2.0)
#>  pkgconfig       2.0.3    2019-09-22 [1] CRAN (R 4.2.0)
#>  polyclip        1.10-0   2019-03-14 [1] CRAN (R 4.2.0)
#>  purrr         * 0.3.5    2022-10-06 [1] CRAN (R 4.2.0)
#>  R.cache         0.16.0   2022-07-21 [1] CRAN (R 4.2.0)
#>  R.methodsS3     1.8.2    2022-06-13 [1] CRAN (R 4.2.0)
#>  R.oo            1.25.0   2022-06-12 [1] CRAN (R 4.2.0)
#>  R.utils         2.12.0   2022-06-28 [1] CRAN (R 4.2.0)
#>  R6              2.5.1    2021-08-19 [1] CRAN (R 4.2.0)
#>  Rcpp            1.0.9    2022-07-08 [1] CRAN (R 4.2.0)
#>  readr         * 2.1.3    2022-10-01 [1] CRAN (R 4.2.0)
#>  readxl          1.4.1    2022-08-17 [1] CRAN (R 4.2.0)
#>  reprex          2.0.2    2022-08-17 [1] CRAN (R 4.2.0)
#>  rlang           1.0.6    2022-09-24 [1] CRAN (R 4.2.0)
#>  rmarkdown       2.17     2022-10-07 [1] CRAN (R 4.2.0)
#>  rstudioapi      0.14     2022-08-22 [1] CRAN (R 4.2.0)
#>  rvest           1.0.3    2022-08-19 [1] CRAN (R 4.2.0)
#>  scales          1.2.1    2022-08-20 [1] CRAN (R 4.2.0)
#>  sessioninfo     1.2.2    2021-12-06 [1] CRAN (R 4.2.0)
#>  stringi         1.7.8    2022-07-11 [1] CRAN (R 4.2.0)
#>  stringr       * 1.4.1    2022-08-20 [1] CRAN (R 4.2.0)
#>  styler          1.7.0    2022-03-13 [1] CRAN (R 4.2.0)
#>  tibble        * 3.1.8    2022-07-22 [1] CRAN (R 4.2.0)
#>  tidyr         * 1.2.1    2022-09-08 [1] CRAN (R 4.2.0)
#>  tidyselect      1.2.0    2022-10-10 [1] CRAN (R 4.2.0)
#>  tidyverse     * 1.3.2    2022-07-18 [1] CRAN (R 4.2.0)
#>  tweenr          2.0.2    2022-09-06 [1] CRAN (R 4.2.0)
#>  tzdb            0.3.0    2022-03-28 [1] CRAN (R 4.2.0)
#>  utf8            1.2.2    2021-07-24 [1] CRAN (R 4.2.0)
#>  vctrs           0.4.2    2022-09-29 [1] CRAN (R 4.2.0)
#>  vroom           1.6.0    2022-09-30 [1] CRAN (R 4.2.0)
#>  withr           2.5.0    2022-03-03 [1] CRAN (R 4.2.0)
#>  xfun            0.33     2022-09-12 [1] CRAN (R 4.2.0)
#>  xml2            1.3.3    2021-11-30 [1] CRAN (R 4.2.0)
#>  yaml            2.3.5    2022-02-21 [1] CRAN (R 4.2.0)
#> 
#>  [1] /Library/Frameworks/R.framework/Versions/4.2-arm64/Resources/library
#> 
#> ──────────────────────────────────────────────────────────────────────────────
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment