Hi all I was using the widget selectInput for more than 60000 values. but it is taking more than 4-5 mins to load. How to reduce this loading time on selectInput. My code is here
library(shiny)
library(ggplot2)
library(ggcorrplot)
data<-read.delim("Analysis.txt",sep = ",",header = T)
ui <- fluidPage(
sidebarLayout(
sidebarPanel(
conditionalPanel(
'input.dataset === "Analysis"',
helpText("Kindly enter the product name"),
selectInput("show_vars3", 'Options', choices=data$Proc_Name, multiple=TRUE, selectize=TRUE),
helpText("Kindly enter the price name"),
selectInput("show_vars4", 'Options', names(data), multiple=TRUE, selectize=TRUE),
)
),
mainPanel(
tabsetPanel(
tabPanel("Analysis",plotOutput("plot7", width = 1000, height = 600),plotOutput("plot8", width = 1000, height = 600), brush = "user_brush"),
))
Thanks for the help