Reputation: 117
Is it possible to use shiny capabilities in a flexdashboard storyboard template? I would like the functionality be:
Upvotes: 1
Views: 906
Reputation: 69
You could try the code below. Flexdashboard storyboards give you what you want. You'll have to specify what heat map and generate that using your data. leaflet()
---
title: storyboard
output:
flexdashboard::flex_dashboard:
storyboard: true
runtime: shiny
---
first chunk:
{r setup, include=FALSE}
library(flexdashboard)
library(shiny)
Heat map {.storyboard}
=======================================================
library(leaflet)
#create map here
#use shiny to create a dynamic map
renderLeaflet({heat_map})
Graphs {.storyboard}
=======================================================
plot(0)
Upvotes: 1