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
76
votes
4 answers

R + Shiny which hammer? straight Shiny, flexdashboard or shinydashboard?

At the risk of getting hit with a mods "too broad a question" hammer, I want to ask given the plethora of interactive R Shiny tools and packages emerging, when do you use which one? Shiny - to me only downside your project needs to run from shiny…
micstr
  • 5,080
  • 8
  • 48
  • 76
67
votes
8 answers

How to get Leaflet for R use 100% of Shiny dashboard height

I am in the process of creating a Shiny dashboard application, where the dashboard body is supposed to show some maps. So far no problem to get the map expand over the entire width of the body, but it's somehow not willing to adjust to the full…
TomGeo
  • 1,213
  • 2
  • 12
  • 24
50
votes
2 answers

Adding a company Logo to ShinyDashboard header

So just curious, is there any way to add a company logo to the header of a ShinyDashboard? As I am looking at the documentation, it describes changing the "logo" in the CSS, this is just configuring what goes in the upper left hand corner though as…
decal
  • 987
  • 2
  • 14
  • 39
44
votes
2 answers

selectInput that is dependent on another selectInput

I have some data below that I'm using to create a donut chart in R shiny, where date is a character. I want to be able to select the email whose score I want to view, but then in the second dropdown selection only see the dates for which that email…
Hillary
  • 785
  • 1
  • 6
  • 17
44
votes
4 answers

How do you pass parameters to a shiny app via URL

In web browsers you pass parameters to a website like www.mysite.com/?parameter=1 I have a shiny app and I would like to use the parameter passed in to the site in calculations as an input. So is it possible to do something like…
user3022875
  • 8,598
  • 26
  • 103
  • 167
32
votes
2 answers

How to display widgets inline in shiny

I have the below code to display the widgets inline(in same row) in shiny div(style="display:inline-block; width: 150px;height: 75px;",selectInput("ddllgra", "Function:",c('mean','median','sd','count','min','max'),…
vanathaiyan
  • 935
  • 1
  • 10
  • 19
30
votes
1 answer

How to show Spinning Wheel or Busy Icon while waiting in Shiny

Hey i've just started working with R and Shiny. Trying to make a dashboard which displays different charts. As there is a lot of data to process, the plots or charts take some time to display after the action button is clicked i.e. "launch Campaign'…
Danish Zahid Malik
  • 541
  • 2
  • 7
  • 19
28
votes
4 answers

How to change color in shiny dashboard?

(cross post from shiny google groups) Could some one point me to the tag names that I have to modify the color of a shiny dashboard? Modified from http://rstudio.github.io/shinydashboard/appearance.html#long-titles this will change the top left…
Iain
  • 1,608
  • 4
  • 22
  • 27
25
votes
1 answer

How to remove option bar from ggplotly plot?

I have a plot that I am rendering in shiny using plotly and ggplot2. However, I do not want the option bar that appears on hover to appear. Is there a way to use ggplotly(p) and remove the option bar?
Climbs_lika_Spyder
  • 6,004
  • 3
  • 39
  • 53
25
votes
6 answers

shinydashboard some Font Awesome Icons Not Working

When using shinydashboard I find that some icons seem to work while some don't. In the below example, the battery-full icon doesn't work while the clock-o icon works fine. I'm unable to figure out why this should…
TheComeOnMan
  • 12,535
  • 8
  • 39
  • 54
23
votes
3 answers

How to stop running shiny app by closing the browser window?

I have deployed an app in shinyapps.io and its working fine. I am running the app for only 5 minutes, but when I checked the metrics it shows a running time for about 0.7 hours. I found that there is a default idle time of 15 minutes, which I have…
Eka
  • 14,170
  • 38
  • 128
  • 212
21
votes
1 answer

Shinydashboard: Is it not possible to have nested menu sub items? Can't make it work

I am using a shinydashboard, and have a need to build two-level nested sub menus. I am trying this and won't work: library(shinydashboard) sidebar <- dashboardSidebar( sidebarMenu(id = 'sidebarmenu', menuItem('x', tabName = 'x', icon…
Gopala
  • 10,363
  • 7
  • 45
  • 77
20
votes
2 answers

landing page for shiny app

I am trying to create a splash or landing page in shinydashboard (or shiny if necessary). My main shiny app will have tab navigation etc. but the landing page should not. In fact, it should be completely different, maybe similar to this:…
SprengMeister
  • 550
  • 1
  • 4
  • 12
20
votes
4 answers

R shinyDashboard customize box status color

I would like to customize the color of the box status of my shiny app. I find a css way to change the box background color of these box but not to customize the status color, but I do not see the equivalent argument of "status" in css? I thus…
Charlotte Sirot
  • 931
  • 1
  • 8
  • 11
20
votes
3 answers

Shiny Dashboard - display a dedicated "loading.." page until initial loading of the data is done

I have initial loading of data from the DB in the server.R which takes a few seconds. Until this is done, the page displayed is distorted (wrong data in selection box, and weird placing of the boxes, see below). I want to display a different page…
KeshetE
  • 385
  • 2
  • 5
  • 17
1
2 3
99 100