如何为闪亮的应用程序制作列联表

时间:2015-06-24 23:22:04

标签: shiny rstudio contingency

如何在我的r studio闪亮应用程序中开发列联表。

1 个答案:

答案 0 :(得分:1)

您可以使用data.frame将其转换为as.data.frame.matrix,然后呈现为任何其他表:

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)))
        })
    })
)