是否可以在一个闪亮的应用程序中使用{gtsummary}呈现一个表?
library(gtsummary)
# make dataset with a few variables to summarize
iris2 <- iris %>% select(Sepal.Length, Sepal.Width, Species)
# summarize the data with our package
table1 <- tbl_summary(iris2)
table1在一个闪亮的应用中:->
shinyApp(
ui = fluidPage(
fluidRow(
column(12,
tableOutput('table')
)
)
),
server = function(input, output) {
output$table <- renderTable(table1)
}) 谢谢。
发布于 2020-10-05 00:42:53
也许这就是你要找的。要在闪亮的应用程序中呈现gt表,您必须使用gt::gt_output和gt::render_gt。要使其适用于gtsummary表,必须通过as_gt()将其转换为gt表
library(shiny)
library(gtsummary)
library(gt)
# make dataset with a few variables to summarize
iris2 <- iris %>% select(Sepal.Length, Sepal.Width, Species)
# summarize the data with our package
table1 <- tbl_summary(iris2) %>% as_gt()
table1
shinyApp(
ui = fluidPage(
fluidRow(
column(12,
gt_output('table')
)
)
),
server = function(input, output) {
output$table <- render_gt(table1)
}) https://stackoverflow.com/questions/64197029
复制相似问题