- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 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/
我在 ShinyApp 中使用 renderPrint 函数来显示计算结果。结果前面带有 [1],[2] 等。 有没有办法摆脱它? 此外,是否可以更改输出的字体? 最佳答案 您可以使用 renderT
我在 ShinyApp 中使用 renderPrint 函数来显示计算结果。结果前面带有 [1],[2] 等。 有没有办法摆脱它? 此外,是否可以更改输出的字体? 最佳答案 您可以使用 renderT
我有以下 Shiny-Rmarkdown 应用: --- title: "My First Shiny" runtime: shiny output: flexdashboard::flex_da
希望有人能帮我解决这个问题。 假设有一个函数“example”,它类似于 ##function from a package example<-function(f){ #does
我正在用 R 开发一个 Shiny 的应用程序。对于某些 renderPrint 输出,我希望 Shiny 的用户界面不显示任何内容。有点像下面显示的 HTML5 示例中 pre 或 div 标签的隐
我是一名优秀的程序员,十分优秀!