如何在我的r studio闪亮应用程序中开发列联表。
答案 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)))
})
})
)