В renderValueBox Вы пытаетесь установить подмножество data_table[['disp']][data_table$carb %in% input$carb & data_table$vs %in% input$vs]
Но input$carb == "All"
, поэтому ваше подмножество возвращает число с длиной 0.
Редактирование на основе вашего первого комментария.Я добавил функцию, которая возвращает уникальные значения для вектора ("cyl", "carb" и т. Д.).Мы можем использовать эту функцию для заполнения A selectInput и B для возврата длины уникальных значений, основанных на том, что выбрано.
library(shiny)
library(DT)
library(dplyr)
library(shinythemes)
library(htmlwidgets)
library(shinyWidgets)
library(shinydashboard)
#Input data
data_table<-mtcars
#Function returning all choices for given selector
ReturnChoices <- function(data, xSelector){
choices <- unique(data[[xSelector]])
return(choices)
}
#ui
ui = fluidPage(
sidebarLayout(
sidebarPanel (
uiOutput("vs_selector"),
uiOutput("carb_selector"),
uiOutput("disp_selector"),
uiOutput("cyl_selector"),
valueBoxOutput("count_disp"),
valueBoxOutput("count_cyl")),
mainPanel(
DT::dataTableOutput('mytable')
)
))
#server
server = function(input, output, session) {
output$vs_selector <- renderUI({
selectInput(inputId = "vs",
label = "vs:", multiple = TRUE,
choices = c( ReturnChoices(data_table, "vs")),
selected = c(0,1))
})
output$carb_selector <- renderUI({
selectInput(
inputId = "carb",
label = "carb:",
multiple = TRUE,
choices = c('All',as.character( ReturnChoices(data_table, "carb"))),
selected = 'All')
})
output$disp_selector <- renderUI({
selectInput(
inputId = "disp",
label = "disp:",
multiple = TRUE,
choices = c('All',as.character( ReturnChoices(data_table, "disp"))),
selected = c(160,108, 258, 360))
})
output$cyl_selector <- renderUI({
selectInput(
inputId = "cyl",
label = "cyl:",
multiple = TRUE,
choices = c('All',as.character( ReturnChoices(data_table, "cyl"))),
selected = 'All')
})
output$count_disp <- renderValueBox({
valueBox(
value = length( ReturnChoices(thedata(), "disp")) ,
subtitle = sprintf("Number of disp values" ))
})
output$count_cyl <- renderValueBox({
valueBox(
value = length( ReturnChoices(thedata(), "cyl")) ,
subtitle = sprintf("Number of cyl values" ))
})
thedata <- reactive({
req(input$disp, input$vs, input$carb, input$cyl)
if(! "All" %in% input$carb){
data_table<-data_table[data_table$carb %in% input$carb,]
}
if(! "All" %in% input$disp){
data_table<-data_table[data_table$disp %in% input$disp,]
}
if(! "All" %in% input$cyl){
data_table<-data_table[data_table$cyl %in% input$cyl,]
}
data_table<-data_table[data_table$vs %in% input$vs,]
data_table
})
output$mytable = DT::renderDataTable({
DT::datatable( {
thedata() # Call reactive thedata()
})
})
}
shinyApp(ui = ui, server = server)
и дайте мне знать, если это решит это для вас