tutorial style img examples español div r shiny

r - style - tags$img shiny



Establecer título/encabezado en Shiny Dashboard (1)

Quiero establecer el título de mi panel Shiny en algo razonable e informativo, pero no puedo hacerlo funcionar. Sé que tengo

tags$title("Dashboarding through the snow")

en mi ui.R (dentro del entorno ui.R si eso hace la diferencia) y esto da como resultado:

¿Cómo puedo eliminar la parte <title> y simplemente tener mi texto en el encabezado?


Puede establecer el título a través de:

ui <- dashboardPage(title="Browser tab title", dashboardHeader(title = "Dashboard title"), dashboardSidebar() )