Skip to content

Instantly share code, notes, and snippets.

@richarddmorey
Last active November 17, 2016 02:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save richarddmorey/6342de8bee6bae057613e667406a9ff7 to your computer and use it in GitHub Desktop.
Save richarddmorey/6342de8bee6bae057613e667406a9ff7 to your computer and use it in GitHub Desktop.
Troubleshooting flexdashboard scrollbars
---
title: "Generated data demo"
output:
flexdashboard::flex_dashboard:
orientation: rows
vertical_layout: scroll
runtime: shiny
---
```{r setup, include=FALSE}
require(flexdashboard)
```
Column {.sidebar}
-----------------------------------------------------------------------
```{r}
selectInput("assignment", label="Assignment",
choices = LETTERS)
```
Row {data-height=70}
------------------------------------
### Data
```{r}
renderUI({
"Data"
})
```
Row
------------------------------------
### Assignment
```{r}
renderUI({
fn = tempfile()
rmarkdown::render( input = "test.Rmd", output_file = fn )
return(withMathJax(includeMarkdown(fn)))
})
```
---
title: "Untitled"
author: "Richard D. Morey"
date: "22 September 2016"
output: md_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
## R Markdown
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
When you click the **Knit** button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:
```{r cars}
summary(cars)
```
## Including Plots
You can also embed plots, for example:
```{r pressure, echo=FALSE}
plot(pressure)
```
Note that the `echo = FALSE` parameter was added to the code chunk to prevent printing of the R code that generated the plot.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment