About 12,000,000 results
Open links in new tab
  1. How to save plots that are made in a shiny app - Stack Overflow

    Not sure if this question is still active but it's the first one that came up when searching for "saving plots in shiny app" so I wanted to quickly add how to get ggsave to work with …

  2. Hosting and setting up own shiny apps without shiny server

    Hosting and setting up own shiny apps without shiny server Asked 10 years, 11 months ago Modified 1 year, 8 months ago Viewed 55k times

  3. 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, 4 months ago Modified 3 years, 3 months ago Viewed 128k times

  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 …

  5. shiny - possible to run RShiny app without opening an R …

    Just install R and the packages to run shiny in the shared folder. It's easier to maintain because all your colleagues work with the same R version + package then.

  6. Scale and size of plot in RStudio shiny - Stack Overflow

    Related, but only talks about the allocated plot space in general, not how to directly set the plot image size and then scale it to fill the desired space Shiny Chart Space Allocation I'm creating a

  7. 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 …

  8. R shiny passing reactive to selectInput choices - Stack Overflow

    Oct 14, 2016 · In a shiny app (by RStudio), on the server side, I have a reactive that returns a list of variables by parsing the content of a textInput. The list of variables is then used in …

  9. R shiny: display "loading..." message while function is running

    Jun 26, 2013 · I use Shiny GUI R package. I'm looking for a way to display a message like "loading..." after the actionButton was pressed. The function takes several minutes to execute, …

  10. Outputting multiple lines of text with renderText() in R shiny

    I want to output multiple lines of text using one renderText() command. However, this does not seem possible. For example, from the shiny tutorial we have truncated code in server.R: …