432 Lab 02 Template

Your Name Goes Here

2021-01-29

Setup

library(knitr)
library(rmdformats)

## Global options
opts_chunk$set(comment=NA)
opts_knit$set(width=75)

Package Loading

library(here)
library(magrittr)
library(janitor)

# add other packages here as desired

library(tidyverse)

Import the oh_counties_2020 Data

This template assumes that you’ve placed the oh_counties_2020.csv data set in a sub-folder called data beneath the lab02 project directory you’re using in R Studio.

oh20 <- read_csv(here("data", "oh_counties_2020.csv")) 

oh20 <- oh20 %>%
    mutate(fips = as.character(fips))

oh20

1 Question 1

Place your response to Question 1 here.

2 Question 2

Place your response to Question 2 here.

3 Question 3

Place your response to Question 3 here.

4 Question 4

Place your response to Question 4 here.

5 Question 5

Place your response to Question 5 here.

Session Information

xfun::session_info()
R version 4.0.3 (2020-10-10)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 10 x64 (build 19041)

Locale:
  LC_COLLATE=English_United States.1252 
  LC_CTYPE=English_United States.1252   
  LC_MONETARY=English_United States.1252
  LC_NUMERIC=C                          
  LC_TIME=English_United States.1252    

Package version:
  askpass_1.1        assertthat_0.2.1   backports_1.2.1   
  base64enc_0.1.3    BH_1.75.0.0        blob_1.2.1        
  bookdown_0.21      brio_1.1.1         broom_0.7.3       
  callr_3.5.1        cellranger_1.1.0   cli_2.2.0         
  clipr_0.7.1        colorspace_2.0-0   compiler_4.0.3    
  cpp11_0.2.5        crayon_1.3.4       curl_4.3          
  DBI_1.1.1          dbplyr_2.0.0       desc_1.2.0        
  diffobj_0.3.3      digest_0.6.27      dplyr_1.0.3       
  ellipsis_0.3.1     evaluate_0.14      fansi_0.4.2       
  farver_2.0.3       forcats_0.5.1      fs_1.5.0          
  generics_0.1.0     ggplot2_3.3.3      glue_1.4.2        
  graphics_4.0.3     grDevices_4.0.3    grid_4.0.3        
  gtable_0.3.0       haven_2.3.1        here_1.0.1        
  highr_0.8          hms_1.0.0          htmltools_0.5.0   
  httr_1.4.2         isoband_0.2.3      janitor_2.1.0     
  jsonlite_1.7.2     knitr_1.31         labeling_0.4.2    
  lattice_0.20.41    lifecycle_0.2.0    lubridate_1.7.9.2 
  magrittr_2.0.1     markdown_1.1       MASS_7.3.53       
  Matrix_1.2.18      methods_4.0.3      mgcv_1.8.33       
  mime_0.9           modelr_0.1.8       munsell_0.5.0     
  nlme_3.1.149       openssl_1.4.3      pillar_1.4.7      
  pkgbuild_1.2.0     pkgconfig_2.0.3    pkgload_1.1.0     
  praise_1.0.0       prettyunits_1.1.1  processx_3.4.5    
  progress_1.2.2     ps_1.5.0           purrr_0.3.4       
  R6_2.5.0           RColorBrewer_1.1.2 Rcpp_1.0.6        
  readr_1.4.0        readxl_1.3.1       rematch_1.0.1     
  rematch2_2.1.2     reprex_1.0.0       rlang_0.4.9       
  rmarkdown_2.6      rmdformats_1.0.1   rprojroot_2.0.2   
  rstudioapi_0.13    rvest_0.3.6        scales_1.1.1      
  selectr_0.4.2      snakecase_0.11.0   splines_4.0.3     
  stats_4.0.3        stringi_1.5.3      stringr_1.4.0     
  sys_3.4            testthat_3.0.1     tibble_3.0.5      
  tidyr_1.1.2        tidyselect_1.1.0   tidyverse_1.3.0   
  tinytex_0.29       tools_4.0.3        utf8_1.1.4        
  utils_4.0.3        vctrs_0.3.6        viridisLite_0.3.0 
  waldo_0.2.3        withr_2.4.1        xfun_0.19         
  xml2_1.3.2         yaml_2.2.1