About 50 results
Open links in new tab
  1. Newest 'shiny' Questions - Stack Overflow

    Jan 16, 2026 · Shiny makes it easy for R developers to turn their analyses into interactive web applications that anyone can use, without requiring any prior HTML, CSS or JavaScript knowledge.

  2. Change the color and font of text in Shiny App - Stack Overflow

    Change the color and font of text in Shiny App Asked 11 years, 8 months ago Modified 3 years, 7 months ago Viewed 129k times

  3. Data input via shinyTable in R shiny application - Stack Overflow

    Jan 13, 2017 · I want to build a shiny app that gets matrix data as input and returns a table based on some operations on it as output. By search I find that ShinyTable package could be useful. I tried …

  4. Are there global variables in R Shiny? - Stack Overflow

    This is because they are loaded into the global environment of the R session; all R code in a Shiny app is run in the global environment or a child of it. In practice, there aren’t many times where it’s …

  5. Using Conditional Panels in Shiny Modules - Stack Overflow

    Aug 10, 2023 · To add some detail to @StéphaneLaurent's comment: Shiny "knows' you're using a module and can "adjust" widget IDs in many cases to ensure it modifies the correct widget in the way …

  6. r - Shiny: download zip archive - Stack Overflow

    Nov 12, 2014 · Piggybacking on the comment from @jakob-r, the zip download kind of doesn't work in the Rstudio browser. It will default to an extension-less file, named "downloadData", which is the …

  7. How to add bigger textInput box in R Shiny? - Stack Overflow

    Aug 21, 2016 · 4 I am creating a Shiny App, where in one part I need the user to input a text summary, but the default size of text input box appearing in the App is very small. difficult for users to enter a …

  8. r - using Source () in Shiny - Stack Overflow

    May 11, 2015 · I have a working R application that I want to make available online using Shiny. My application receives a file as input, so the client uploads the file through ui.R. server.R receives the …

  9. css - Horizontal Rule hr () in R Shiny Sidebar - Stack Overflow

    Apr 24, 2017 · You can normally make a horizontal rule under UI elements with hr() when using fluidRow() in Shiny, but you can't do it in a sideBarPanel() under text. How can I make a horizontal …

  10. call R script from Shiny App - Stack Overflow

    Jun 13, 2017 · This shiny app gets the data from a raw csv which is previously treated and transformed. I got a Rscript apart from the shiny app to do all those "transformations" of the raw data. What I …