Adding text description at the bottom/top of the plot in tab panel in R shiny

I would like to add text note (3-4 sentences) at the bottom/top of the plots in the tab panels in R shiny providing brief description of the plots. How could I do this in R shiny?

It depends on how your ui is set up - for example, if you're using fluidPage, you could add a new fluidRow below the content area for your plot, and place your explanatory text inside it.

If you've made an attempt that isn't quite working, you may consider creating a shiny reprex (reproducible example) - this is a minimal working example that will allow us all to look at the same code and data, which will help you get more targeted help for your question. Please see the FAQ for shiny debugging and reprexes for a good guide!

1 Like