Slidify: Things are coming together fast
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
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.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.