gpt4 book ai didi

r - Shiny 面板中的 latex 配方

转载 作者:行者123 更新时间:2023-12-04 01:11:18 28 4
gpt4 key购买 nike

我想在 Shiny 面板中显示 -LaTeX 格式的公式,但我找不到组合 textOutput 的方法与 withMathJax .我尝试了以下但没有奏效。任何帮助将不胜感激。

--ui.r

...
tabPanel("Diagnostics", h4(textOutput("diagTitle")),
withMathJax(textOutput("formula")),
),
...

--server.r
...
output$formula <- renderText({
print(paste0("Use this formula: $$\\hat{A}_{\\small{\\textrm{M€}}} =", my_calculated_value,"$$"))
})
...

最佳答案

使用 uiOutput在 UI 方面和 renderUI在服务器端获取动态内容。

ui <- fluidPage(
withMathJax(),
tabPanel(
title = "Diagnostics",
h4(textOutput("diagTitle")),
uiOutput("formula")
)
)

server <- function(input, output, session){
output$formula <- renderUI({
my_calculated_value <- 5
withMathJax(paste0("Use this formula: $$\\hat{A}_{\\small{\\textrm{M€}}} =", my_calculated_value,"$$"))
})
}

shinyApp(ui, server)

更多示例: http://shiny.leg.ufpr.br/daniel/019-mathjax/

关于r - Shiny 面板中的 latex 配方,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30169101/

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