-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-practice.Rmd
More file actions
38 lines (34 loc) · 1017 Bytes
/
github-practice.Rmd
File metadata and controls
38 lines (34 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
title: "SDS 192 Assignment"
subtitle: "SDS 192"
author:
- name: Author One
affiliation: Smith College
- name: Author Two
affiliation: Smith College
date: "`r format(Sys.Date(), '%B %e, %Y')`"
output:
html_document:
toc: true
toc_depth: 2
toc_float: true
fig_width: 7
fig_height: 6
fig_caption: true
theme: lumen
df_print: paged
code_folding: show
---
```{r}
#Load the ggplot library here.
library(ggplot2)
```
```{r}
pioneer_valley_2013 <- read.csv("https://raw.githubusercontent.com/SDS-192-Intro/sds-192-labs/main/Day7-GrammarGraphics/datasets/pioneer_valley_census_2013.csv", skip = 2)
pioneer_valley_2013_dictionary <- read.csv("https://raw.githubusercontent.com/SDS-192-Intro/sds-192-labs/main/Day7-GrammarGraphics/datasets/pioneer_valley_census_2013_dictionary.csv")
```
1. Check column names and values.
```{r}
#Check the column names for pioneer_valley_2013. View what column names refer to via pioneer_valley_2013_dictionary
names(pioneer_valley_2013)
```