
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, 1 month ago Modified 3 years, 1 month ago Viewed 128k times
Shiny + DT: how to make datatable reactive? - Stack Overflow
Apr 22, 2015 · I have an issue while trying to make datatable reactive within a shiny app (from DT package). Here is my reproducible example: ui.r dashboardPage( dashboardHeader(title = "TEST reactive DT&...
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 below shiny
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 mainPanel( plotOutput ()) area.
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 would like to do is to call this Rscript from the shiny app in order to be executed when the shiny app is launched.
R Shiny click on table field - Stack Overflow
Feb 21, 2022 · R Shiny click on table field Asked 3 years, 4 months ago Modified 3 years, 4 months ago Viewed 2k times
javascript - Modify text size in Shiny - Stack Overflow
Mar 6, 2019 · You can go to the localhost shiny deployment and inspect the text you have added with Right Click -> Inspect (Ctrl+Shift+I), maybe there is a shiny css file that overwrites your styling options.
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 returns a reactive value and is meant to be used as a variable (eventReactive). Even in the documentation for those functions, the former is shown without being assigned to a variable (because it is intended ...
shiny: open new browser tab from within shiny app
Jul 6, 2013 · Thanks, Jeff. But I am wrong to assume that this simple creates an HTML link that will open in a new tab (or window)? What I want is something else: In the app you can press an action button which will trigger the process of collecting some input settings (from checkboxes etc.) and generate a new HTML document in the background. Now I could simply return a link to that new HTML document and ...
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 lines of the original question. The alternative strategies suggested by juba using direct output instead of ggsave and alternative strategy suggested by alexwhan himself both work great ...