The parameters for the titlePanel function gets displayed as HTML title in R Shiny app. How to avoid this?
Asked
Active
Viewed 294 times
2 Answers
2
You can avoid it by defining a title
fluidPage(
title = "TITLE",
titlePanel(...

cuttlefish44
- 6,586
- 2
- 17
- 34
2
If I understood correctly, you want to put a PNG image in your title Panel. Then you must create a folder called "www" in your shinyapp directory. Moves your png image to this folder. Write this code instead of your titlePanel code:
titlePanel(HTML('<img src="Title.png"/ height="90" width="830" > '))

Mario M.
- 802
- 11
- 26