Можем ли мы создать вектор / список входных данных, полученных из глянца?Я хотел бы создать вектор строки, в котором все действия, предпринятые с помощью ввода, хранятся в году.
require(shiny)
runApp(list(ui = pageWithSidebar(
headerPanel("censusVis"),
sidebarPanel(
helpText("Create demographic maps with
information from the 2010 US Census."),
selectInput("var",
label = "Choose a variable to display",
choices = c("Percent White", "Percent Black",
"Percent Hispanic", "Percent Asian"),
selected = "Percent White"),
sliderInput("range",
label = "Range of interest:",
min = 0, max = 100, value = c(0, 100))
),
mainPanel(htmlOutput("text")
)
),
server = function(input, output) {
output$text <- renderUI({
str1 <- paste("You have selected", input$var)
})
}
)
)
Хотелось бы видеть динамический выход как (если быть точным, это может быть n номеров выходов ...)
[1] You have selected Percent White
[2] You have selected Percent Asian
[3] You have selected Percent Black