
Newest 'shiny' Questions - Stack Overflow
With the Shiny package and its fluidPage() function, language switching is perfectly supported by the shiny.i18n library. With the bslib package for making Shiny dashboards more attractive and …
Change the color and font of text in Shiny App - Stack Overflow
I am using below code in server.R to display the text in the main panel. This is working exactly the way it should work.
Shiny with multiple tabs and different sidebar in each tab
May 31, 2017 · I am trying to have multiple tabs, each tab with its own sidebar, I need selectInput in the first tab, and sliderInput in the second tab. Can anyone help ? My code: ui <- fluidPage(
Are there global variables in R Shiny? - Stack Overflow
This page on the Shiny webpage explains scoping of Shiny variables. Global variables can either be put in server.R (as per Ricardo's answer) or in global.R. Objects defined in global.R are …
R Shiny: reactiveValues vs reactive - Stack Overflow
Sep 11, 2016 · The shiny developers designed reactive() to be lazy, meaning that the expression contained in it will only be executed when it is called by one of its dependents. When one of its …
Outputting multiple lines of text with renderText() in R shiny
Don't know if this option was available when this was first asked but I found using the shiny::markdown function inside renderUI was the simplest option. Especially because in my …
r - Effectively debugging Shiny apps - Stack Overflow
Aug 10, 2015 · I have a complex Shiny app spread across multiple files that uses code from several packages. The app works when run locally in R Studio, but on my server it throws a …
shiny: open new browser tab from within shiny app
Jul 6, 2013 · I wanted to have links in the tabPanel but Shiny will open a new blank page and have a link instead of just clicking on the tabPanel and opening a new page. Using the …
dynamically adjust height and/or width of shiny-plotly output …
I simply want to add to that response for a special use case: to lower the frequency of times Shiny attempts to re-render a visualization as the window is slowly resized by grabbing one of the …
Using a reactive expression in an if statement in shiny
Jan 16, 2016 · Note that Shiny works based according to an event driven model - as do pretty much all graphically oriented UIs (and today that is the vast majority). It is not a new concept, …