Questions tagged [shiny-server]

Shiny Server provides a platform on which you can host multiple Shiny applications on a single server, each with their own URL or port.

Shiny Server is a server program that makes Shiny applications available over the web.

Using Shiny Server, you can host multiple Shiny applications, as well as static web content, on a Linux server and make them available over the internet. You can specify what applications are available at what URL, or configure Shiny Server to let anyone with a user account on the server deploy their own Shiny applications.

1655 questions
0
votes
1 answer

In Rshiny, How to replace old tabs with new one by selectInpout

Here is an existing example library(shiny) runExample("06_tabsets") And you will see you can choose distribution type in radiobutton and there are three tabs "Plot", "Summary", and "Table". My question is how can I add a selectInput under the…
Bratt Swan
  • 1,068
  • 3
  • 16
  • 28
0
votes
1 answer

In RShiny ui, how to dynamic show several numericInput based on what you choose

My code is here: ui.R shinyUI(fluidPage( # Copy the line below to make a select box selectInput("select", label = h3("Select box"), choices = list("Choice 1" = 1, "Choice 2" = 2, "Choice 3" = 3), selected = 1), …
Bratt Swan
  • 1,068
  • 3
  • 16
  • 28
0
votes
0 answers

How to select multiple expressions in eventReactive shiny?

I have two sidebarPanels - Cond. 1 and Cond. 2 and an action button Compute. I want to set two condition wherein, On selecting 'A' from Cond. 1 and 'B' from Cond. 2 and then 'Compute' gives some output On selecting 'C' from Cond. 1 and 'D' from…
Harriss
  • 13
  • 1
  • 8
0
votes
1 answer

shiny r subset factor input

The STORENUMBER filters the data and renders the map and table below, but the DMA doesn't. Does subset() work differently on factors than integers in server.r? data STORENUMBER = c(123,456) DMA = c("LA","SD") LATITUDE = c(130, 132) LONGITUDE =…
JL82559
  • 43
  • 9
0
votes
1 answer

linking sidebarPanels with multiple inputs in the if loop : Shiny R

I have a drop down in sidebarPanel from which I can select a maximum of 2 options. I want to create an if loop where in - choosing ('Saddle Joint' and 'Gliding Joint') or ('Saddle Joint' and 'Synovial Fluid') from the drop down leads to selection…
Harriss
  • 13
  • 1
  • 8
0
votes
1 answer

Linking sidebarPanels in shiny for SelectizeInput function

Assume I have a drop down in sidebarPanel - location from which I can select a maximum of 2 options. I want to create an if loop where in - chosing 'Saddle Joint' and 'Gliding Joint' from the drop down leads to selection of objects 'x' and 'y' in…
Harriss
  • 13
  • 1
  • 8
0
votes
1 answer

Shiny Dashboards Dropdown

So I have a dashboard in Shiny. It's just simple table that looks like [the image found in this link][1] (apologies that I can't give you something more reproducible. Not sure how I would do that.)
wizkids121
  • 634
  • 1
  • 9
  • 22
0
votes
0 answers

conditionalPanel to link sidebars and make appropriate selections - Shiny R

I have an UI designed as shown in the picture below, and I want to actually set a condition here such that: UI.R On selecting/checking the box "Saddle Joint" from the sidebar location, I want the options "GEO_10500", "GEO_77298" to be chosen from…
Harriss
  • 13
  • 1
  • 8
0
votes
1 answer

How to create a dynamic ui Rshiny

I am a newbie in Rshiny, right now I try to design a dynamic ui Rshiny. Attached is my ui.R and server.R. It runs out an error. This is a dataset storms in different years. …
Bratt Swan
  • 1,068
  • 3
  • 16
  • 28
0
votes
0 answers

Make panels invisible based on an input from another panel - Shiny R

Assume I have three sidebarPanels, 'cond. 1', 'cond. 2' and 'treatment'. I need to make the sidebarPanels (cond. 1 and cond. 2) disappear on choosing a value from the 'treatment' drop down menu. If no value is chosen from treatment, I need to keep…
Harriss
  • 13
  • 1
  • 8
0
votes
0 answers

Issue: Creating a drop down menu in Shiny R - not all objects are displayed

I have about 8000ish elements under 'gene_count', but only a few gets displayed when I create a dropdown menu using the command, fluidRow( column(12, br(), selectInput("gene_search", label =…
Harriss
  • 13
  • 1
  • 8
0
votes
1 answer

Shiny - connecting sidebarPanels using conditionalPanel

I am actually trying to create a Shiny dashboard - where I need to select check boxes (in sidebarPanel - 'Datasets') based on the input value from sidebarPanel ('Treatment'). For example, if you look at the image below: When the user selects 'anti…
Harriss
  • 13
  • 1
  • 8
0
votes
1 answer

How to delete last comma in multiple select in r Shiny

I'm using R shiny tools and I meet a problem. When I use the multiple select button, I want to add a comma at the end of every selections,here is what I do: UI.R conditionalPanel("input.Select_Table == 'Demographics'", …
Verse he
  • 11
  • 3
0
votes
0 answers

install.packages ksh error when trying to install shiny package

Trying to install Shiny local pacakge after downloading: install.packages("/tmp/shiny_0.13.1.tar.gz", repos=NULL, type="source") I get this error: -ksh: syntax error: `(' unexpected is the syntax right ? Please advise
iaav
  • 484
  • 2
  • 9
  • 26
0
votes
0 answers

Option for RShiny on Windows server

Our analysis tool uses R and Shiny server for visualization, Want it to host on Windows server Ready to move to Python if it can be hosted on Windows? (Please Don't recommend for VM)
utkarsh
  • 333
  • 1
  • 3
  • 11
1 2 3
99
100