我想将我的Shiny仪表板的标题设置为合理且内容丰富的内容,但我无法使其正常工作。我知道有
tags$title("Dashboarding through the snow")
在我的ui.R
(dashboardPage
环境中,如果这有所不同),结果如下:
如何删除<title>
部分并在标题中显示我的文字?
答案 0 :(得分:8)
您可以通过以下方式设置标题:
ui <- dashboardPage(title="Browser tab title",
dashboardHeader(title = "Dashboard title"),
dashboardSidebar()
)