ui =fluidPage(sidebarLayout(sidebarPanel(selectInput(inputId ="dataset",label ="Choose a dataset:",choices =list("rock"=1, "pressure"=2,"cars"=3,"I want to use my data!!"=4)), # Let me introduce you Mr. Conditional PanelconditionalPanel(condition ="input.dataset == '4'", # What is the condition for which I should show up?# What should be displayed inside me once I show up?fileInput("example", # label for the server"", # no displayed label for usersaccept =c("csv")) # what format do we accept? ),actionButton("load", "Upload data") ),mainPanel(plotOutput("graph" ),verbatimTextOutput("summary" ) ) # display output ))