Questions tagged [shinydashboard]

shinydashboard is an R package which provides a framework for creating dashboards using R and shiny.

shinydashboard is an R package which builds on top of the shiny package in order to facilitate the creation of interactive dashboards.

Repositories

Stable Version on Cran

2792 questions
6
votes
1 answer

Using columns to control tabBox content in Shiny dashboard

I'm trying to build a Shiny dashboard page which will have tabbed pages with different types of plots, allow users to change settings dynamically, etc. Starting with the standard demo code from the Shiny Dashboards page, I can get a stacked version…
KirkD-CO
  • 1,603
  • 1
  • 22
  • 35
6
votes
3 answers

Show "loading graph" message in plotly

I want to show message like "loading graph" while plotting is in progress. How do I achieve this? Expected output:
Devharsh Trivedi
  • 561
  • 8
  • 23
6
votes
1 answer

Integrate plotly with shinydashboard

I have used shiny for several small scale project and am now giving a try to the shinydashboard package which looks rather promising. I also want to integrate interactive plot using plotly (although other libraries can be considered in the…
Philippe
  • 105
  • 1
  • 4
6
votes
2 answers

Display LaTeX equations in a shiny dashboard app in R

I would like to display an Rmd file with LaTeX equations in my shiny dashboard app. I've run into problems using includeMarkdown() and includeHTML(). Here is a simplified app of what I'm trying to achieve. Here is my…
Sölvi
  • 500
  • 5
  • 17
6
votes
1 answer

R shiny: How to debug deployed app?

I created an R shiny application and it runs perfectly on my machine. Also it is deployed successfully on the shinyapps.io server. However when I try to click one of the buttons to perform a task, the screen grays out (hangs). The same task is…
Komal Rathi
  • 4,164
  • 13
  • 60
  • 98
5
votes
1 answer

Including a HTML file rendered from RMarkdown in R Shiny apps using shinydashboard is causing tabItems to break

Problem When including a HTML document rendered from RMarkdown in a ShinyApp using shinydashboard, the HTML document is only rendered correctly when the setting "self_contained:" in the YAML chunk of the RMarkdown file is set to true. However, doing…
ZekeMarshall
  • 131
  • 5
5
votes
1 answer

Remove redundant space that appears when the width of the rightsidebar in shinydashboardPlus is changed

I am using shinydashboardPlus and wish to change the width of the right sidebar which I know can be done specifying the width argument in the call to the rightSidebar function, however when I do this (as per the below example taken from here)…
lmsimp
  • 882
  • 7
  • 22
5
votes
1 answer

How to Download excel File after successful Paypal transaction R Shiny

I am attempting to integrate Paypal into an R Shiny app. I've been successful at setting up the sandbox and confirming payment. However, I can't quite figure out how to get the app to either download a csv file immediately or show a new button…
bdavis562002
  • 101
  • 3
5
votes
0 answers

Shiny app: nothing changes when clicking on action button

Building on multiple stackoverflow questions, I tried to build this app which contains two action buttons the first one shows a data table the second one should open another sourced app but actually, nothing changes but in the global environment all…
John Smith
  • 278
  • 2
  • 10
5
votes
1 answer

R shinydashboardplus flipbox - how to remove images

I'd like to have no images for the flipbox, how can I do it? Tried this (and also setting to NULL): flipBox( id = 1, main_img = "", header_img = "", ... but instead it gives me this strange image.
Vlad
  • 3,058
  • 4
  • 25
  • 53
5
votes
1 answer

How to connect AWS S3 credentials in a modular shiny app

Running a shiny app with multiple folders served on shinyapps.io. The app has a function which pulls data from S3 (using a wrapper around get_bucket()), which works fine locally as I set the AWS secret and credentials in my project .Renviron file,…
5
votes
1 answer

How to change label color of textInput in Shiny Dashboard

I am working on shiny dashboard form application.I want to change color of text Input as red so that i can show that field as mandatory.However i tried code which is working fine for dateInputbut not for textInput. I am working on shiny dashboard…
Nick
  • 333
  • 5
  • 17
5
votes
2 answers

How to Debug when the Line Number of Error is not Provided?

I am using shiny and shinydashboard to create a dashboard. The minimum example codes are as below: library(shiny) library(shinydashboard) ui <- dashboardPage( dashboardHeader(title = "test"), dashboardSidebar( sidebarMenu( …
yusuzech
  • 5,896
  • 1
  • 18
  • 33
5
votes
1 answer

Word-wrapping or new line in shinydashboard title

I'm using a shinydashboard but when the title is too long it fails to wrap the lines. I have tried using
to accomplish this, but it doesn't work even with HTML() around it in this context. I know I can make the title space wider with…
Hack-R
  • 22,422
  • 14
  • 75
  • 131
5
votes
2 answers

How to display a different color on each side of range slider in Shiny app? As you slide on either side, color should also be filled automatically

How to display a different color on each side of range slider in Shiny app? As you slide on either side, color should also be filled automatically [2 library(shinyWidgets) library(shiny) shinyUI(fluidPage( # Application title …
deepak
  • 51
  • 3