Skip to main content
3 votes
1 answer
72 views

I have an app that uses a conditionalPanel that relies on a reactive value. Here's a basic example: library(shiny) ui <- fluidPage( fluidRow( actionButton("button1", label = "...
Joe's user avatar
  • 355
0 votes
1 answer
132 views

I am able to write a valid xpt file (that SAS can read) when I use the following code library(xportr) library(tibble) # Create an example data frame df_xp <- tibble( ID = c(1, 2, 3), Age = c(...
YBS's user avatar
  • 21.5k
2 votes
2 answers
88 views

This is a very pesky, annoying problem I've been wrestling with. I have 3 radio buttons in line, that I am trying to fit into a well panel which fits into a sidebar panel. Assuming we don't change the ...
Village.Idyot's user avatar
0 votes
0 answers
115 views

I'm struggling to find a solution to hosting a Shiny app on a shared drive. My company has extremely restrictive IT/security policies. I've been tasked with making a number of Shiny dashboards for ...
trout's user avatar
  • 1
1 vote
1 answer
146 views

I am creating a Shiny app with a login. For this I'm using the passwordInput function to let the user fill their password: library(shiny) ui <- fluidPage( passwordInput("password", &...
Quinten's user avatar
  • 42.9k
2 votes
1 answer
117 views

I am writing an R Shiny app and use CSS to format the buttons on the header and footer of the page. I am running into a sticky situation with the Upload button, where no matter how I configure, it ...
Phi Yen Nguyen's user avatar
Advice
0 votes
5 replies
97 views

I know I can retrieve all inputs as a list of reactives with reactiveValuesToList but how would I go about getting only those with a given suffix (e.g. *-filter)? I would need it to feed observeEvent, ...
umbe1987's user avatar
  • 3,698
0 votes
0 answers
60 views

Assuming following app: library(shiny) library(DTedit) # install via devtools::install_github('jbryer/DTedit') # outer module ui outer_ui <- function(id) { ns <- NS(id) # inner module ui ...
Roman's user avatar
  • 17.7k
Best practices
0 votes
6 replies
80 views

I am developing a Shiny app that allows to download logdata from a database. Users might not necessarily need the "raw" logdata but some kind of different "shape of data", e.g. ...
PsyR's user avatar
  • 35
1 vote
2 answers
104 views

I've collected longitude/latitude coordinates of roads in Hertfordshire. I want the user to enter a postcode in the app, and for the app to center the map on that postcode. The map has dots for each ...
Linda Anderson's user avatar
Advice
0 votes
3 replies
87 views

How do I know which reactive inputs from a list of inputs has changed and use only its values to perform some action? For instance, in this code, I'd like to update the input$test with either the ...
umbe1987's user avatar
  • 3,698
2 votes
1 answer
53 views

I'm trying to develop a shiny app that can be hosted on a website via the r-shinylive app. In this app, I want to have two tables. I would like the user would be allowed to select cells in the upper ...
Jeff Hoover's user avatar
2 votes
2 answers
58 views

I am trying to make a shinyapp that uses location and character data from a Google Sheet to generate a map. library(shiny) library(leaflet) library(tidyverse) library(googlesheets4) library(shinyjs) ...
Jacob_white's user avatar
1 vote
1 answer
87 views

I want to change the order of the drop down choices in the below code. Initially I thought the choices seem to respect the order for the df but I tested it and it is not correct. I have added an order ...
Walshe_d's user avatar
  • 207
2 votes
1 answer
112 views

I'm looking for a solution to better place action button and text in a Shiny application. library(shiny) library(shinydashboard) ui <- pageWithSidebar( headerPanel("renderImage example"...
Ochees's user avatar
  • 41

15 30 50 per page
1
2 3 4 5
1966