flexdashboard Questions
2
I have a Quarto qmd file with the below code to display a valueBox.
---
title: "My Dashboard"
output:
flexdashboard::flex_dashboard:
orientation: rows
---
```{r setup, include=FALSE}
...
Manysided asked 15/9, 2022 at 20:32
3
Solved
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 (wi...
Korenblat asked 2/2, 2018 at 11:19
3
Solved
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 D...
Johnson asked 4/11, 2020 at 17:11
1
Solved
I have a the following sample code for flexdashbard in R:
---
title: "My Dashboard"
runtime: shiny
output:
flexdashboard::flex_dashboard:
orientation: rows
vertical_layout: fill
alway...
Jemappes asked 13/1, 2023 at 11:56
2
Solved
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 ...
Decor asked 29/12, 2019 at 8:32
1
Solved
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...
Lavina asked 25/8, 2022 at 17:25
1
Here is how my dashboard template looks. I have a {.tabset} to show two different tables for Dec 2020 & Jan 2020. But the table is not as long as the area generated and really only reaches half...
Pegg asked 30/12, 2020 at 16:8
2
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 an...
Majordomo asked 25/8, 2017 at 7:42
1
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 ...
Yeager asked 31/3, 2020 at 18:58
3
Solved
In an Rmarkdown html document, how does one select a default value for a crosstalk::filter_select dropdown that will work with plotly plots? E.g., in the example below, to have just group 'a' selec...
Socialite asked 6/10, 2020 at 22:20
3
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. W...
Medwin asked 5/6, 2018 at 18:59
1
I have a flexdashboard R markdown file which nicely renders the required dashboard. I am also producing a PDF version of the dashboard for some users who require print-outs and I want to make sure ...
Spermatozoon asked 29/1, 2019 at 15:27
3
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 cl...
Dorene asked 29/9, 2016 at 7:57
2
Solved
I have the following RMarkdown FlexDashboard document:
---
title: "Some title"
runtime: shiny
output:
flexdashboard::flex_dashboard:
orientation: columns
vertical_layout: fill
---
```{r setup...
Ochre asked 20/4, 2017 at 5:31
4
I have data I wish to show in a flexdashboard in R. I build the datatable with DT::renderDataTable({DT::datatable(data(), options=list(scrollX=TRUE))})
This works just fine when showing something...
Octa asked 23/1, 2017 at 19:42
1
I have created a download button in the .navbar-right .
I would like to link that button to the downloadHandler() function that will generate a .pdf report based on the "report.Rmd" whic...
Sheppard asked 12/8, 2020 at 12:34
2
Solved
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...
Ingressive asked 15/7, 2020 at 0:11
1
I am trying to reproduce a flexdashboard simple layout with a persistent sidebar and several tabs. This question is similar to this one I asked recently but in the latter I used some code found in ...
Conan asked 15/7, 2020 at 15:31
2
Solved
I'm working on a self-contained flexdashboard project and I'm wondering if it's possible when a user clicks to a new tab in one tabset, it changes to a new tab on a second tabset as well.
So for ...
Brooch asked 27/4, 2020 at 12:2
2
Solved
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.
Ho...
Aspia asked 20/3, 2017 at 22:12
3
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:...
Moazami asked 16/12, 2018 at 19:34
1
Solved
I have a wide table in a flexdashboard that displays via renderTable. There is a scroll bar in the browser but if you scroll the table to the right it goes into the sidebar. How can I make it go be...
Pyrography asked 13/4, 2020 at 20:42
1
Solved
It seems like plotly gauge charts are not compatible with subplot because I end up with two gauge charts on top of each other.
library(plotly)
fig1 <- plot_ly(
domain = list(x = c(0, 1), y = ...
Redden asked 11/4, 2020 at 23:28
1
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 Javascri...
Deaton asked 29/10, 2019 at 22:58
2
Solved
I am using the flexdashboard Package with Rmarkdown and would like to modify the dimensions of headers, location of borders, colors, etc. that result in the webpage created by Rstudio. There are ma...
Moppet asked 12/4, 2018 at 17:50
1 Next >
© 2022 - 2025 — McMap. All rights reserved.