gpt4 book ai didi

ShinyApp 中的 renderPrint 选项

转载 作者:行者123 更新时间:2023-12-02 00:33:31 25 4
gpt4 key购买 nike

我在 ShinyApp 中使用 renderPrint 函数来显示计算结果。结果前面带有 [1],[2] 等。

有没有办法摆脱它?

此外,是否可以更改输出的字体?

最佳答案

您可以使用 renderText 而不是 renderPrint。或者也许 withMathJax()也可以是一种选择?

要为您的应用设计样式,有多种方法可以实现。你可以读到那个 here .在以下示例中,我将 css 直接包含在应用程序中。对于小型改编,这可能是最简单的方法,对于更复杂的应用程序,我会使用一个 css 文件并将其包含在 includeCSS("www/style.css")tags$head(tags $style("www/style.css")).

library(shiny)

ui <- fluidPage(
tags$head(
tags$style(HTML("
#renderprint {
color: white;
background: blue;
font-family: 'Times New Roman', Times, serif;
font-size: 20px;
font-style: italic;
}
#rendertext {
color: blue;
background: orange;
font-family: 'Times New Roman', Times, serif;
font-size: 12px;
font-weight: bold;
}
#rendertext1 {
color: red;
background: yellow;
font-family: Arial, Helvetica, sans-serif;
font-size: 19px;
}
"))
),

verbatimTextOutput("renderprint"),

verbatimTextOutput("rendertext"),
textOutput("rendertext1")
)

server <- function(input, output, session) {
output$renderprint <- renderPrint({
print("This is a render Print output")
})
output$rendertext <- renderText({
"This is a render Text output - with verbatimTextOutput"
})
output$rendertext1 <- renderText({
"This is a render Text output - with textOutput"
})
}

shinyApp(ui, server)

关于ShinyApp 中的 renderPrint 选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50781653/

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