如何为闪亮的应用程序制作应急 table
How to make a contingency table for a shiny application
如何在我的 r studio shiny 应用程序中开发应急措施 table。
您可以使用 as.data.frame.matrix
将其转换为 data.frame
,然后像其他任何内容一样渲染 table:
library(shiny)
shinyApp(
ui=shinyUI(bootstrapPage(
tableOutput('foo')
)),
server=shinyServer(function(input, output, session) {
output$foo <- renderTable({
as.data.frame.matrix(table(c(1, 1, 1, 2, 3), c(2, 2, 3, 4, 3)))
})
})
)
如何在我的 r studio shiny 应用程序中开发应急措施 table。
您可以使用 as.data.frame.matrix
将其转换为 data.frame
,然后像其他任何内容一样渲染 table:
library(shiny)
shinyApp(
ui=shinyUI(bootstrapPage(
tableOutput('foo')
)),
server=shinyServer(function(input, output, session) {
output$foo <- renderTable({
as.data.frame.matrix(table(c(1, 1, 1, 2, 3), c(2, 2, 3, 4, 3)))
})
})
)