I want to use pycaret's plot_model
to save a plot image, however I don't want to display the plot. I'm looping through many figures and models and therefore displaying all the plots is resulting in a memory.
Ideally I'm looking for something like this, but I don't see any way to suppress the displaying of the plot:
plot_image = plot_model(plot='ts', return_fig=True, display_fig=False)
I tried setting verbose=False
but it didn't do anything