-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path02-import.Rmd
244 lines (201 loc) · 4.61 KB
/
02-import.Rmd
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
---
title: "Import"
author: "Luis de Sousa"
date: "2018/10/01 (updated: `r Sys.Date()`)"
output:
xaringan::moon_reader:
seal: false
lib_dir: libs
css: ["assets/kunoichi.css", "assets/ninpo.css", "assets/ninjutsu.css"]
self_contained: false
nature:
ratio: "16:9"
highlightStyle: github
highlightLines: true
countIncrementalSlides: false
---
```{r import-setup, include=FALSE}
knitr::opts_chunk$set(
message = FALSE,
warning = FALSE,
dev = "png",
cache = TRUE,
cache.path = ".cache/",
fig.path = "imgs/",
fig.width = 11,
fig.height = 5
)
options(htmltools.dir.version = FALSE)
```
layout: false
class: split-70 hide-slide-number
background-image: url("imgs/HEAD-Top-data-visualization-tools-for-small-business.png")
background-size: cover
.column.slide-in-left[
.sliderbox.vmiddle.shade_main.center[
.font5[Import]]]
.column[
]
---
layout: false
class: split-20
.row.bg-main1[.content.vmiddle.center[
.white[.font5[Importing Data]]
]]
.row[
Flat files, Data files, Databases, Web
.content.vmiddle.center[
<img src="imgs/readr.png" width="15%">
<img src="imgs/readxl.png" width="15%">
<img src="imgs/haven.png" width="15%">
<br>
<img src="imgs/googledrive.png" width="15%">
<img src="imgs/googlesheets.png" width="15%">
<img src="imgs/dbplot.png" width="15%">
]]
---
layout: false
class: split-20
.row.bg-main1[.content.vmiddle.center[
.white[.font5[Importing Data - CSV]]
]]
.row[.content[
```{r import-csv-1}
library(tidyverse) #packages for data manipulation, exploration and visualization that share a common design philosophy
exchange_rates <- read.csv("data/ZAR_per_USD__Exchange_Rate_Detail_2000_to_2018-10.csv") # import all ZAR USD exchange rates from 2000 to 2018-10-08
head(exchange_rates,3) # show top 3 rows of data frame
tail(exchange_rates,3) # show bottom 3 rows of data frame
```
]]
---
layout: false
class: split-20
.row.bg-main1[.content.vmiddle.center[
.white[.font5[Importing Data - CSV]]
]]
.row[.content[
```{r import-csv-2}
exchange_rates <- exchange_rates %>%
filter(as.Date(exchange_rates$Date) >= as.Date('2018-01-01')) # filter for 2018 exchange rates
head(exchange_rates,3)
tail(exchange_rates,3)
```
]]
---
layout: false
class: split-20
.row.bg-main1[.content.vmiddle.center[
.white[.font5[Importing Data - Excel Workbooks]]
]]
.row[.content[
```{r import-excel-1}
library(readxl) # for reading excel files
path <- "data/gapminder_messy.xlsx"
combined_data <- excel_sheets(path) %>%
map_df(~ {
read_excel(path, sheet = .x,
skip = 4, trim_ws = TRUE) %>%
mutate(year = as.numeric(.x))
}) %>%
select(country, year, everything())
```
]]
---
layout: false
class: split-20
.row.bg-main1[.content.vmiddle.center[
.white[.font5[Importing Data - Excel Workbooks]]
]]
.row[.content[
```{r import-excel-2}
head(combined_data,3)
tail(combined_data,3)
```
]]
---
layout: false
class: split-20
.row.bg-main1[.content.vmiddle.center[
.white[.font5[Importing Data - SPSS]]
]]
.row[.content[
```{r import-spss-1}
library(haven) # for reading SPSS, SAS, STATA files
survey_data <- read_sav("data/sample_spss_data.sav")
head(survey_data)
```
]]
---
layout: false
class: split-20
.row.bg-main1[.content.vmiddle.center[
.white[.font5[Importing Data - SPSS]]
]]
.row[.content[
```{r import-spss-2}
# convert spss label codes into labels
labelled_survey_data <- as_factor(survey_data)
head(labelled_survey_data)
```
]]
---
layout: false
class: split-20
.row.bg-main1[.content.vmiddle.center[
.white[.font5[Importing Data - SPSS]]
]]
.row[.content[
```{r import-spss-3}
labelled_survey_data %>%
count(fQ1bGender, dAge) %>%
spread(fQ1bGender, n)
```
]]
---
layout: false
class: split-20
.row.bg-main1[.content.vmiddle.center[
.white[.font5[Importing Data - Databases]]
]]
.row[.content[
```{r import-databases-1}
library(DBI) # for connecting to databases
con <- dbConnect(
drv = RMySQL::MySQL(),
dbname = "shinydemo",
host = "shiny-demo.csa7qlmguqrf.us-east-1.rds.amazonaws.com",
username = "guest",
password = "guest"
)
dbListTables(con)
```
]]
---
layout: false
class: split-20
.row.bg-main1[.content.vmiddle.center[
.white[.font5[Importing Data - Databases]]
]]
.row[.content[
```{r import-databases-2}
cities <- tbl(con, "City")
cities
```
]]
---
layout: false
class: split-20
.row.bg-main1[.content.vmiddle.center[
.white[.font5[Importing Data - Web APIs]]
]]
.row[.content[
```{r web-apis}
library(jsonlite) #JSON parser and generator
github_issues <- function(user, repo){
url <- paste0("https://api.github.com/repos/", user, "/", repo, "/issues")
return(fromJSON(url))
}
dplyr_github_issues <- github_issues("hadley","dplyr")
head(dplyr_github_issues$title)
```
]]