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
0
votes
1 answer

hw_grid widget function not working in flexdashboard

Because of this issue want to put 6 highcharter graphs in one row like do they over here. It seems to work fine outside of flexdashboard data(diamonds, package = "ggplot2") diamonds <- diamonds[-6] map(names(diamonds), function(x){ diamonds[[x]]…
Tim_Utrecht
  • 1,459
  • 6
  • 24
  • 44
0
votes
0 answers

Flexdashboard pandoc error

Apologies for the long and complicated code-block. I've updated Rstudio and Shiny to the latest versions, and have unfortunately broken my nice interactive dashboard and haven't had any luck in debugging it. Code: title: "Antibiotic Use" output: …
Trent
  • 55
  • 1
  • 8
0
votes
1 answer

R Shiny - Display Table Based on Input Parameter

For the life of me I can't work this out, I'm using Flexdashboard in R Studio and I have two tables. What I want to be able to do is to switch the table being being shown via a selectInput. My selectInput is currently: ```{r setup,…
Morts81
  • 419
  • 3
  • 13
0
votes
1 answer

Can't get Flexdashoard valueBox running with Visual Studio 2017

I'm using the R language along with Visual Studio 2017. I am trying to create a dashboard for my R scripts using Flexdashboard http://rmarkdown.rstudio.com/flexdashboard/index.html Just to get started I would like to create a valueBox and display…
tcode
  • 5,055
  • 19
  • 65
  • 124
0
votes
1 answer

How to use shiny input variables in a global variable in flexdashboard

I have a problem that I have to take the select input values and use in a function, but I can't call the function in multiple Renders (plot, print, table) because it's a costly function. With the shiny input, I would like to create a Filtered data…
0
votes
1 answer

Flexdashboard Sidebar Icon

I would like to ask how can I add icons to flexdashboard to look like in shinydashboard in sidebar section. Is it possible ? R code below: Sidebar {.sidebar} Website Content #here I would like to see icon ABST and Workflow Process #here I would…
Geron
  • 85
  • 1
  • 7
0
votes
0 answers

R looks in the wrong place for html dependency

I am trying to knit a flexdashboard to an html file. My flexdashboard includes leaflet maps. The knit.md file compiles correctly. At the last stage, converting the knit.md to an html file, I get an error. Apparently leaflet is looking for html…
Adrian Martin
  • 780
  • 7
  • 21
0
votes
0 answers

How do I use a for loop to create multiple dataframes from multiple files r

I have a about 150 tables that I am hoping to make as many flexdashboards for, but don't want to knit each manually. I am using a for loop in a r script to hopefully render those rmd files as .html setwd("/Volumes/G-DRIVE mobile USB/r/tables…
SportSci
  • 227
  • 3
  • 9
0
votes
1 answer

Flexdashboard can't find input/session

I have been using Shiny/Flexdashboard for a couple of days and out of nowhere all of my code stopped working and I just get session or input not found errors. I tried re-installing RStudio and R and all the packages, but it didn't work. When running…
gdep
  • 1
0
votes
0 answers

flexdashboard error - pandoc: Could not fetch

I am trying include a css as described in http://rmarkdown.rstudio.com/flexdashboard/using.html#css_styles to my flex dashboard. --- title: "test" output: flexdashboard::flex_dashboard: orientation: columns vertical_layout: fill css:…
user2359902
  • 121
  • 1
  • 7
0
votes
1 answer

My dygraph is not responsive in a flexdashboard : output doesn't resize itself to fit the bounds

In the following example, the bottom part of the dygraph isn't visible, neither in the RStudio html Viewer, neither in a web brower. --- title: "Flexdashboard with params" params: names: "Diane" output: flexdashboard::flex_dashboard: …
DianeBeldame
  • 156
  • 6
0
votes
1 answer

Reduce Font Size of datatable in a Flexdashboard

I'm working on a shiny flexdashboard, and one of the elements is a datatable with a lot of columns. Currently the columns are so many that they exceed the width of the app. Instead of adding a scroll bar I would prefer to simply reduce the font…
Rafael Velásquez
  • 337
  • 1
  • 3
  • 14
0
votes
1 answer

SQL Logon failure due to trigger when running R Flexdashboard

I'm running into an issue when trying to query from a sql database using flexdashboard. Below is my connection (with dummy info). If I run the connection from my regular R session it works without any issues. The problem is when I try to run it as…
Rafael Velásquez
  • 337
  • 1
  • 3
  • 14
0
votes
1 answer

Plot simple chart on the basis of data subset in flexdashboard

I want to plot a chart in flexdashboard on the basis of data subset. Here is a code: --- title: "Test" output: flexdashboard::flex_dashboard: orientation: columns social: menu source_code: embed runtime: shiny --- ```{r global,…
Serhii
  • 362
  • 4
  • 15
0
votes
1 answer

What HTML does '###' add in flexdashboard/rmarkdown?

I have a flexdashboard with different sections separated by the heading ###, for example: page 1 ===================================== Column ----------------------------------------------------------------------- ### section 1 bla bla bla …
eflores89
  • 339
  • 2
  • 10
  • 27