Questions tagged [flexdashboard]

An Easy interactive dashboards for R.

Flexdashboard is a package developed by the RStudio team that enables individuals to easily create flexible, attractive, interactive dashboards with R. Authoring and customization of dashboards is done using R Markdown and can optionally include Shiny components for additional interactivity.

Reference and documentation: http://rmarkdown.rstudio.com/flexdashboard/

832 questions
76
votes
4 answers

R + Shiny which hammer? straight Shiny, flexdashboard or shinydashboard?

At the risk of getting hit with a mods "too broad a question" hammer, I want to ask given the plethora of interactive R Shiny tools and packages emerging, when do you use which one? Shiny - to me only downside your project needs to run from shiny…
micstr
  • 5,080
  • 8
  • 48
  • 76
34
votes
4 answers

How to combine row and column layout in flexdashboard?

For a new project I want to try the new flexdasboard package. I am thinking of a lay out in which the column and row orientation is somehow combined. The layout I am thinking of is something like this: If I change this code: --- title: "Focal…
rdatasculptor
  • 8,112
  • 14
  • 56
  • 81
17
votes
1 answer

Conditional reactive logic shiny based flexdashboard

I am trying to contiditonally do either one type of render (renderPlot) or another (renderText) based on some input. Here's what I tried: --- title: "Citation Extraction" output: flexdashboard::flex_dashboard: vertical_layout: scroll …
Tyler Rinker
  • 108,132
  • 65
  • 322
  • 519
15
votes
2 answers

Scaling flexdashboard gauge in R

I'm trying to use flexdashboard::gauge, but it is always the same size(doesn't scale) and I don't know how to change it's size. I know there is a way to do this for normal plots using renderPlot and setting for example height. Is there a way to do…
user38129
  • 161
  • 1
  • 4
15
votes
1 answer

flexdashboard - change title bar color

I want to change the title bar color of a flexdashboard. I've found an example for removing it - SE here, but given that I don't know any CSS/JQuery, I had to ask. I want to change the bar color to red, and the text to black. Anyone? Edit…
Prometheus
  • 1,977
  • 3
  • 30
  • 57
15
votes
1 answer

R vertical scroll not working

I am trying to get a vertical scroll but this isn't working, can anybody explain why? I would also like to default to show 20 rows at once. Thanks title: "Untitled" output: flexdashboard::flex_dashboard: orientation: columns …
Anon.user111
  • 468
  • 1
  • 5
  • 16
14
votes
4 answers

How can I create a tabset in this flexdashboard layout

Pretty sure i'm missing something obvious here but.. How would I reconfigure the code so that chart 3 is a tabset? TIA
pssguy
  • 3,455
  • 7
  • 38
  • 68
12
votes
1 answer

How to fix download button sidebar issue in flexdashboard

I have added a download button to my flexdashboard in the sidebar panel, but it appears in the main panel when I knit the .RMD. Can you please guide me as to how I can fix it? Here's a minimal example of what I'm trying to accomplish --- title:…
elvikingo
  • 947
  • 1
  • 11
  • 20
11
votes
1 answer

How to create a dropdown menu in flexdashboard?

I have the following data: library(leaflet) library(leaflet.extras) library(flexdashboard) library(htmltools) library(htmlwidgets) library(plotly) id = 1:1000 long = 2.2945 + rnorm( 1000, 0.1085246 , 0.1) lat = 48.8584 + rnorm( 1000, 0.009036273 ,…
stats_noob
  • 5,401
  • 4
  • 27
  • 83
11
votes
2 answers

Combine in flexdashboard with multiple pages different types of vertical_layout

I created a flexdashboard document that has multiple pages. I would like that on the first page the vetical_layout: fill but on the second page I would like that vertical_layout: scroll. My document starts like this: --- title: "DASHBOARD" output: …
mrina713
  • 429
  • 3
  • 10
11
votes
1 answer

Dynamically show/hide input with shinyjs and flexdashbord

Trying to update Sidebar in flexdashboard when click on a tab. Can't get it to work. --- title: "Test Sidebar" output: flexdashboard::flex_dashboard: orientation: rows runtime: shiny --- ```{r…
iboboboru
  • 1,112
  • 2
  • 10
  • 21
10
votes
3 answers

Can you change the R default table length when outputting with the DT package?

In R DT you can define the table control elements with code such as: # only display the table, and nothing else library(DT) datatable(mtcars, options = list(dom = 't')) The t above is a DOM. The DOM element l controls the length changing input…
Display name
  • 4,153
  • 5
  • 27
  • 75
10
votes
1 answer

How to make bullets incrementally appear in flexdashboard storyboard for RMarkdown?

I'd like to make the bullet items on a flexdashboard/storyboard appear incrementally when the right arrow is clicked (presentation-style). How could this be achieved? I'm guessing a little Javascript but I don't know where to start. Ioslides export…
haff
  • 918
  • 2
  • 9
  • 20
10
votes
3 answers

How to add logo in flexdashboard?

I am trying to add company logo in flexdashboard. As mentioned in official page , we need to give a path of image and i am doing the same as given below , but not able to bring logo in dashboard. Want to know , how to bring logo in flexdashboard and…
Gaurav Chaudhari
  • 177
  • 1
  • 2
  • 10
10
votes
2 answers

Filter two tables with crosstalk

I am creating a Flexdashboard in R. I want the dashboard to contains both a table and a series of visualizations, that would be filtered through inputs. As I need to deliver a dashboard locally (without a server running in the background), I am…
Prometheus
  • 1,977
  • 3
  • 30
  • 57
1
2 3
55 56