Tools for using R/RStudio as a one-stop shop for research and presentation have been coming out quickly. I think this one has a good shot of being included in future releases of RStudio:
The other day I ran across a new R package called slidify by Ramnath Vaidyanathan. In previous posts I had been messing around with Pandoc and deck.rb to turn knitr
Markdown files into HTML presentations.
Slidify has two key advantages over these approaches:
it can directly convert
.Rnw
files in R into slideshows, i.e. no toggling between R and the Terminal,there are lots of slideshow options (deck.js, dzslides, html5slides, shower, and slidy).
It’s not on CRAN yet, but it worked pretty well for me.
The syntax is simple.
In the Markdown document demarcate new slides with
---
(it has to be three dashes and there can’t be spaces after the dashes).When you want to convert your
.Rnw
into a presentation just type:library(slidify) slidify("presentation.Rnw")
The default style is html5slides. The package isn’t that well documented right now, but to change to a different style just use framework
. For example:
slidify("presentation.Rnw", framework = "deck.js")
I used slidify to put together a slideshow that advertises an intro applied stats course I’m teaching next semester. The slideshow is here. (You can see that I’m trying to attract social science students who are reluctant to take a stats class).
I sloppily removed the default Slidify logo by deleting the images
folder in the html5slides
folder slidify creates.
PS
Oh, also you might notice that I’m using github to host the course. I hope to blog about this in the near future.
Comments
Thanks!
1) Wow!
2) Thanks!
Cheers,
Tal
It's the first time I've taught the intro stats course with such a focus on R, so it would be great to hear any suggests people might have.
Ramnath, your package basically answered my prayers. Thanks for putting it together. I'm really looking forward to seeing the final version.
Vijay
I'll update and post it when slidify cools down.