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

R Shiny apps as native iOS mobile app

I have a shiny app that is of course easily viewable on mobile (iphone etc) But what options do I have If I wanted to create a native app on iOS but utilize Shiny and R I was thinking 1. I could host it on shinyapps servers. and then some how find…
shamary
  • 305
  • 3
  • 12
4
votes
1 answer

How to extract the values of dynamically generated inputs in Shiny?

I am creating a shiny app which will generate the score for clients based on their different features. In my shiny app, I have provided the checkboxGroupInput to select the required features. Based on the selected features app will dynamically add…
Venkiii
  • 57
  • 1
  • 7
4
votes
1 answer

shiny: show mainPanel on action button click

is there any way to show all of the contents in the mainPanel only when the user clicks the action button? ive been searching the internet for awhile for the answer but couldn't really find an answer. i know i can use hidden - it works on smaller…
helloworld
  • 181
  • 3
  • 12
4
votes
2 answers

How to manage h2o instance in Shiny App correctly

I am building a shiny app that scores the data of the deep learning model using h2o engine. I could achieve my goal by simply placing my predicting operation into the function. In this function I would typically start my deep learning machine, make…
vlad1490
  • 355
  • 2
  • 8
4
votes
2 answers

Adding/removing icon in downloadButton() and fileInput()

In Shiny, we have downloadButton() and fileInput() buttons for downloading and uploading data respectively. However it happens that, with downloadButton() there is download icon, and however with fileInput() no icon is attached. In my Shiny app, I…
Bogaso
  • 2,838
  • 3
  • 24
  • 54
4
votes
1 answer

R Shiny change config file location

We are installing R Shiny on a LAMP slice (CentOS) and the default location for the shiny-server.conf file in /etc/shiny-server/shiny-server.conf doesn't work. All app information for the slice needs to be contained in /hosts/slice73/. Is there a…
4
votes
1 answer

How to make sure the shiny app knows which tab is currently opened when using modules?

I'm using modules within my shiny app to display the content of different tabPanels. I would like to be able to travel to the second tab by clicking one button. I have the following code: library(shiny) library(shinydashboard) moduleUI <-…
MaxPlank
  • 185
  • 2
  • 13
4
votes
1 answer

Need a way to reload the session immediately without finishing the code sequence in Shiny

Am using shiny package to build a web version of a tool. It is mandatory to perform a validation on user inputs before furnishing the output. One of the validations requires the tool to be refreshed. To get this done, am trying to use…
4
votes
1 answer

Running app successful in R studio but not in Shiny server

My operation system is ubuntu. I run a shiny app successfully in rstudio. I have copied all files in the shiny server file. But when I try to run the app from shiny server I see in browser this error: ERROR: An error has occurred. Check your logs or…
Niemik
  • 73
  • 8
4
votes
2 answers

Shiny Server Error on webpage: An error has occurred The application failed to start. The application exited during initialization

I am trying to setup R Shiny Server on my Amazon Linux AWS EC2 instance and am getting the following error: An error has occurred The application failed to start. The application exited during initialization. I did a sudo shiny-server to see what…
jonathan1987
  • 251
  • 1
  • 6
  • 17
4
votes
1 answer

Shiny server disconnecting apps

We had shiny server running on an i686 machine under Ubuntu 16.04. After a recent upgrade server does not run the apps we were using to read and plot data from a MySQL database. Now when we try to connect to our server the shiny app appears but in…
pacomet
  • 5,011
  • 12
  • 59
  • 111
4
votes
1 answer

Render rmarkdown from RStudio server to external drive

When working locally, I use the following to render rmarkdown documents: rmarkdown::render(input = rmd.temp , output_dir = out.dir, output_file = out.name) This gets my template doc rmd.temp, then renders the document to out.dir and names the file…
Pete900
  • 2,016
  • 1
  • 21
  • 44
4
votes
1 answer

shinydashboard ui.R and server.R not reading Global.R

I am successful in using global.R to pass data to ui.r and server.R while developing in RStudio. However when I migrate my code to server neither ui.R nor server.R are able to read global.R. I am using Shiny Server (not pro). What could be causing…
earthlink
  • 323
  • 5
  • 15
4
votes
2 answers

How to add bigger textInput box in R Shiny?

I am creating a Shiny App, where in one part I need the user to input a text summary, but the default size of text input box appearing in the App is very small. difficult for users to enter a summary of 3-4 lines. Could you help me with the script…
4
votes
1 answer

Shiny or just htmlwidgets

I have to use htmlwidgets related packages(plotly and dygraphs) to generate plots which I can then either: 1. save as .html file and link them through an iframe. 2. use in a shiny app. I would prefer creating my own UI instead of using Shiny,…
brijs
  • 525
  • 6
  • 18