-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
44 lines (31 loc) · 857 Bytes
/
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
---
title : Slidify Demo
subtitle : HTML5 slides from R Markdown
author : Rick Coates
job : Kindred FPoC
framework : io2012 # {io2012, html5slides, shower, dzslides, ...}
highlighter : highlight.js # {highlight.js, prettify, highlight}
hitheme : tomorrow #
widgets : [] # {mathjax, quiz, bootstrap}
mode : selfcontained # {standalone, draft}
github :
user: rickcoates
repo: slidifyDemo
---
## Read-And-Delete
1. Edit YAML front matter
2. Write using R Markdown
3. Use an empty line followed by three dashes to separate slides!
--- .class #id
## Slide 1
> 1. Point 1
> 2. Point 2
> 3. Point 3
---
## Motion Chart
```{r echo = F, results = 'asis', message = F}
require(googleVis)
M1 = gvisMotionChart(Fruits, idvar = 'Fruit', timevar = "Year"
)
print(M1, tag='chart')
```