Shiny is a solution allowing easy creation of interactive web applications using R code. More info can be found here: http://www.rstudio.com/shiny/

learn more… | top users | synonyms

0
votes
1answer
31 views

R Shiny server dateRangeInput error

I keep finding this error Error: could not find function "dateRangeInput" whenever i try to run the following application. server.R library(shiny) library(ggplot2) library(shinyExt) ...
0
votes
1answer
33 views

R Shiny multiple tabPanel in tabsetPanel not loading

I have used tabsetPanel in my ui.R and for each tabPanel there is a specific plot. The plots do not require any user input to be rendered. But only the first tab is loaded. When I switch tabs, they ...
1
vote
1answer
41 views

Getting multiple checkbox values in Shiny

I have a series of checkboxes in a side panel, defined as follows inside a sidebarPanel: sliderInput("days", "Days to monitor:", min = 1, max = 50, ...
2
votes
1answer
85 views

tooltip on shiny R?

I simply want to have a tool-tip in my shiny R application. Is there any easy way to achieve that? For now, I am creating a density map and I want a simple tool-tip showing "click here to slide ...
0
votes
1answer
52 views

How to implement a progressbar in index.html using Shiny when a long calculation is performed

I am trying to implement something like a progress bar to use while the value of some function is being estimated. The function takes a long time to process. Is there any way to send some indicator ...
0
votes
0answers
103 views

Are tabs with their own sidebars and mainPanels possible in shiny?

I would like to display different inputs for different tabs. So I tried to build a page with several tabPanels. However, I can't have sth like below: library(shiny) shinyUI(pageWithSidebar( ...
4
votes
2answers
181 views

R Shiny: Interactively change the selectInput choices?

Originally I create this shiny interface that takes in a parameter "company id" and "date", but here we have a problem: most people dont know the companies we work with by their id, only their name, ...
1
vote
1answer
63 views

Packages missing in shiny-server

I am trying to create a web application using shiny. It requires me to load a package I have installed on my computer. For example: ## Contents ui.R: library(shiny) library(plyr) ...
0
votes
2answers
112 views

Can i host a shiny app on a windows machine?

I've registered for the beta hosting. I've tried to follow the directions for creating the shinyapps/myapp folder on my widnows machine. I can run shiny apps locally. I've installed the node.js ...
1
vote
1answer
172 views

RShiny: How to pass variable from Server.R to an RMD script

I am playing around with RShiny recently, and I've built a working web interface that takes two parameters "date" and "location" and gives me back a series of graphs and tables from our database that ...
0
votes
1answer
112 views

possible to run RShiny app without opening an R environment?

Currently I have a R shiny app, to run it I open up RStudio and execute setwd("C:/Users/Me/Desktop/R/ShinyProject2") library(shiny) ...... runApp() From a R script located in my directory. I am ...
0
votes
0answers
94 views

How to save (not upload) a file created from a Shiny interface?

I have asked this question on the Shiny Google group but once it is published it is immediately deleted, I don't know why. So I ask this question here. I know how to upload a file created from a ...
1
vote
0answers
95 views

dynamically add plots to web page using shiny

i want to create an app using shiny that dynamically add plots to the page. it could be 10 plots and it could be only one. i'm using this tutorial in the shiny homepage for dynamic UI. this is a ...
3
votes
2answers
173 views

Shiny submitButton behavior at page load time

The submit button is useful, but I have not found an elegant way to suppress output on initial page load. For example the Shiny tutorial renders output on load. ...
0
votes
2answers
172 views

R Shiny: not sure why ggplot is failing [closed]

Shiny newbie here. I am trying to write a R shiny script, and one of things I want to do is generate a histogram of the number of ad views for a given day and a given advertiser across different ...
3
votes
2answers
186 views

Button submit R with shiny

I'm trying to implement a form to upload a file, but start to do operation when I click on a submit button, the problem is that a have a strange mistake and I don't know what's it, I made the example ...
5
votes
1answer
109 views

With xtable and type = html how to add a class to a specific td tag

I'm trying to create a table in html with xtable, but I need to add a class to specific td tag, because I going to do an animation. The problems is that I can't do it without xtable because it is so ...
3
votes
1answer
197 views

How to integrate R shiny into current application

I am wondering if one can integrate R shiny into the current website (PHP or RoR). I just want to leverage the power of R Shiny to make an app embedded into the current website. But as far as I know ...
1
vote
0answers
88 views

Select appropriate columns from table based on multiple input

I built a small app in R's shiny package that displays some columns from selected dataframe based on the input IDs/Names. My dummy data looks like this (code below): ID1 ID2 ID3 ID4 Client Amount ...
0
votes
2answers
178 views

in RStudio shiny, wishing to customize a table

In an RStudio shiny UI application with a table produced by renderTable(), I'd like to add a leading column of radiobuttons (reactive, of course) and change the style of the selected row. What's the ...
2
votes
0answers
114 views

Showing POSIXt object with Shiny renderTable

I'm making an app to analyse time series data with Shiny. The data I work with looks like: V1 V2 1 2013-02-04 18:15:00 -4.746 2 2013-02-04 18:20:00 -4.745 3 2013-02-04 ...
1
vote
1answer
153 views

R Shiny nested uiOutput error: input => uiOutput => uiOutput => output

I have a problem for design a nested input/output app. (I have also tried to post this question to shiny-discuss. However, it would be automatically deleted when I post. Why?) My app can be ...
0
votes
0answers
56 views

Installing shiny package in R using ESS removed ESS

I installed the shiny library through Emacs ESS, and now my Emacs can't access ESS anymore. What could have happened? Even after closing/opening Emacs. 1) install.packages("shiny") 2) library(shiny) ...
1
vote
0answers
82 views

RStudio and Shiny: messages between server and client

I'm trying to create an application related to Shiny, and I would need the messages the client sends to the server, and the answers it sends back (especially the images), but I don't know, how they ...
3
votes
1answer
149 views

multiple choice box in R/shiny - adding a scroll bar

I build an R/shiny web app. I want to have a multiple choice box (I use checkboxGroupInput(), but am open to alternatives). However, the list of choices is long and I want to contain it in a ...
3
votes
1answer
290 views

R shiny: how to save input data to the server or access input variables globally?

I am making an application that asks the user a few basic survey questions. When this is done they are asked to provide a numeric input via a slidebar, press continue, then generate a plot, asks the ...
0
votes
1answer
162 views

Shiny R localhost Server not working

I have been trying Shiny with R and loved the concept. I have been looking at many examples online and everything is working just fine. When i try to run the exact same example on my localhost ...
3
votes
1answer
320 views

Update a data frame in shiny server.R without restarting the App

Any ideas on how to update a data frame that shiny is using without stopping and restarting the application? I tried putting a load(file = "my_data_frame.RData", envir = .GlobalEnv) inside a reactive ...
0
votes
0answers
119 views

R shiny reactiveUI example does not work

In this dynamic-ui example Creating Controls On the Fly With reactiveUI part what structure should cities have? Does anything change if I replace checkboxGroupInput by selectInput? I was not able to ...
4
votes
2answers
375 views

Save plots made in a shiny app

I'm trying to figure out how to use downloadButton to save a plot with shiny. The example in the package demonstrates downloadButton/downloadHandler to save a .csv. I'm going to make a reproducible ...
1
vote
0answers
156 views

Shiny reactiveUI hangs with multiple uiOutput calls on same condition variable

I am trying to make a reactive UI with sliders that drop in and out via a dropdown in shiny. I have a server with reactiveUI sliders (server.R): library(shiny) shinyServer(function(input, output) { ...
0
votes
1answer
273 views

Protecting access to glimmer shiny apps

This is a followup question my previous question: Is is possible to see the code for shiny glimmer apps I was wondering is it too simplistic to build a DynamicUI as suggested here by R-Studio, that ...
2
votes
2answers
250 views

Is is possible to see the code for shiny glimmer apps

Hi this is more question of code security, rather than a question about a directly coding related problem. But I was wondering is it possible to see the code in ui.R and the server.R and that ...
0
votes
1answer
107 views

Memory allocation when using Shiny

I am using Shiny to run a pretty simple simulation in R. However I run into problems with memory, and get the message: "Error: cannot allocate vector of size 274.8 Mb" etc. But when I run the ...
1
vote
2answers
534 views

How to create TextArea as input in a Shiny webapp in R?

I am trying to create simple webapp where I want to take in multiline input from user using HTML textarea control. Is there any out of the box way of creating such an input control in Shiny? Help ...
1
vote
1answer
223 views

Convert factor levels into lists for use in dynamic input in R Shiny

I'm trying to convert factor levels output into a list so I can create a dynamic input for a SelectInput function in R Shiny. Basically, I import a CSV file, and would like to create the drop-down ...
0
votes
2answers
353 views

Stop functions starting in shiny until button pressed

I have begun to create a web app using shiny where a user enters a search term and tweets containing that term are returned. When I load this app the searchTwitter function begins automatically and ...
1
vote
2answers
526 views

Interactive Web Dashboards in R

Can we create a interactive dashboard in R and send the html link to "Non" R user? If we can, can someone please let me know the process. I know package "shiny" helps in creating a interactive ...
1
vote
1answer
391 views

R/Shiny plots do not show in the browser

I started playing with Shiny recently. I was trying to write something to demonstrate central limit theorem. my code is as follows: ui.R: #****************************************ui.R file ...
2
votes
1answer
715 views

Shiny ui.R - Error in tag(“div”, list(…)) - not sure where error is

Update - 12/17/2012 9am CDT: example has been updated with demo data and full code. [/update]. Example Data: https://gist.github.com/4318774 Description: I've been playing around with the new Shiny ...
5
votes
1answer
520 views

How do I conditionally change the aspect ratio of charts in R's Shiny package?

Just playing with Shiny and loving it already. But how do I get charts in the reactivePlot / plotOutput combination to be of different sizes depending on which chart is plotted? In this first ...
6
votes
0answers
389 views

Use D3 and Shiny to implement `identify()` in R

I asked a question on how to plot dynamically according to user interactions, whose solution works quite well on my machine. Now I want to make an online version and host it with Shiny. I have tried ...
3
votes
1answer
563 views

Importing Data with Shiny and RStudio

Is it possible to load the data from within Shiny (such as a csv file) or does all relevant data need to be in the source code? I am interested in developing a Shiny App and distributing it, but the ...
5
votes
1answer
330 views

How can I pass data between functions in a Shiny app

I have a shiny app where server.r including the following code shinyServer(function(input, output) { data <- reactive(function() { # some processing df # dataframe with columns: ...
8
votes
2answers
893 views

How does the 'shiny' R package deal with data frames?

I am building a web app that downloads tweets using the 'twitteR' R package, munging those tweets and displaying them via a 'shiny' R web app. I have no problem executing the code that downloads and ...
5
votes
1answer
1k views

RStudio Shiny Conditional Plot

Im trying to create a web application with the new RStudio feature Shiny, which plots different stocks. I created the following example. I want to select the dataset StockMarket then select eg the ...
2
votes
1answer
616 views

An R Shiny issue - plotting multiple lines on one graph

Currently, my code initially lets the user select what dataset they want (A choice of two). Then based on what they choose, other plotting variables for the datasets' respective subsets appear. This ...
2
votes
1answer
786 views

R studio shiny conditional statements

I've been playing around with R shiny, and have a question. I want to create a multi-tab multi-dataset package. As the different datasets are not overly related, I want the user to be able to select ...