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

Prevent navigation bar from overlapping content in flexdashboard R

I'm building a flexdashboard in R with multiple pages (tabs). The navigation bar becomes two or more rows and overlaps/covers the content of the main panel when I reduce the width of the page. How do I fix the navigation bar so that it remains one…
Sujin
  • 103
  • 1
  • 6
9
votes
2 answers

how to insert valuebox inside navbarpage layout?

I'm trying to add valueBox to shiny app created in navbarpage layout, I know that valve boxes are part of the shinydashboard package but this app made me wonder how should I achieve this below is an image of the app, here is the live app here is…
John
  • 183
  • 1
  • 8
9
votes
0 answers

Oauth2.0 flow for a flexdashboard shiny app

We’re trying to implement OAuth2.0 into a Shiny app using Flex Dashboard. The OAuth flow is currently executing, I can login and see the code and state variables in the URL. When the OAuth server redirects to my app, it gets stuck on the grey…
dbm
  • 133
  • 1
  • 1
  • 8
9
votes
3 answers

Two sidebars in flexdashboard layout

I would appreciate some css help here. What I am trying to achieve is the following layout. I can easily get to the layout without the right sidebar: --- title: "Title" output: flexdashboard::flex_dashboard: vertical_layout: fill …
deann
  • 756
  • 9
  • 24
9
votes
2 answers

Flexdashboard multiple attributes page

I'm learning flexdashboard and trying some different lay-outs for a future app. But I'm having trouble assigning different attributes for the same page. I want the second page to have a row lay-out, be listed in nav-bar A and have an icon in front…
Tingolfin
  • 825
  • 8
  • 28
9
votes
1 answer

R- knitr:kable - How to display table without column names?

Currently, I have this data frame (PS): My code to display this table is: kable(PS) %>% kable_styling(bootstrap_options = c("striped", "hover", "condensed", "responsive")) I want to display the table without column names like this: Problem is 1)…
Urvah Shabbir
  • 945
  • 2
  • 15
  • 46
9
votes
1 answer

Shiny: Gauge from flexdashboard in Shiny App

Is it possible to embed the gauge from flexdashboard (picture below) in Shiny App (shinydashboard or shiny)? The example code within a Shiny flexdashboard from the flexdashboard website: ```{r} renderGauge({ rate <-…
Mal_a
  • 3,670
  • 1
  • 27
  • 60
9
votes
2 answers

Adding scroll to sidebar in flexdashboard

I am designing a UI using Flexdashboard and some of the textinput boxes are going beyond the regular browser window, I have added a line vertical_layout: scroll in my code but I am guessing that is not enough ? So my question is how do I enable…
8
votes
1 answer

Is there a way to publish a R flexdashboard html page in SharePoint?; Remove closing

I created a html output from r with rmarkdown::render(“file.rmd”, “output.html”). The output is a multi-page flexdashboard html output with several plotly graphs. There is no shiny involved thus a static HTML file. when I open this file in chrome…
EpiDennis
  • 81
  • 2
8
votes
2 answers

R shiny gauge chart

Could someone help me draw a gauge chart in R Shiny?I don`t need it to be dynamic, but to have a KPI that I assign with a value and to show that when I run the app.It should be red from 0 to 0.3, yellow from 0.3 to 0.5 and green from 0.5 to 1.
Andreea
  • 149
  • 1
  • 3
  • 10
8
votes
2 answers

R flexdashboard remove title bar

I am working on a project using rMarkdown and the flexdashboard package from rStudio. Everything is coming together nicely. But I would like to remove the blue title bar you see at the top of the image here. We are dropping this html page into a…
sconfluentus
  • 4,693
  • 1
  • 21
  • 40
8
votes
3 answers

Change font size for individual text section in flexdashboard

I'm using flexdashboard to create reports and I want to change a font size only for one part of the page. It feels to me that I can do it by adding CSS class, but I can't find how can I specify class name in R markdown code. Any ideas?
kismsu
  • 1,049
  • 7
  • 22
8
votes
3 answers

How to render flexdashboard from the command line?

I have a flexdashboard Rmd that renders correctly when i press the Knit button in RStudio. I would like to render it from the command line but the naviagation bar does change when I use the command render("myfile.rmd", flex_dashboard()) The heading…
rjss
  • 935
  • 10
  • 23
7
votes
0 answers

Modifying shinyauthr for a flexdashboard

I have built an interactive flexdashboard that uses a runtime shiny and I would like to create a user authentification login module/page. I stumbled across Paul Campbell's shinyauthr package which seems to do this but for a shiny dashboard, I would…
7
votes
2 answers

Bootswatch theme in Shiny Flexdashboard R

I downloaded a css from bootswatch (https://bootswatch.com) and I saved the file (bootstrap.css) where my flexdashboard file is. So I tried to load the css with this code: --- title: "Untitled" output: flexdashboard::flex_dashboard: …
Alexis
  • 2,104
  • 2
  • 19
  • 40
1
2
3
55 56