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
7
votes
0 answers

Is it possible to update specific app files for Shiny app hosted on shinyapps.io

I developed an app and deployed it privately on shinyapps.io. Since deploying the app, I've partially implemented some major breaking changes. Now, I would like to update one specific data file that was deployed in version 1 of my app without…
Ben
  • 20,038
  • 30
  • 112
  • 189
7
votes
1 answer

Plotly variable not found after deploying to shiny server

I've created a Shiny app, which contains some Plotly objects. All works fine when previewing in RStudio. Though, when I deploy the app to Shiny server (on-premise) and open the app, the plots are not shown. When looking at the developer console in…
dwillemsen
  • 71
  • 1
7
votes
2 answers

Accessing Error log in shiny-server deployed on AWS instance

I have a shiny app that runs fine on my local machine in RStudio. I have launched an AWS EC2 Ubuntu instance and installed R and shiny-server on it. When I access the app via browser, the app crashes at a (seemingly) arbitrary point. Where can I…
Fabian Haribo
  • 191
  • 1
  • 5
7
votes
1 answer

How to use sliderInput to to input more than 2 values in Rshiny

Traditionally, a sliderInput function is sliderInput(inputId, label, min, max, value, step = NULL, round = FALSE, format = NULL, locale = NULL, ticks = TRUE, animate = FALSE, width = NULL, sep = ",", pre = NULL, post = NULL, timeFormat = NULL,…
Bratt Swan
  • 1,068
  • 3
  • 16
  • 28
7
votes
1 answer

R shiny login hack

Having tried the evaluation of the RStudio Shiny Pro Server I am not super enthused by the login/authentication mechanism as their is no simple mechanism to manage user accounts for clients to access a shiny app. As such I am attempting to create…
Dan
  • 2,625
  • 5
  • 27
  • 42
7
votes
1 answer

R Shiny server not rendering correct ggplot font family

I'm trying to apply a nice font to a ggplot rendered in a Shiny app. Setting the desired font in RStudio (on the same server) using family="[fontname]" works correctly. Here a "serif" font family has been requested: Image of correct ggplot font…
gatherer
  • 333
  • 1
  • 2
  • 9
7
votes
1 answer

displaying TRUE when shiny files are split into different folders

I have a shiny app using the package shinydashboard. At first, I had all the files as 3 files - global.R, server.R, ui.R. As files got bigger and messy, I took out the codes for each menus, and placed them in a separate folder. (splitting shiny…
jae555
  • 140
  • 2
  • 7
7
votes
1 answer

R shiny / shiny-server - issue with finding packages

I have installed shiny and shiny-server on an ubuntu server. I did a similar install on a dev server which is working. R sessions when they open up load some packages. The app runs fine locally but I'm getting messages that it can't find the…
Steph Locke
  • 5,951
  • 4
  • 39
  • 77
7
votes
1 answer

Stylize or format text in R Shiny Server

I have an app running on shiny server and I would like to format smalls parts of text without needing to manage the css/html for the entirety of the page. Simple example: In the ui.r, I have some lines of help text that I would like to stylize.…
Ricardo Saporta
  • 54,400
  • 17
  • 144
  • 178
6
votes
1 answer

How to get User's Information in Rshiny

I want to get User's IP, User's window ID and User's Server Access time I can get User's IP with below code but Other things can't get.... getting User's IP code is ip <- session$request$REMOTE_ADDR at server.R How to get User's window ID and…
JAIL
  • 65
  • 3
6
votes
1 answer

My favicon will not display on a browser tab for my app when using open source shiny server

I have been trying to find a way to associate a .ico with a shortcut to a shiny app hosted on an open source shiny server. Ultimately I would like the .ico to appear as the graphic for the shortcut to my app. And, I would like this icon to appear/be…
roberty boberty
  • 175
  • 2
  • 8
6
votes
2 answers

Get PID for subprocesses for asynchronous futures in R shiny

server <- function(input, output, session) { out1_rows <- reactiveVal() observeEvent(input$run1, { prog <- Progress$new(session) prog$set(message = "Analysis in progress", detail = "This may take a while...", value =…
chas
  • 1,565
  • 5
  • 26
  • 54
6
votes
1 answer

How to center table in box in Shiny Dashboard

I'm having difficulty centering a table I made in Shiny Dashboard within a box. I used a .csv file, but here is some fake data: Stage = c("Survey", "Work Sample", "Interview", "Stats Test") Score = c("+33.7%", "+14.8%", "+20.8%", "+28.17%") no1_cand…
skk
  • 175
  • 3
  • 10
6
votes
1 answer

Image output in shiny app

I am trying to include an image in a shiny app. I want: "if it is type 1 plot "this image", if it is type 0 plot "this other image". I know that I have to put the jpg files into the folder where the app.R is and then call it but I do not know how.…
Sara
  • 185
  • 1
  • 9
6
votes
2 answers

Deploy Shiny App with a scheduled script

I have a simple script that in Rstudio works to deploy app: rsconnect::setAccountInfo(name='xx', token='xx', secret='xx/xx') library(rsconnect) deployApp("xxx",launch.browser = FALSE) After this prompt appears: Update application currently…