我是Shiny的新手。我想知道如何将单选按钮与numericInput结合起来?我的目标是这样的。提前谢谢。
实际上我不知道如何将单选按钮与numericInput结合使用。所以到目前为止我只有一个带单选按钮的简单示例。
library(shiny)
ui <- shinyUI(fluidPage(
tags$h4("Select Method for Testing"),
radioButtons('testing', '',
c("Fraction of cases selected at random",
"K-fold cross-validation"))
))
server<-function(input, output,session) {
}
shinyApp(ui = ui, server = server)