diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0f8cf5e --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +.Rproj.user +.Rhistory +.RData +.Ruserdata +.DSStore \ No newline at end of file diff --git a/DataVizLab3.Rproj b/DataVizLab3.Rproj new file mode 100644 index 0000000..8e3c2eb --- /dev/null +++ b/DataVizLab3.Rproj @@ -0,0 +1,13 @@ +Version: 1.0 + +RestoreWorkspace: Default +SaveWorkspace: Default +AlwaysSaveHistory: Default + +EnableCodeIndexing: Yes +UseSpacesForTab: Yes +NumSpacesForTab: 2 +Encoding: UTF-8 + +RnwWeave: Sweave +LaTeX: pdfLaTeX diff --git a/Lab3.Rmd b/Lab3.Rmd new file mode 100644 index 0000000..e9d3f29 --- /dev/null +++ b/Lab3.Rmd @@ -0,0 +1,22 @@ +--- +title: "Lab 3" +author: + - Makayla Whitney + - Joe Swinehart + - Janette Avelar + - David Fainstein +date: "2/8/2021" +output: html_document +--- + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = TRUE) +``` + +```{r setup} + +library(here) +library(tidyverse) +library(lubridate) +library(waffle) +```