ui <- fluidPage(
# Application title
titlePanel("Old Faithful Geyser Data"),
# Sidebar with a slider input for number of bins
sidebarLayout(
sidebarPanel(
sliderInput("bins",
"Number of bins:",
min = 1,
max = 50,
value = 30),
selectizeInput("bla1", "muh", choices = faithful$waiting, multiple = TRUE),
htmlOutput("bla2")
),
# Show a plot of the generated distribution
mainPanel(
plotOutput("distPlot")
)
)
)
# Define server logic required to draw a histogram
server <- function(input, output) {
output$bla2 <- renderUI({
## filter choices to anything NOT selected by bla1
choices <- faithful$waiting[!faithful$waiting %in% input$bla1]
selected <- input$bla2
selectizeInput("bla2", "muh2", choices = choices, multiple = TRUE, selected = selected)
})
output$distPlot <- renderPlot({
# generate bins based on input$bins from ui.R
x <- faithful[, 2]
bins <- seq(min(x), max(x), length.out = input$bins + 1)
# draw the histogram with the specified number of bins
hist(x, breaks = bins, col = 'darkgray', border = 'white')
})
}
# Run the application
shinyApp(ui = ui, server = server)
Этот код был размещен парнем, и это лучшее решение.Единственное, что, когда я нажимаю «input $ bla2», я теряю фокус на поле при вводе значения.Вероятно потому, что он рендерит снова каждый раз.У кого-нибудь есть идеи, как преодолеть эту проблему?