Top "Shiny" questions

Shiny is an R package that makes it easy to build interactive web applications using only R.

Subset based on variable column name

I'm wondering how to use the subset function if I don't know the name of the column I want to …

r shiny subset
R Shiny set DataTable column width

I am trying to set the width of columns in a DataTable rendered in Shiny and am not able to …

r shiny dt
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. …

r web-hosting shiny shiny-server
how to insert new line in R shiny string

In shiny, I have the following: output$sequenceText <- renderText({ showSequence() }) showSequence <- reactive({ selectedSeqs <- as.…

r shiny
Adding a company Logo to ShinyDashboard header

So just curious, is there any way to add a company logo to the header of a ShinyDashboard? As I …

r shiny shinydashboard
Get Selected Row From DataTable in Shiny App

I want to modify this application: https://demo.shinyapps.io/029-row-selection/ so that only one row can be selected at …

r shiny
Are there global variables in R Shiny?

How do you declare global variables in with R Shiny so that you do not need to run the same …

r shiny global-variables
dplyr - groupby on multiple columns using variable names

I am working with R Shiny for some exploratory data analysis. I have two checkbox inputs that contain only the …

r group-by shiny dplyr
R shiny different output between renderTable and renderDataTable

I have a shiny application that shows a nice html table of my data, using renderDataTable. Then I wanted to …

r shiny shiny-server
Change the color of action button in shiny

I am trying to change the color of the action button from gray to orange. actionButton("run","Run Analysis") (This …

r shiny