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
3
votes
2 answers

How to adjust table height in flexdashboard?

I have a flexdasboard with a page that contains 1 plot then below it a table. The table currently is compressed, so whilst it shows 25 rows it has them all within a scroll option so you can only view 2 of those rows at a time. How can I change…
LN3
  • 67
  • 1
  • 2
  • 10
3
votes
1 answer

How to combine datatable and HTML in renderUI when developing a FlexdashBoard app.?

I am sure that no one helped me, tk. I just asked the question not very correctly earlier. I am trying to create a FlexDashcoard application. To understand how the program works, you need the sample data files that I have prepared. I apologize in…
user7919275
3
votes
1 answer

Is it possible to print a R flexdashboard to a PDF?

Furthermore, can you loop the print out based on a specific variable? Say for example I have one view for a vendor. How can I print out a PDF view iteratively based on this vendor? Basically, it would be a unique view for each vendor
Jaskeil
  • 1,044
  • 12
  • 33
3
votes
0 answers

Add tabber to rmarkdown navbar

I created a drop-down menu as in this repex (Prevent navigation bar from overlapping content in flexdashboard R): --- title: "Untitled" output: flexdashboard::flex_dashboard: orientation: columns vertical_layout: fill --- ```{r setup,…
Anna
  • 69
  • 5
3
votes
0 answers

Plotly gauge graph and crosstalk filtering for flexdashboard

I am trying the create a plotly gauge graph for a flexdashboard which should change value depending on the chosen filter in crosstalk::filter_select(). I have tried and tried but cannot get the filter to work. This is an example with mtcars of what…
Gakku
  • 337
  • 2
  • 8
3
votes
2 answers

How to change a color of an icon in Valuebox (flexdashboard)

I'm creating a KPIs in Rmd Flexdashboard (not Shiny) and would like to change a color of an icon in Valuebox based on a rule: if value is higher than 0 then green arrow up if value is lower than 0 red arrow down I've figured out the rule, but I…
awoj
  • 133
  • 1
  • 10
3
votes
1 answer

Link R markdown title in flexdashboard to a page in the app

I have an R markdown document that uses flexdashboard and shiny. The document/app has several pages and I would like to be able to link the navbar title defined in the YAML header to the first page so that a user gets the feeling of being redirected…
damico
  • 195
  • 1
  • 7
3
votes
1 answer

R DT clips table selection buttons (when text is added to body)

Actual Behavior - Clipping I'm using the R DT package with flexdashboard. When I add text to the body of a DT table, the bottom of the dashboard is clipped (to varying extents). See below. --- title: "With text in the body the bottom is…
Display name
  • 4,153
  • 5
  • 27
  • 75
3
votes
1 answer

Flexdashboard: set anchors for ### headings (level3)

In flexdashbard, we can create different headings: Heading level 1: they are pages Heading level 2: we specify Row or Column Heading level 3: tabs Now for anchors, it seems that we can only set them for heading level 1. As we can see it in this…
John Smith
  • 1,604
  • 4
  • 18
  • 45
3
votes
0 answers

How to run shiny app inside the flexdashboard

I'm trying to incorporate shiny interactive sheet to my already existing flexdashboard. Here is the data structure created using dput() function structure(list(words1 = structure(c(1L, 10L, 19L, 20L, 7L, 8L, 3L, 15L, 2L, 9L, 11L, 14L, 12L, 4L, 5L,…
tantal148
  • 57
  • 5
3
votes
0 answers

Multi-language support on R flexdashboard

I would like to add language support into my dashboard relied on R flexdashboard. Currently figures, axes, titles, etc have only single language but I would like to extend the entire content for multiple languages. Basically the user should be able…
ozturkib
  • 1,493
  • 16
  • 28
3
votes
1 answer

r flex dashboard layout with tabs and panels

I am interested in a flexboard layout with two tabs and within each tab the layout be split into three tiles or panels. This will give me a layout with three panels which is good. --- title: "Panels" output: flexdashboard::flex_dashboard: …
Science11
  • 788
  • 1
  • 8
  • 24
3
votes
1 answer

Add authentification on a Flexdashboard Rmarkdown

We've developped an interactive app with Flexdashboard hosted on our own Linux server. Is there a way to quickly implement an authentification service to it ? We've had a look on Polished, but requests a server.r and ui.r and a global.r…
user3355655
  • 463
  • 3
  • 15
3
votes
1 answer

Make DT (DataTable) responsive using flexdashboard with Shiny in R

The following example (file ex.Rmd) results in a horizontal scrollbar when the window width is small. Any way to make the table fully responsive, i.e. remove the horizontal scroll and add the columns under the collapsed information? --- …
Relund
  • 611
  • 3
  • 14
3
votes
2 answers

Show tooltip when hovering on flexdashboard plot in JS or hover action

I have the following sample flexdashboard: --- title: "Hover" output: flexdashboard::flex_dashboard: orientation: columns vertical_layout: fill runtime: shiny --- ```{r setup,…
Manu
  • 1,070
  • 10
  • 27