gpt4 book ai didi

r - Shiny 应用程序中titlePanel中的斜体字体

转载 作者:行者123 更新时间:2023-12-04 12:06:37 24 4
gpt4 key购买 nike

有没有办法在我的 shiny 中获得斜体字? titlePanel ?

我试过了

library(shiny)

# Define UI for application that draws a histogram
ui <- shinyUI(fluidPage(

# Application title
titlePanel("Old <em>Faithful Geyser</em> Data"),

# Sidebar with a slider input for number of bins
sidebarLayout(
sidebarPanel(
sliderInput("bins",
"Number of bins:",
min = 1,
max = 50,
value = 30)
),

# Show a plot of the generated distribution
mainPanel(
plotOutput("distPlot")
)
)
))

# Define server logic required to draw a histogram
server <- shinyServer(function(input, output) {

output$distPlot <- renderPlot({
# generate bins based on input$bins from ui.R
x <- faithful[, 2]
bins <- seq(min(x), max(x), length.out = input$bins + 1)

# draw the histogram with the specified number of bins
hist(x, breaks = bins, col = 'darkgray', border = 'white')
})
})

# Run the application
shinyApp(ui = ui, server = server)

这会将标题打印为 Old <em>Faithful Geyser</em> Data . em不会被解释。我做错了什么还是没有办法在标题中获得斜体字体?

最佳答案

你好试试这个它应该工作

titlePanel( div(HTML("Old <em>Faithful Geyser</em> Data")))

关于r - Shiny 应用程序中titlePanel中的斜体字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38119148/

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