Preface

This is tidyverse R code to supplement the book, Quantitative Social Science: An Introduction, by Kosuke Imai.

The R code included with the text of QSS and the supplementary materials relies mostly on base R functions. This translates the code examples provided with QSS to tidyverse R code. Tidyverse refers to a set of packages (ggplot2, dplyr, tidyr, readr, purrr, tibble, and a few others) that share common data representations, especially the use of data frames for return values.

This is not a complete introduction to R and the tidyverse. I suggest pairing it with R for Data Science by Hadley Wickham and Garrett Grolemond.

These materials are supplement to replace the existing QSS code with the tidvyerse dialect of R. Thus it does not replicate the substantive material, and not meant to be used independently of the QSS text. However, the provided code is not merely a translation of the QSS code. It often uses the topics in QSS to delve deeper into data science, data visualization, and computational topics.

I wrote this code while teaching course that employed both texts in order to make the excellent examples and statistical material in QSS more compatible with the modern data science using R approach in R4DS.

Colophon

To install the R packages used in this work run the following code, installs the qsstidy package which contains no code or data, but will install the needed dependencies.

install.packages("devtools")
install_github("jrnold/qss-tidy")

Additionally, the gganimate package requires installing ffmpeg with libvpx support.

The source of the book is available here and was built with versions of packages below:

