Add input (UI)
This app will allow users to enter a baby name and visualize the popularity of that name over time.
The first step is to add a text input to the UI that will allow a user to enter their (or any other) name. Try using the optional default argument this time around.
The shiny package is pre-loaded for you.
यह अभ्यास पाठ्यक्रम का हिस्सा है
Building Web Applications with Shiny in R
अभ्यास निर्देश
- Add a text input to the UI, with the
inputId,'name'. Pass it a label (e.g. 'Enter your Name'), and an appropriate default value (e.g. 'David').
इंटरैक्टिव व्यावहारिक अभ्यास
इस अभ्यास को इस नमूना कोड को पूरा करके आज़माएँ।
ui <- fluidPage(
# CODE BELOW: Add a text input "name"
)
server <- function(input, output, session) {
}
shinyApp(ui = ui, server = server)