我想将我的Shiny仪表板的标题设置为合理且内容丰富的内容,但我无法将其工作.我知道有
tags$title("Dashboarding through the snow")
Run Code Online (Sandbox Code Playgroud)
在我ui.R(在dashboardPage环境中,如果这有所作为),这导致:
如何删除<title>部件并在标题中显示我的文字?
您可以通过以下方式设置标题:
ui <- dashboardPage(title="Browser tab title",
dashboardHeader(title = "Dashboard title"),
dashboardSidebar()
)
Run Code Online (Sandbox Code Playgroud)