Slidify is an R package to create elegant, interactive html5 presentations from R Markdown.
Questions tagged [slidify]
118 questions
0
votes
1 answer
Unable to install [R] package slidify on Windows
I downloaded ramnathv-slidify-4260813.zip and copied it into C:/Users//Documents/R/win-library/3.5
On Windows 7 64bit machine
In Rstudio with Admin privileges I ran this:
install.packages("~/R/win-library/3.5/ramnathv-slidify-4260813.zip", repos =…

analytics-josh
- 135
- 2
- 12
0
votes
1 answer
How to break a line in Slidify
I am using Slidify to create slides. My title is too long, so I want to break line. However, I tried the pipe symbol, it didn't break line from "and". It showed /The Relationship between Motivation/and Learning Strategies on the 2012 PISA Math in…

user3685047
- 27
- 6
0
votes
1 answer
slidify embeds plotly plots as images rather than as normal interactive plots
I am trying to include some plots built using plotly in slides generated from .Rmd using slidify.
The problem is that the plots are rendered as images instead of being interactive.
On the same .Rmd file if instead of using slidify to produce html…
user778806
0
votes
1 answer
variable is lost when calling it through slidify
After many slides working well, I am on a new one trying to execute a simple code:
```{r}
summary(name_variable)
```
when running in the slide it gives the rigth answer. Nevertheless when executing Knit it returns the message "object…
0
votes
1 answer
Slidify tables not displaying correctly when using revealjs framework
I'm trying to create a table (like the one below) using RMarkdown inside of the Slidify package.
Attribute | Value
------------ | -------
Arribute1 | Value1
Attribute2 | Value2
Attribute3 | Value3
I had originally written the presentation…

Jessica H.
- 1
- 1
0
votes
1 answer
Suppressing output in slidify if neither "invisible()", "echo=F", "warning=F" or "error=F" work?
I want to suppress the message "Setting default kernel parameters", but none of the options discussed here are doing the job that is "echo=F", "warning=F", "message=F" or the use of "invisible".
What else can I do? The info-string really disturbs…

CodingButStillAlive
- 733
- 2
- 8
- 22
0
votes
1 answer
slidify: prevent creation of git repo for presentation
Slidify will auto-create a git repo for my presentation -- this happens since I configured git on RStudio.
Sometimes, this is useful, but mostly, I have my presentations as folders in my existing repos. This messes up the actual repo.
Is there a…

Christoph Safferling
- 1,116
- 11
- 10
0
votes
0 answers
pander.lm tables within slidify
I'm having difficulty in getting pander tables to render in a slidify document (specifically with a call to pander.lm).
For example, the below works
```{r panderWorks, results = "asis"}
id <- rep(1:3, each = 2)
condition <- rep(c("A", "B"), 3)
score…

Daniel Anderson
- 2,394
- 13
- 26
0
votes
2 answers
googleVis Chart not Displaying in Slidify
I'm trying to get started with slidify and have been trying to reproduce some of the examples shown around the internet. I am not able to get googleVis charts to display inside slidify. I can print the googleVis chart to file and open it outside of…

Jake
- 510
- 11
- 19
0
votes
0 answers
Verbatim HTML code chunk in Slidify
Using R, Rmarkdown and slidify to create a presentation about html templates in shiny. Obviously this requires me to show examples of html templates. I'm trying to put the following verbatim html chunk into a markdown code chunk in one of my…

divide_by_zero
- 997
- 1
- 8
- 20
0
votes
1 answer
Generating Slidify slides with knit to HTML on RStudio Version 0.99.467
After writing up a Slidify content when pressing knit HTML button on RStudio IDE version 0.99.467 it only renders HTML file and NOT the slides? I have used default YAML and a YAML used by Ramnath from his github repository examples with the same…

Antex
- 1,364
- 4
- 18
- 35
0
votes
1 answer
Slidify: How to call image as background from assets/img folder?
I want to call an image from the assets/img folder, becuase I want to share the deck in a ZIP and therefore they won't have the same path as I do for my files.
I've modify the "slidify.css" file, as usual, but with a path to the assets/img…

Omar Gonzales
- 3,806
- 10
- 56
- 120
0
votes
1 answer
Slidify doesn't render rCharts in browser after publishing on GitHub or RPubs
I created a slidify with rCharts and works fine on the browser of my computer, but when I open the folder on another computer, the rCharts doesn't appear. Code:
setwd("/home/sergio/Copy/PhDgrive/Conferences/IEA2015/IEA2015/")
require(devtools)
pkgs…

Sergio
- 714
- 1
- 8
- 24
0
votes
1 answer
Using global assets for multiple decks in Slidify
I have a project with the following structure
- master
- deck1
- index.Rmd
- assets
- libraries
- deck2
- index.Rmd
- assets
- libraries
I have applied some css modifications in assets/css/…

babylinguist
- 392
- 1
- 13
0
votes
1 answer
Create slide template for slidify
I'm trying to create a template for my slides. I'm using reveal.js as my framework. I'm using the slidify package in Rstudio.
I have saved the following text to as an html file in assets/layouts:
---
layout: slide
---
{{{ slide.content…

jalapic
- 13,792
- 8
- 57
- 87