#> Session info -------------------------------------------------------------
#>  setting  value                       
#>  version  R version 3.4.3 (2017-11-30)
#>  system   x86_64, darwin15.6.0        
#>  ui       X11                         
#>  language (EN)                        
#>  collate  en_US.UTF-8                 
#>  tz       America/Los_Angeles         
#>  date     2017-12-22
#> Packages -----------------------------------------------------------------
#>  package    * version    date       source                          
#>  animation  * 2.5        2017-03-30 cran (@2.5)                     
#>  assertthat   0.2.0      2017-04-11 CRAN (R 3.4.0)                  
#>  backports    1.1.1      2017-09-25 CRAN (R 3.4.2)                  
#>  base       * 3.4.3      2017-12-07 local                           
#>  bindr        0.1        2016-11-13 CRAN (R 3.4.0)                  
#>  bindrcpp     0.2        2017-06-17 CRAN (R 3.4.0)                  
#>  bookdown     0.5        2017-08-20 CRAN (R 3.4.1)                  
#>  broom        0.4.3      2017-11-20 CRAN (R 3.4.2)                  
#>  cellranger   1.1.0      2016-07-27 CRAN (R 3.4.0)                  
#>  cli          1.0.0      2017-11-05 cran (@1.0.0)                   
#>  colorspace   1.3-2      2016-12-14 CRAN (R 3.4.0)                  
#>  compiler     3.4.3      2017-12-07 local                           
#>  crayon       1.3.4      2017-09-16 CRAN (R 3.4.1)                  
#>  datasets   * 3.4.3      2017-12-07 local                           
#>  devtools     1.13.4     2017-11-09 CRAN (R 3.4.2)                  
#>  digest       0.6.13     2017-12-14 cran (@0.6.13)                  
#>  dplyr      * 0.7.4.9000 2017-12-22 Github (tidyverse/dplyr@c04deb3)
#>  evaluate     0.10.1     2017-06-24 CRAN (R 3.4.0)                  
#>  forcats    * 0.2.0      2017-01-23 CRAN (R 3.4.0)                  
#>  foreign      0.8-69     2017-06-22 CRAN (R 3.4.3)                  
#>  ggplot2    * 2.2.1      2016-12-30 CRAN (R 3.4.0)                  
#>  glue         1.2.0      2017-10-29 CRAN (R 3.4.2)                  
#>  graphics   * 3.4.3      2017-12-07 local                           
#>  grDevices  * 3.4.3      2017-12-07 local                           
#>  grid         3.4.3      2017-12-07 local                           
#>  gtable       0.2.0      2016-02-26 CRAN (R 3.4.0)                  
#>  haven        1.1.0      2017-07-09 CRAN (R 3.4.1)                  
#>  hms          0.4.0      2017-11-23 CRAN (R 3.4.3)                  
#>  htmltools    0.3.6      2017-04-28 CRAN (R 3.4.0)                  
#>  httr         1.3.1      2017-08-20 CRAN (R 3.4.1)                  
#>  jsonlite     1.5        2017-06-01 CRAN (R 3.4.0)                  
#>  knitr        1.17       2017-08-10 CRAN (R 3.4.1)                  
#>  lattice      0.20-35    2017-03-25 CRAN (R 3.4.3)                  
#>  lazyeval     0.2.1      2017-10-29 CRAN (R 3.4.2)                  
#>  lubridate    1.7.1      2017-11-03 cran (@1.7.1)                   
#>  magrittr     1.5        2014-11-22 CRAN (R 3.4.0)                  
#>  memoise      1.1.0      2017-04-21 CRAN (R 3.4.0)                  
#>  methods      3.4.3      2017-12-07 local                           
#>  mnormt       1.5-5      2016-10-15 CRAN (R 3.4.0)                  
#>  modelr       0.1.1      2017-07-24 CRAN (R 3.4.1)                  
#>  munsell      0.4.3      2016-02-13 CRAN (R 3.4.0)                  
#>  nlme         3.1-131    2017-02-06 CRAN (R 3.4.3)                  
#>  parallel     3.4.3      2017-12-07 local                           
#>  pkgconfig    2.0.1      2017-03-21 CRAN (R 3.4.0)                  
#>  plyr         1.8.4      2016-06-08 CRAN (R 3.4.0)                  
#>  psych        1.7.8      2017-09-09 CRAN (R 3.4.2)                  
#>  purrr      * 0.2.4      2017-10-18 cran (@0.2.4)                   
#>  R6           2.2.2      2017-06-17 cran (@2.2.2)                   
#>  Rcpp         0.12.14    2017-11-23 cran (@0.12.14)                 
#>  readr      * 1.1.1      2017-05-16 CRAN (R 3.4.0)                  
#>  readxl       1.0.0      2017-04-18 CRAN (R 3.4.0)                  
#>  reshape2     1.4.2      2016-10-22 CRAN (R 3.4.0)                  
#>  rlang        0.1.4.9000 2017-12-19 Github (hadley/rlang@cc7587c)   
#>  rmarkdown    1.8        2017-11-17 CRAN (R 3.4.2)                  
#>  rprojroot    1.2        2017-01-16 CRAN (R 3.4.0)                  
#>  rstudioapi   0.7        2017-09-07 CRAN (R 3.4.1)                  
#>  rvest        0.3.2      2016-06-17 CRAN (R 3.4.0)                  
#>  scales       0.5.0      2017-08-24 CRAN (R 3.4.1)                  
#>  stats      * 3.4.3      2017-12-07 local                           
#>  stringi      1.1.6      2017-11-17 cran (@1.1.6)                   
#>  stringr    * 1.2.0      2017-02-18 CRAN (R 3.4.0)                  
#>  tibble     * 1.3.4      2017-08-22 CRAN (R 3.4.1)                  
#>  tidyr      * 0.7.2.9000 2017-11-30 Github (tidyverse/tidyr@efd9ea5)
#>  tidyselect   0.2.3      2017-11-06 cran (@0.2.3)                   
#>  tidyverse  * 1.2.1      2017-11-14 cran (@1.2.1)                   
#>  tools        3.4.3      2017-12-07 local                           
#>  utils      * 3.4.3      2017-12-07 local                           
#>  withr        2.1.1      2017-12-19 cran (@2.1.1)                   
#>  xml2         1.1.1      2017-01-24 CRAN (R 3.4.0)                  
#>  yaml         2.1.15     2017-12-01 CRAN (R 3.4.2)