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
6
votes
1 answer

How to display input text inside some other text in shiny?

I have an input box and whenever a user types his name, then the output should be like "hai mr.X, how are you?" where X is the input. This should only appear after first input and name should change from X to whatever based on input after…
Victor Johnzon
  • 215
  • 1
  • 3
  • 16
6
votes
2 answers

Shiny doesn't display R plotly plot

I'm fairly new to shiny and trying to push over a pie chart made in plotly. Upon clicking runapp the html rendered only contains the Title i.e. "Plotly" The code is as under UI library(shiny) shinyUI <- fluidPage( titlePanel("Plotly"), …
Dollar Vora
  • 197
  • 1
  • 10
6
votes
2 answers

How to restart shiny server in Docker container?

I have a Dockerized R Shiny app that extends the rocker/shiny image. I would like to restart the shiny-server inside of the Docker container at some point. From the documentation of shiny-server, I tried all the commands for different Linux builds…
Zichen Wang
  • 1,294
  • 13
  • 22
6
votes
1 answer

Real time chart on R - Shiny

I'm trying to make an interactive chart that plots financial stock data on a shiny app. My attempt is to update continuously the data, hence the chart. I managed this using a package called Highcharter. Below it's shown a part of code in the server…
6
votes
1 answer

In shiny how can I update an input text field with the value of an action button

Hi I want to create a shiny UI which a user can type in the name of a data-set into a text box say "testdataset". Then by clicking and action button to select a particular process in this (example) analysis 1 or analysis 2. Once this happens I want…
user5300810
  • 61
  • 1
  • 3
6
votes
3 answers

How to cache data in shiny server?

I am using R to deploy an app over the web, but the URL from which my app takes data is where my app takes time. Is it possible to cache that data? I tried to install the packages memoise, R.cache and a few more that were all unsupported by the…
Paras Sheth
  • 61
  • 1
  • 6
6
votes
1 answer

R Shinyapps advanced settings

Here is a screenshot of the shinyapps.io settings. Can someone please explain what these things are and how they relate to each other? There is a limited one liner definitions in the settings area and shiny-server admin guide which doesn't explain…
mindlessgreen
  • 11,059
  • 16
  • 68
  • 113
6
votes
1 answer

Shiny Server does not start and returns Trace/breakpoint trap

I thought I had successfully installed Shiny Server on my Debian Wheezy (Raspbian). I got no errors in the cmake and all other required packages were also installed. I followed the instruction on Building Shiny Server from Source. If I enter…
user2386786
  • 725
  • 9
  • 25
6
votes
2 answers

shinyapp.io rename deploy path

Need to change the shinyapp.io deployment path from https://username.shinyapps.io/abc to https://username.shinyapps.io/xyz Can anyone advice how this is done?
Cyrus Lentin
  • 163
  • 1
  • 7
6
votes
1 answer

Identify user web browser information in Shiny Server

In Shiny Server I can get some information about the client via session$clientData. In my current project I'm using parseQueryString(session$clientData$url_search) To get parameters in the URL. I want to be able to get the web browser information…
Mark
  • 4,387
  • 2
  • 28
  • 48
6
votes
1 answer

How to set a conditional panel to a selectinput in shiny?

I am trying to add a second inputpanel in my shiny application which content depend on the input of the first inputpanel choice, I tried tout use condional panel with no luck. ui.R TO <- read.csv("~/TO/TO/TO.csv",…
user2486276
  • 135
  • 3
  • 8
6
votes
1 answer

Shiny select go to different tabPanel using action button or something

I have built the following template for my shiny app. ##ui.R shinyUI(navbarPage("My Application", tabPanel ( "Select Data range", sidebarLayout ( sidebarPanel ( …
anonR
  • 849
  • 7
  • 26
6
votes
2 answers

R Markdown with Shiny Server change host parameter

I am running RStudio on a server and I created a RMarkdown (.Rmd) file. It works fine if I create it as a static HTML but it does not work if I want it to be interactive (by adding runtime:shiny). The issue is that when I add runtime:shiny and…
Andrei
  • 105
  • 2
  • 4
6
votes
1 answer

How to obtain shiny-server version info in Ubuntu?

How do I check the version of shiny-server that is installed on an Ubuntu system? Background: Have installed shiny-server on Ubuntu14 32bit virtual machine (i.e. build from source). It is up and running, but not yet working well, and for searching…
user3817704
  • 401
  • 1
  • 5
  • 12
6
votes
2 answers

Shiny rcharts multiple chart output

How can I overwrite the output display options with running multiple charts with shiny and rchart so the output result is a 2x2 matrix type grid layout. require(rCharts) require(shiny) require(data.table) runApp(list( ui = mainPanel( span="span6",…
digdeep
  • 624
  • 2
  • 10
  • 21