class: center, middle, inverse, title-slide # Data Visualization in
R
## Lesson 1: Grammar of Graphics ### Christy Garcia, Chris Prener ### September 4, 2019 --- # What We're All About We're in our **eigth semester** of offering seminars on using `R` for data science. </br> We were founded in **2015** by Christy Garcia, Chris Prener, and Kelly Lovejoy. </br> We are a **collaborative, interdisciplinary** group at Saint Louis University focused on **building community** around open source software and open science. --- # What We're All About We ❤️ `R`, RStudio, and the `tidyverse`! -- </br> Our seminars cover *most* of data science workflow from Wickham and Grollman (2016): <img src="assets/workflow.png" width="689" /> --- # Upcoming Events ### DSS 08: Data Visualization in `R` * Session 02 - Septemeber 18th * Session 03 - October 2nd * Session 04 - October 16th -- ### Other DSS Events * SLU Researchpalooza - September 11th/12th * Brownbag, Git and GitHub - September 12th * Brownbag, Open Science Framework - October 10th --- # GitHub We host all of our materials on GitHub. If you want to get back to the lesson materials later, head to [https://github.com/slu-dss](https://github.com/slu-dss) and look for the `wrangling-01` repository (a special type of folder). <img src="assets/github.png" width="1576" /> --- # Getting Started * You need to have `R` installed and **RStudio** open. * You need to have installed all of the necessary packages: ```r install.packages(c("tidyverse", "cowplot", "here", "knitr", "rmarkdown", "usethis")) ``` * You need to have downloaded and opened our lesson materials: ```r usethis::use_course( "https://github.com/slu-dss/wrangling-01/archive/master.zip") ``` * RStudio should open a new window that says `wrangling-01` in the upper right hand corner.