gpt4 book ai didi

r - 如何在 R shiny 中将下标或上标添加到 renderText

转载 作者:行者123 更新时间:2023-12-05 05:07:50 26 4
gpt4 key购买 nike

有没有办法将 html 文本格式(例如上标或下标)添加到 renderText() 的输出。似乎 html 标签在这种情况下不起作用。

最小的例子:

library(shiny)

ui <- fluidPage(
titlePanel("Subscript test"),
mainPanel(textOutput("test"))
)

server <- function(input, output) {
output$test <- renderText("CO<sub>2</sub>")
}

shinyApp(ui = ui, server = server)

最佳答案

您的代码只需要将 ui 部分中的 textOutput() 更改为 htmlOutput()。后一个函数专门设计用于返回一个 react 变量作为 HTML 输出,这允许使用 HTML 标签等。

更多信息在这里:https://shiny.rstudio.com/reference/shiny/0.11.1/htmlOutput.html

关于r - 如何在 R shiny 中将下标或上标添加到 renderText,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58793316/

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