gpt4 book ai didi

r Shiny 的文本输出和段落在同一行

转载 作者:行者123 更新时间:2023-12-03 16:44:14 24 4
gpt4 key购买 nike

我想放一个 renderText textOutput 形式的元素在标题旁边,但它一直将它们放在不同的行上。

h1('This is the number:'), textOutput(output$number)

这也不起作用:

p(h1('This is the number:'), textOutput(output$number))

有人有任何解决方法吗?

最佳答案

你可以用css来做

ui=shinyUI(fluidPage(
tags$head(tags$style("
#number{
display:inline
}")),
h1('This is the number:',style="display:inline"), textOutput("number")
)

)

server=function(input,output){
output$number=renderText({5})
}

shinyApp(ui,server)

或者
ui=shinyUI(fluidPage(
tags$head(tags$style("
#container * {
display: inline;
}")),
div(id="container",h1('This is the number:'), textOutput("number"))
)

)

关于r Shiny 的文本输出和段落在同一行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39250200/

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