About 6,480,000 results
Open links in new tab
  1. 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, 5 months ago Modified 3 years, 4 months ago Viewed 128k times

  2. dynamically adjust height and/or width of shiny-plotly output …

    What do you mean when you say shiny-plotly output height and width adjusted to the current window size? Do you want it do occupy certain ratio of your screen size?

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

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

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

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

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

    I'm creating a shiny web app and would like to set the size of the plot and scale. What I mean by that is I'm looking for a way to set a finite height/width for my plot, and then scale that set sized …

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

  9. how to insert new line in R shiny string - Stack Overflow

    how to insert new line in R shiny string Asked 11 years ago Modified 1 year, 11 months ago Viewed 81k times

  10. r - Shiny: what is the difference between observeEvent and ...

    Nov 4, 2015 · It's like the difference between observe and reactive. One is intended to be run when some reactive variable is "triggered" and is meant to have side effects (observeEvent), and the …