1

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

4

1 回答 1

1

您可以将其转换为data.frameusingas.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)))
        })
    })
)
于 2015-06-24T23:55:02.387 回答