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

How can I add multiple shades with reactive() within shiny app?

I have tried to add multiple shades in dygrapgh function using for loop. but I couldn't. Honestly, I was looking for the solution for more than a week, I really can't find any suggestions. Please help ! I wrote this code: dg= reactive ({ …
smerllo
  • 3,117
  • 1
  • 22
  • 37
0
votes
1 answer

Hiding Port number in Shiny Apps using Shiny Server

I have deployed an app using Shiny Server on AWS instance. When I run Shiny app, it launched itself at URL XXX.XXX.XXX.XXX/8787/p/1234. I need to share this URL with my colleagues, but I want to hide IP+port number where shiny server is running i.e.…
V Gupta
  • 23
  • 1
  • 1
  • 6
0
votes
0 answers

Error: invalid 'times' argument in a textOutput from Shinyapps.io

I've got a really weird problem here with R and Shinyapps. The thing is that when I run the app in RStudio, everything works just fine but, when I publish it on Shinyapps.io I get the following error on some "textOutput" objects: Error: invalid…
Bernardo
  • 461
  • 7
  • 20
0
votes
0 answers

Save user inputs in R Shiny application

So I wrote an R Shiny app that analyzes student loan information and recommends the best way to pay them down. A lot of people, including myself, have multiple student loans with different interest rates, so I made some conditionalPanels that show…
Ashwin
  • 51
  • 1
  • 7
0
votes
0 answers

Unable to connect to MS SQL server from shinyapps.io From Windows using sqlOdbcDriver

I am unable to connect to MS SQL server from shinyapps.io From Windows using sqlOdbcDriver. This works perfectly in RStudio while running locally but when I tried to deploy in shiny server. I get the following error: ERROR: first argument is not an…
keeplearning
  • 369
  • 2
  • 6
  • 17
0
votes
2 answers

R Shiny "R_ZIPCMD" path zipping error

I have 2 running apps on my R Shiny server in Ubuntu 16.04. Both do some data manipulation (e.g. cleaning, joining tables, etc.) and then dump the outputs as an Excel file with a function something like, dumpExcel <- function(matched,…
Dogan Askan
  • 1,160
  • 9
  • 22
0
votes
0 answers

Loading packages by reading text file in shiny

I would like to know how to load packages reading a text file in shiny. I have put the text file containing package list in www directory of the shiny application. The application loads the packages and works fine locally, however when I deploy it…
AwaitedOne
  • 992
  • 3
  • 19
  • 42
0
votes
0 answers

How to enable right click on Graph using Rshiny, and show option to download dataset used in the graph

enter image description hereRegarding Rhiny: How can I enable functionality of right click on graph, show option to download dataset ? Below is my code. My requirement is, when I right click on graph, I will get an option of "Download", and by…
ShivNewToR
  • 11
  • 2
0
votes
1 answer

Apache & Rstudio Shiny App Redirect/Proxy

I have found many suggestions around the net on this, but nothing that matches my exact issue. I have a webserver setup, that I have had our networking guys give me a DNS name for. Let's call it analytics.mycompany.com. This runs on port 80 and I…
azdatasci
  • 801
  • 1
  • 13
  • 32
0
votes
1 answer

R Studio Server / Shiny Server Admin

I have 'inherited' from our previous resident data scientist, a RStudio Server setup on a remote virtual machine that we can use to host Shiny Apps. I have basic experience on Unix i.e. Can mount files etc to the server from our Windows environment.…
b123kotey
  • 31
  • 6
0
votes
2 answers

Display a message till all the packages are loaded

I have deployed one shiny application on my server using shiny server. The sample example is shown below: ui.R #library(shinyjs) library(shiny) #filenames <- list.files(path = "data",pattern="\\.csv$") #names(filenames) <- gsub(pattern = "\\.csv$",…
AwaitedOne
  • 992
  • 3
  • 19
  • 42
0
votes
1 answer

R shinyapp selecting pre-stored data set from checkbox

ui <- fluidPage( checkboxGroupInput("data", "Select data:", c("Iris" = "iris", "Cars" = "mtcars")), plotOutput("myPlot") ) server <- function(input, output) { output$myPlot <-…
Adrian
  • 9,229
  • 24
  • 74
  • 132
0
votes
1 answer

How to get rid of total row and total column in rpivot table

This is just an example code. I want to remove last row and last column with name "Total" in pivot table. Your help will be appreciated. Thank you. library(devtools) install_github("ramnathv/htmlwidgets")…
Sadaf Naz
  • 31
  • 1
  • 4
0
votes
1 answer

Shiny downloadButton() and downloadHandler() 500 Error

I have developed a Shiny Dashboard, I have several data frames that get imported through reactive file readers, etc.. I have also added a "Generate PDF" button, using downloadButton() in my ui.R code. My server.R code implements the…
azdatasci
  • 801
  • 1
  • 13
  • 32
0
votes
0 answers

there is no package devtools in shiny server

in the code of ui.R and server.R I have installed and call devtools library using this: library(devtools) However when I put the file into /srv/shiny-server/testapp, in browser I receive this error: ERROR: there is no package called…
Niemik
  • 73
  • 8