Displaying a Plot without using Server

Hello,

I have a plot that uses static data defined before the UI or Server functions of my RShiny app. I would like to display the plot within the UI of my app, but I don't need it to be dynamic at all. In other words, if possible, I'd like to avoid going through the server function and avoid needing to use renderPlot within the server. I'd prefer for the plot to be readily rendered once my app is deployed and not have to load every instance of a session. I hope I am using the correct terms above.

Am I able to do this somehow?

You could save the plot as an image and show the image in the UI. However, are you aware of shiny's caching capabilities?

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.