Slidify is an R package to create elegant, interactive html5 presentations from R Markdown.
Questions tagged [slidify]
118 questions
1
vote
1 answer
Sharing axes and legends between subplots in plotly in R (faceting in ggplot2 and using ggplotly doesn't work)
I have the following data:
df <- data.frame(numbers = rep(1:3, 30),
letter = sample(c("A", "B", "C", "D"), 90, replace = TRUE),
status = sample(c("good", "bad", "ugly"), 90, replace = TRUE))
I am trying to…

maleta
- 383
- 1
- 2
- 10
1
vote
2 answers
Interactive faceted rCharts bar graph filled with a third variable (replicate ggplot2 aes(x=var1, fill=var2) + geom_bar + facet_wrap)
I want to make an interactive bar chart of one variable where the bars are filled in by a second variable and faceted by a third variable. I would like to embed it in a slidify deck. I am guessing rCharts is the right tool for this (or would another…

maleta
- 383
- 1
- 2
- 10
1
vote
1 answer
How can I reduce the size of R output to fit into a single slidify slide?
I've started using slidify to create a presentation for a course. However, when I print the output from a GLM it doesn't all fit on the page, it gets cut off at the bottom. How can I modify slidify to fix this? Here's the problem code:
icecream <-…

adkane
- 1,429
- 14
- 29
1
vote
0 answers
Building code chunks in rmarkdown/Slidify with io2012 framework
I'm building a presentation using Slidify and the io2012 framework and I can't figure out how to set up the slide so that R code chunks only execute when the slide is advanced(via click or the arrow key). I am preparing a workshop and would like…

MJA
- 13
- 5
1
vote
1 answer
gvisMotionChart returns blank plot in R slidify
I'm trying to produce a google motion chart in R slidify. I looked up a lot of examples online and it seems some people have successfully embedded google motion chart in an R slidify slide. Then when I tried my own using similar code, it gives me…

Lambo
- 857
- 3
- 14
- 39
1
vote
0 answers
Errors in publishing rPresentation slidedeck
Have published in rPubs the following codes of rPresentation.
Some of the charts are not displaying properly. Just wondering what I am missing ?Guidance in this regard will be helpful.
Thanks
Link of presentation :…

Harry
- 198
- 12
1
vote
0 answers
Errors while running rCharts and gvisMotinChart
I have tried to build a presentation with slidify package in R. I have coded the presentation and called slidify function on the following .Rmd file. I have used the diamonds dataset in GGally.
When I published the following , n1$show("iframesrc",…

Harry
- 198
- 12
1
vote
0 answers
Knitr and slidify interactions in RStudio
I have recently loaded slidify into my RStudio environment and I get some strange results when trying to render R Markdown into HTML using the Knitr button.
When I first load RStudio and the Rmd (which contains no slidify markup, just normal…

Chris Shaw
- 423
- 3
- 7
1
vote
0 answers
Opening slidify presentation in RStudio on specific page
Is there any way to control what page of a slidify presentation the RStudio previewer will open up on? I'd like to be able to preview the page I'm working on, as opposed to the second page of the presentation, where it keeps opening up.…

RobertMyles
- 2,673
- 3
- 30
- 45
1
vote
1 answer
How to deploy from a subdirectory on Github
I am a newbie as far as Git is concerned, so pardon the ignorance. I am using R to make presentations using slidify. I have successfully pushed my project to my Github repository from RStudio https://github.com/dhirajkhanna/Training. However, I get…

Dhiraj
- 1,650
- 1
- 18
- 44
1
vote
1 answer
Problems installing Slidify in RStudio
I am new to R-programming and I am trying to install Slidify and I am currently having a problem. I am running on the below version of RStudio:
R version 3.2.3 (2015-12-10)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows >= 8 x64…

user3056152
- 33
- 6
1
vote
1 answer
Is it possible to display code line by line with slidify?
For teaching purpose, I would like to make some R code appear line by line for an interactive course with students. I found the interactive console of slidify (ou have to run the video to see what it means at 4'55), but I would like to know if it is…

Stéphanie C
- 809
- 8
- 31
1
vote
0 answers
How to make a mask with a table of contents with slidify?
I am very interested by this userfriendly alternative to Latex for beautiful presentations, but I think that when a presentation is long, it is userful to add a mask to the slides with the full plan and where we are in it (example of a discreet one…

Stéphanie C
- 809
- 8
- 31
1
vote
1 answer
How to remove page number from deckjs framework (using Slidify)
I have created slidify presentation using deckjs framework and used "> *" to make things appear sequentially (like PowerPoint bullet points).
However, I found that it shows the page number differently. When I click next to show the next bullet…

Nanami
- 11
- 1
1
vote
0 answers
Slidify - subscript out of bounds error while converting Rmd file
I created a very simple index.Rmd file. After running solidify("index.Rmd") I got the following:
|.................................................................| 100%
ordinary text without R code
output file: index.md
Copying files to…

Shereen
- 11
- 3