如何将闪亮的输入值转换为闪亮的输出 table
How to convert shiny input values into a shiny output table
我有一个闪亮的应用程序,它有很多输入值。我希望输入值易于阅读 and/or exportable 所以我想将它们放入 table 格式。
以前,我有 data.table(a=input$a,b=input$b,...)
但这不是一种非常有效的做事方式。
瞄准
在闪亮的 table 输出中呈现所有输入值,而无需手动编写每个输入变量
背景
闪亮的输入对象属于 str
:
List of 1
$ impl:Classes 'ReactiveValues', 'R6' <environment: 0xf798e60>
- attr(*, "readonly")= logi TRUE
- attr(*, "class")= chr "reactivevalues"
rbindlist
导致错误:Item 1 of list input is not a data.frame, data.table or list
- 同样地
as.data.frame
得到:cannot coerce class ""reactivevalues"" to a data.frame
- 然后我发现
ReactiveValuesToList()
文档说它像 as.list()
但对象不会转换到内部 rbindlist()
MWE
server <- function(input, output) {
output$distPlot <- renderPlot({
hist(rnorm(input$obs), col = 'darkgray', border = 'white')
})
# This is the bit I'm having trouble getting to work
output$inputvals<-renderTable({
as.data.frame(reactiveValuesToList(input))
})
}
ui <- shinyUI(fluidPage(
sidebarLayout(
sidebarPanel(
sliderInput("obs", "Number of observations:", min = 10, max = 500, value = 100)
),
mainPanel(plotOutput("distPlot"), tableOutput("inputvals"))
)
))
shinyApp(ui = ui, server = server)
要将 shiny 中的反应对象转换为 R 中的 "standard" 对象,请使用函数 shiny::reactiveValuesToList()
将 S6 class 更改为标准列表对象。
然后可以将其包装在 as.data.frame
中或类似于强制转换为 table。
我有一个闪亮的应用程序,它有很多输入值。我希望输入值易于阅读 and/or exportable 所以我想将它们放入 table 格式。
以前,我有 data.table(a=input$a,b=input$b,...)
但这不是一种非常有效的做事方式。
瞄准
在闪亮的 table 输出中呈现所有输入值,而无需手动编写每个输入变量
背景
闪亮的输入对象属于 str
:
List of 1
$ impl:Classes 'ReactiveValues', 'R6' <environment: 0xf798e60>
- attr(*, "readonly")= logi TRUE
- attr(*, "class")= chr "reactivevalues"
rbindlist
导致错误:Item 1 of list input is not a data.frame, data.table or list
- 同样地
as.data.frame
得到:cannot coerce class ""reactivevalues"" to a data.frame
- 然后我发现
ReactiveValuesToList()
文档说它像as.list()
但对象不会转换到内部rbindlist()
MWE
server <- function(input, output) {
output$distPlot <- renderPlot({
hist(rnorm(input$obs), col = 'darkgray', border = 'white')
})
# This is the bit I'm having trouble getting to work
output$inputvals<-renderTable({
as.data.frame(reactiveValuesToList(input))
})
}
ui <- shinyUI(fluidPage(
sidebarLayout(
sidebarPanel(
sliderInput("obs", "Number of observations:", min = 10, max = 500, value = 100)
),
mainPanel(plotOutput("distPlot"), tableOutput("inputvals"))
)
))
shinyApp(ui = ui, server = server)
要将 shiny 中的反应对象转换为 R 中的 "standard" 对象,请使用函数 shiny::reactiveValuesToList()
将 S6 class 更改为标准列表对象。
然后可以将其包装在 as.data.frame
中或类似于强制转换为 table。