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

Errors only when running shiny application on server - debug

I have written a small application in shiny. I have the following files: global.R, server.R and ui.R In the global.R file, I load my data. I read data from three different csv files. a.csv, b.csv and c.csv and I use merge to join a.csv and b.csv…
krish
  • 1,388
  • 2
  • 18
  • 28
0
votes
1 answer

Shiny apps folder on Ubuntu

After going through this and other shinyserver tutorial, I'm able to reach at this point. And when I click the sample_apps/hello/ example link, I reach here. RStudio also works fine, but where do I put my shiny apps so that I can share them. The…
Vasim
  • 3,052
  • 3
  • 35
  • 56
0
votes
0 answers

Linux R server (Shiny): Install Windows binaries

Is there some way to install a (modified) R package (zip Windows binaries) on a linux machine (using command line) running Rserver + Shiny ?
Jsncrdnl
  • 3,005
  • 5
  • 28
  • 43
0
votes
1 answer

Check for multiple selection in Shiny server

I am creating a input list for user selection using selectInput(....multiple=TRUE), where user can select multiple options, but I am unable to check/read what options user selects in my server.R. If anyone has successfully tried it can you please…
AnkP
  • 631
  • 2
  • 9
  • 18
0
votes
0 answers

R Shiny: invalidateLater avoiding start up?

Currently, I have a web client Shiny application that is run on a virtual server and allows users to access the app via a website if they are logged onto the company network. I want my application to update its data every 24 hours using…
Agrosel
  • 489
  • 3
  • 15
0
votes
1 answer

Calculate sum of inputs from two tabs and paste it in textInput box - Shiny R

`if (interactive()) { ui <- fluidPage( numericInput("obs", "Observations:", 10, min = 1, max = 100), numericInput("obs1", "Observations1:", 10, min = 1, max = 100), textInput("final", "Sum") ) server <- function(input, output) { } shinyApp(ui,…
Harryy
  • 41
  • 9
0
votes
1 answer

tooltip in ggvis (R and shiny)

I have a small issue about GGVIS in R studio. I want to plot something and have more information on each point when I move my cursor on it. Thus, I am using GGVIS package and the add_tooltip() function to do it. However when I run the code below,…
user3577165
  • 85
  • 1
  • 8
0
votes
0 answers

Table from downloadHandler is generated in blank

I'm trying to download a table generated from a function in server.R and I was trying to call it by input$example that comes from output$example. However, my excel file comes out blank. Does anyone know how to fix this? Here comes my server.R …
0
votes
0 answers

Connecting GitHub to Shiny Server (follow up)

I am trying to set up a shiny server with the manual of Dean Attali. So far I made the shiny server work. This should be proofed by the fact that the "Welcome to Shiny Server" page shows up when I navigate to the server ip. The problem is that I…
Felix Grossmann
  • 1,224
  • 1
  • 11
  • 30
0
votes
0 answers

Error in downloading a shapefile

I'm trying to download a shapefile that comes from the writeOGR function. However it's not working and it can't download the shapefile. Does anyone know how to fix this? I really appreciate! Here comes the server.R: output$shapefile <-…
0
votes
1 answer

How to return multiple values in R ShinyServer

I am doing the following: using R ShinyUI, get client inputs on ranges of variables A, B, C; in R ShinyServer, read in a csv file, and using the client inputs to slice the csv, and get the portion that I need; Perform a loop calculation on the…
user321694
  • 21
  • 1
  • 1
  • 3
0
votes
1 answer

Shiny Server doesnt deploy app

We have installed Shiny Server and RStudio Server on a CentOs 7. We can see the sample-apps that come pre-loaded into it (sample-apps/hello/), which run absolutely fine. However, when we copy+paste these same server.R and ui.R files into a new…
0
votes
1 answer

For loop producing multiple reactive values

I'm trying to generate multiple reactive variables (#12) using a for loop. The initial values for the variables are indicated by the user input in the app. Thus the variables must be reactive and related to the user input. In the loop I want to…
0
votes
1 answer

R shiny: loading icon works in browser, but not when run in Rstudio

using the code chunk below I've added a loading icon to my Shiny app. However, it only shows the icon when I've opened the app within my web browser and not when I'm just running it within Rstudio. Is there a way I can change this so it appears in…
Jautis
  • 459
  • 6
  • 13
0
votes
3 answers

Error using letsencrypt with Shiny Server Pro

I am trying to configure Shiny Server Pro with a SSL certificate from Letsencrypt. I follow these commands to create my certificate as described here: https://certbot.eff.org/#ubuntuxenial-other sudo apt-get install letsencrypt sudo systemctl stop…
jbryer
  • 1,747
  • 3
  • 16
  • 29