
Hosting and setting up own shiny apps without shiny server
I'm trying to make shiny apps available to my coworkers without them having to run or even have R installed. So I read this webpage and found this sentence: If you are familiar with web hosting or
shiny - possible to run RShiny app without opening an R environment ...
By default, shiny runs with the option "window" inside R-Studio, which without R-Studio won't work. Suppose that you have installed the necessary libraries in the path E:/some_path/rlib.
Shiny - Adjust width of sidebarPanel() relative to mainPanel()
I have the following segment of code which works as part of my shiny UI: fluidPage( titlePanel("Complaints this month"), tabsetPanel( tabPanel( "Opened",
Shiny - observe () triggered by dynamicaly generated inputs
Nov 16, 2016 · I have a shiny code that generates selectInputs and each of those selectInput generate the plot title. The problem is that I don't know how to trigger an observe() with dynamically generated …
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 along the …
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 …
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 other …
R shiny; how to use multiple inputs from selectInput to pass onto ...
R shiny; how to use multiple inputs from selectInput to pass onto 'select' option in dplyr? Asked 9 years, 2 months ago Modified 3 years, 5 months ago Viewed 43k times
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 image to the …
dynamically adjust height and/or width of shiny-plotly output based on ...
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?