gpt4 book ai didi

r - 如何使用 sjPlot 在 R Shiny 中报告 html 表?

转载 作者:行者123 更新时间:2023-12-04 04:02:59 27 4
gpt4 key购买 nike

为什么我的代码不能成功运行?如何使用 sjPlot 创建一个 Shiny 的 html 表?

library(shiny)
library(sjPlot)

ui <- fluidPage(
sidebarLayout(
sidebarPanel(),
mainPanel(htmlOutput("a"))
)
)

server <- function(input, output){
output$a <- renderUI({
tab_df(iris,title="title",col.header='N',footnote='footnote')
})
}

# Run the application
shinyApp(ui = ui, server = server)
当我运行代码时,日志是“警告:如果错误:参数长度为零”。我不知道代码有什么问题。
谢谢。

最佳答案

问题是tab_df似乎将其 HTML 写入文件而不是返回您想要使用的 HTML。看着sjPlot:::print.sjTable ,似乎我们可以解决这个问题

server <- function(input, output){
output$a <- renderUI({
HTML(tab_df(iris,title="title",col.header='N',footnote='footnote')$knitr)
})
}

关于r - 如何使用 sjPlot 在 R Shiny 中报告 html 表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62806497/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com