2

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

有没有办法摆脱它?

另外,可以更改输出的字体吗?

4

1 回答 1

5

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

对于应用程序的样式,有几种方法可以做到这一点。你可以在这里阅读。在以下示例中,我将 css 直接包含在应用程序中。对于小型改编,这可能是最简单的方法,对于更复杂的应用程序,我会使用 css 文件并将其包含在includeCSS("www/style.css")ortags$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)
于 2018-06-10T13:20:54.167 回答