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

How to add footer in page generated using Shiny Flexdashboard

I have the following RMarkdown FlexDashboard document: --- title: "Some title" runtime: shiny output: flexdashboard::flex_dashboard: orientation: columns vertical_layout: fill --- ```{r setup,…
neversaint
  • 60,904
  • 137
  • 310
  • 477
5
votes
2 answers

How to display multiple plots on an R flexdashboard page if using storyboard layout

I'm building an R FlexDashboard in storyboard format. I'd like to display multiple plots on a few of the storyboard pages, including a series of linked plots using crosstalk. However, when I try to display multiple plots on a page or use the…
user3786999
  • 1,037
  • 3
  • 13
  • 24
5
votes
0 answers

Complex Flex Dashboard Layout

I'm trying to make a flex dashboard with a somewhat complicated layout (at least more complicated than the examples on the website!). Here is my attempted layout and a picture of roughly what I"m going for: Inputs{.sidebar} [input code] Column…
Josh
  • 1,237
  • 4
  • 15
  • 22
5
votes
2 answers

Flexdashboard - Modularise rCharts code

I'm trying to break some code for a dashboard down into modules. I'm having trouble with this rCharts code. I can run it as an app, but ideally I want to split it into UI and server functions so I can keep them in a package. The code below shows…
Akhil Nair
  • 3,144
  • 1
  • 17
  • 32
4
votes
1 answer

flexdashboard second plot is much smaller than first plot

When I plot several plots in an .Rmd file with flexdashboard, the second plot shows up much smaller than the first. Here is a screenshot from the reprex below. Why the second plot is much smaller than the first and how can I make them the same…
jmuhlenkamp
  • 2,102
  • 1
  • 14
  • 37
4
votes
1 answer

not able to get forecasting plot in tabset panel in flexdashboard using actionButton and eventReactive methods of shiny

I have a dataframe (in R) containing the data which looks like this: [https://github.com/imlemarque/Data/raw/main/Data.csv][1] I am creating a flexdashboard in R and the code is as follows: --- title: "Forecast" output: …
LeMarque
  • 733
  • 5
  • 21
4
votes
1 answer

Flexdashboard and DT: datatable not working as expected

I just updated R and various packages and now the datatables are not showing up as expected. Earlier, I would see the pagination, number of total rows, and would be able to scroll horizontally as well as vertically. After the recent update, the…
Komal Rathi
  • 4,164
  • 13
  • 60
  • 98
4
votes
1 answer

Can you top align a plot or image in R Markdown's flexdashboard?

--- title: "How do you top align this figure below?" output: flexdashboard::flex_dashboard --- ```{r c1, fig.width=9} plot(mtcars) ``` The R flexdashboard code above generates a plot that is centered vertically when I maximize my dashboard…
Display name
  • 4,153
  • 5
  • 27
  • 75
4
votes
0 answers

I can't get vertical scrolling on my flexdashboard

I'm trying to set up a flexdashboard to convey some information and am having some problems with scrolling. Putting vertical_layout: scroll in the header does no good, it leads to the flexdashboard cutting off halfway down the page. When I set…
sj90
  • 53
  • 3
4
votes
0 answers

Step by step through R Flexdashboard and Google Analytics

I want to make data from google analytics available to users through Flexdashboard deployed on AWS. It will help to mix with other data sources and create a funnel (from web visits to desired actions). --- title: "Dashboard" output: …
Manu
  • 1,070
  • 10
  • 27
4
votes
1 answer

R flexdashboard tabset styles

I am trying to modify some of the styles with CSS for a tabset in flexdashboard. Here's an example of an RMarkdown file. --- title: "Title" output: …
fawda123
  • 479
  • 3
  • 12
4
votes
1 answer

In flexdashboard, can a valueBox be clicked to update a text box like an actionButton?

I am trying to utilize valueBox in flexdashboard to display a headline figure. However, I also want the valueBox to act like an actionButton, in that clicking the valueBox should trigger an action elsewhere in the dashboard. In checking the…
Naj S
  • 325
  • 2
  • 4
  • 11
4
votes
1 answer

How do I change the height of a tabset on R Flexdashboard to be responsive?

I have a row tabset and each tab contains a chart and a data table. However my data table keeps getting cut off. Is there some way to make the tabset height responsive so that my data table doesn't get cut off all the time? See chart and data table…
4
votes
1 answer

How to add background colours to boxes on Rmarkdown flexdashboard

I would like to colour each box on my flexdashboard a different colour. For example, I would like the background inside box 1 to be blue, the background inside box 2 to be green and so on. Would anyone be able to advise me on whether this is…
Isobel
  • 41
  • 1
  • 3
4
votes
0 answers

Change line inside shiny::renderText() used in flexdashboard

I have the basic flexdashboard below. What I want is to change line after "hello" in order to place "world" below it,inside the renderText(). I have found that I can use htmlOutput() and verbatimTextOutput() but these are not used in…
firmo23
  • 7,490
  • 2
  • 38
  • 114