Questions tagged [shiny]
Shiny is an R package that makes it easy to build interactive web applications using only R.
26,152
questions
0
votes
0
answers
17
views
Filtering using If Function in R Shiny
I wanted to add a two-layer filter using the if function, because I find that I wasn't able to do much of the table manipulations (i.e. adding an additional aggregation row to have the calculation ...
0
votes
1
answer
16
views
withSpinner with div in Shiny
So far I successfully made a Shiny dashboard that makes a user select from the first dropdown and a second dropdown dependent on the first. Functionality-wise everything works well except for the UI ...
-1
votes
0
answers
10
views
How to increase the size of everything in the window below in R shiny? Ctrl + isn't working [closed]
Viewing issue after running R shiny codes
Please help on how to increase the viewing size
0
votes
0
answers
15
views
How to create multiple infoBox with modal dialog when onclick on it?
I am doing a loop of infoBox with each field that I have in a datatable (7).
This loop is working but now I'm struggling to display in a modalDialog the datatable linked to this field when in click on ...
2
votes
0
answers
35
views
how to download datatable from Rshiny/web?
Is there any way to download this table/data from this webpage? It is RShiny
https://hstracker.wto.org/#
0
votes
0
answers
20
views
How do I add filter to the rshiny dashboard using R? [closed]
I am trying to build a dashboard and looking to add filter so that data gets filter using that filter and all the charts changes as filter changes.
How do I achieve this using R?
1
vote
1
answer
17
views
R Shiny Leaflet addLegend() Specify label order
Given the following example data
mydata <- data.frame(
lat = c(21.05939, 21.04305, 21.05977, 21.04336, 21.04434),
lng = c(92.22692 ,92.23357 ,92.22733 ,92.23361 ,92.23478),
X1 = c("...
1
vote
0
answers
33
views
Shiny App Error: Aesthetics must be either length 1 or the same as the data (1): x
I'm teaching myself r and i'm trying to create a shiny app on NBA data and i'm asking for the name of player and the statistic for the inputs.
textInput("name", "Name", value = &...
0
votes
0
answers
27
views
Running shiny app through nginx and letsencrypt ssl using docker
I would like to run my app (myapp) on my domain (www.myapp.com) through nginx reverse proxy and letsencrypt ssl using docker. Everything looks right, but I can't see my app running on my domain.
If I ...
2
votes
1
answer
38
views
Grocery List in Shiny
I'm just trying to make my life easier and make a shiny app where I can select certain recipes I always make. My recipes are stored as objects (ChickenPotPie) and these objects are character lists of ...
1
vote
0
answers
35
views
How can I print tops (print[:]) according user preference with slide bar?
How can i run a r shiny app, which print the top features based on user's choice?
I tried the following but I want the user to select, not putting it manually the top 3 for example
library(KEGGgraph)
...
0
votes
1
answer
32
views
Shiny app modules: How to pass variables defined in the Server as arguments of functions in the UI?
i am using R6 to pass variables across and along the main server and server modules, following Jiwan Heo's approach as described in his article.
Using a simplified example (without graph to minimise ...
0
votes
0
answers
30
views
Running a shell/ bash script in Shiny that continues excution after the app is stopped
I am creating a shiny app that executes a time-consuming bash script pipeline upon clicking an action button using the system command in an observeEvent function for the action button. However, when I ...
0
votes
1
answer
21
views
Shiny conditionalPanel() seemingly evaluating incorrectly. How to make UI hide something based on server-side logic?
I'm trying to make a simple app that hides information until a user is logged ind:
library(shiny)
library(glue)
library(tidyverse)
server <- function(input, output, session) {
#check login
...
0
votes
0
answers
20
views
How to save and retrieve hierarchy trees built using jsTreeR?
jsTreeR is proving to be a fantastic package for my R needs. I've tried searching for this functionality with no luck yet. Are there any examples out there of how to save and retrieve a hierarchy tree ...