我正在生成一个交叉表输出(列联表)。我的要求是列百分比以及行和列总数。我发现这个包" sjPlot" ,它提供了非常好的颜色功能输出,满足了我的要求。我用这个包在Shiny中生成输出。但令我惊讶的是,输出仅在查看器窗格中生成,而不是在应用程序中生成。以下是我的代码的一小部分。
library("shiny")
library("sjPlot")
ui <- shinyUI(fluidPage(
tabPanel("First Page"),
mainPanel(tabsetPanel(id='mytabs',
tabPanel("Table",tags$b(tags$br("Table Summary" )),tags$br(),dataTableOutput("crosstab2"))
)
)
))
server <- shinyServer(function(input, output,session){
updateTabsetPanel(session = session
,inputId = 'myTabs')
output$crosstab2 <- renderDataTable({
with(mtcars,sjt.xtab(mpg, cyl,
var.labels = c("mpg","cyl"),
show.col.prc = T,
show.summary = F,
show.na = F,
wrap.labels = 50,
tdcol.col = "#f90477",
emph.total = T,
emph.color = "#3aaee0",
#use.viewer = T ##when this is false it generates a html output. Can we capture the html output and display in Shiny?
CSS = list(css.table = "border: 1px solid;",
css.tdata = "border: 1px solid;")))
})
print("created crosstab1")
})
shinyApp(ui = ui, server = server)
这会在查看器窗格中生成所需的输出。如何在应用程序中显示此输出。我无法将此输出保存为图像,因为在我的实际程序中,变量将被动态选择,并且表输出会相应地更改。
答案 0 :(得分:2)
sjt.xtab
无形地返回一个列表,其中包含用于生成您在查看器中看到的表的html和css。
您可以在ui端使用htmlOutput
,在服务器端使用renderUI
进行显示。
在ui.R
中,您可以使用:
htmlOutput("crosstab2")
在server.R
:
output$crosstab2 <- renderUI({
custom_table <- sjt.xtab(mtcars$mpg, mtcars$cyl,variableLabels = c("mpg","cyl"),showColPerc = T,
showSummary = F,showNA=F,highlightTotal = T,tdcol.col = "#f90477", highlightColor ="#3aaee0",
CSS = list(css.table = "border: 1px solid;",
css.tdata = "border: 1px solid;"))
HTML(custom_table$knitr)
})
这是我sessionInfo()
R version 3.1.2 (2014-10-31)
Platform: x86_64-apple-darwin13.4.0 (64-bit)
locale:
[1] en_GB.UTF-8/en_GB.UTF-8/en_GB.UTF-8/C/en_GB.UTF-8/en_GB.UTF-8
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] sjPlot_1.9.2 shiny_0.13.1
我怀疑我们没有相同版本的sjPlot
,因为您在示例中使用的sjt.xtab
的参数已更改名称。