R ile Shiny Kullanarak Web Uygulamaları Geliştirme
Kaelen Medeiros
Data Scientist
Shiny, seçebileceğiniz çeşitli girdiler sunar.




selectInput("inputId",
"label",
choices = c("A", "B", "C"))
sliderInput("inputId",
"label",
value = 1925,
min = 1900,
max = 2000)
?dateRangeInput
help(checkboxInput)
ui <- fluidPage( textInput("name", "Bir ad girin:"), selectInput("animal", "Köpek mi kedi mi?", choices = c("dogs", "cats")), textOutput("greeting"), textOutput("answer") )server <- function(input, output, session) { output$greeting <- renderText({ paste("Köpekleri mi yoksa kedileri mi tercih ediyorsunuz,", input$name, "?") }) output$answer <- renderText({ paste("Ben", input$animal, "tercih ederim!") }) }
R ile Shiny Kullanarak Web Uygulamaları Geliştirme