forked from wush978/MLDMMonday_SlidifyTutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
400 lines (268 loc) · 6.6 KB
/
index.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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
---
title : Introduction of Slidify
subtitle :
author : Wush Wu
job : Taiwan R User Group
framework : io2012 # {io2012, html5slides, shower, dzslides, ...}
highlighter : highlight.js # {highlight.js, prettify, highlight}
hitheme : tomorrow #
widgets : [quiz, bootstrap, shiny, interactive] # {mathjax, quiz, bootstrap}
mode : selfcontained # {standalone, draft}
ext_widgets: {rCharts: [libraries/nvd3]}
github:
user: wush978
repo: MLDMMonday_SlidifyTutorial
license: by-nc-sa
logo: Taiwan-R-logo.png
--- .segue .nobackground .dark
```{r setup, include=FALSE,echo = F, message = F, warning = F, tidy = F}
# make this an external chunk that can be included in any file
library(xtable)
library(reshape2)
library(knitr)
options(width = 100,digits=3)
opts_chunk$set(message = FALSE, eval=TRUE,fig.align = "center", warning = FALSE, comment = NA, dpi = 100, fig.width=6, fig.height=4.5,tidy = FALSE, cache = FALSE, echo=FALSE)
options(xtable.type = 'html')
knit_hooks$set(inline = function(x) {
if(is.numeric(x)) {
round(x, getOption('digits'))
} else {
paste(as.character(x), collapse = ', ')
}
})
knit_hooks$set(plot = knitr:::hook_plot_html)
```
## Slidify
### Stunning Presentations from Markdown
--- &twocol
## Slidify
*** =left
- 由Ramnath Vaidyanathan所開發
- 採用Markdown語法
- 具有驚人的彈性,可以透過HTML、Java Script和CSS來做調整
*** =right
<img src="assets/img/slidify_logo.png" class="fit100" />
---
## 安裝
透過`devtools`從github安裝`Slidify`
```{r, eval=FALSE}
library(devtools)
install_github('slidify', 'ramnathv')
```
### `devtools`的安裝
- 如果是Windows作業系統,請先安裝[`Rtools`](http://cran.r-project.org/bin/windows/Rtools/)
- 可參考社群教學影片:[安裝Rtools(Windows) ](http://www.youtube.com/watch?v=enPPMHr5SrM&list=PLM7HGQkDNOHtqUTowalvnOwZCx4mWDmte&feature=share&index=4)
---
## 開始人生第一個Slidify投影片
```{r, eval=FALSE}
library(slidify)
author("資料夾名稱")
```
- 會建立一個資料夾以及預設的`index.Rmd`
- 會建立一個git repository
TODO: 影片 or Demo
---
## 第一眼:
---
title : Title
substitle: Subtitle
author : Author
job : Job
widgets : []
mode : selfcontained
---
## Slide 1
Use an empty line followed by three dashes to separate slides!
--- .class #id
## Slide 2
--- #cover bg:url(assets/img/Cover.png)
## 封面
---
## 投影片
---
## Slide 1
Use an empty line followed by three dashes to separate slides!
--- .class #id
## Slide 2
- `---`表示分頁
- `##`表示投影片標題
- 採用Markdown語法,細節請參考[Markdown語法說明](http://markdown.tw/),可在[Dillinger](http://dillinger.io)試玩。
---
## 與R 的整合
---
\```{r}
a <- 1
a + 1
f(a)
\```
---
```{r, echo=FALSE}
a <- 1
a + 1
f(a)
```
- 採用類似[knitr](http://yihui.name/knitr/)的方法
- 可參考[20121203 MLDM Monday [markdown + knitr]](http://www.youtube.com/watch?v=OHKZLeKlUsM&feature=share)
--- &twocol
## 投影片的客製化
<img src="assets/img/customization.png" />
*** =left
### Layout
- 利用如`--- &twocol`來指定要用的layout
- 可以把layout放置於`assets/layout`底下,如:`assets/layouts/twocol.html`
- 產生投影片的套件是[whisker](http://cran.r-project.org/web/packages/whisker/index.html)
*** =right
<img src="assets/img/twocol.png" />
--- &twocol
## 自行定義twocolwithfoot
*** =left
<img src="assets/img/twocolwithfoot.png" />
*** =right
<img src="assets/img/source.png" />
--- &twocolwithfoot
## 這是標題
```
這段文字在上方
```
*** =left
```
這段文字在左側
```
*** =right
```
這段文字在右側
```
*** =foot
<hr/>
```
這段文字在下方
```
*** =pnotes
這段文字在註解
---
## 發佈
```{r, eval=FALSE}
publish_dropbox
publish_gist
publish_github
publish_rpubs
```
--- &twocol
## 模板候選
*** =left
### CSS
```
slide:not(.segue) h2,
slide:not(.segue) h3,
slides slide.large article p,
article p, article li, article li.build {
font-family: 'Source Sans Pro',
'Helvetica', 'Crimson Text', 'Garamond',
'Palatino', sans-serif;
}
slides slide.large article p {
font-size: 52px;
font-style: normal;
font-weight: bold;
line-height: 1.2em;
}
```
*** =right
--- &vcenter .large
測試文字
--- &vcenter .large
--- &vcenter .large
測試文字
--- &twocol
## 互動式測驗
*** =left
在YAML中的widget上新增`quiz`和`bootstrap`
```
widgets : [quiz, bootstrap]
```
*** =right
--- &radio
## Question 1
What is 1 + 1?
1. 1
2. _2_
3. 3
4. 4
*** .hint
This is a hint
*** .explanation
This is an explanation
--- &radio
## Question 1
What is 1 + 1?
1. 1
2. _2_
3. 3
4. 4
*** .hint
This is a hint
*** .explanation
This is an explanation
--- &twocol
## 互動式圖片
*** =left
在YAML中如下設定:
```
ext_widgets: {rCharts: [libraries/nvd3]}
```
*** =right
## Example 1 Facetted Scatterplot
names(iris) = gsub("\\.", "", names(iris))
rPlot(SepalLength ~ SepalWidth | Species, data = iris, color = 'Species', type = 'point')
---
## Example 1 Facetted Scatterplot
```{r, results='asis'}
library(rCharts)
names(iris) = gsub("\\.", "", names(iris))
rPlot(SepalLength ~ SepalWidth | Species, data = iris, color = 'Species', type = 'point')
```
---
## Example 2 Facetted Barplot
```{r, results='asis'}
hair_eye = as.data.frame(HairEyeColor)
rPlot(Freq ~ Hair | Eye, color = 'Eye', data = hair_eye, type = 'bar')
```
--- &twocol
## 內嵌R Console
*** =left
YAML:
```
widgets : [bootstrap, quiz, shiny, interactive]
```
不再使用`slidify`,改用`runDeck`啟動投影片
*** =right
--- &interactive
## Interactive Console
\```{r opts.label = 'interactive', results = 'asis'}
require(googleVis)
M1 <- gvisMotionChart(Fruits,
idvar = 'Fruit', timevar = 'Year')
print(M1, tag = 'chart')
```
--- &interactive
## Interactive Console
```{r opts.label = 'interactive', results = 'asis'}
require(googleVis)
M1 <- gvisMotionChart(Fruits,
idvar = 'Fruit', timevar = 'Year')
print(M1, tag = 'chart')
```
--- &interactive
```{r opts.label = 'shiny'}
slidifyUI(
sidebarPanel(
selectInput('sex', 'Choose Sex', c('Male', 'Female')),
selectInput('type', 'Choose Type',
c('multiBarChart', 'multiBarHorizontalChart')
)
),
mainPanel(
tags$div(id = 'nvd3plot', class='shiny-html-output nvd3 rChart')
)
)
```