Model_plot in pycaret

when use the model_plot of pycaret , the picture will be show on another web ,how to show it on the web made by streamlit ?

You may use the display_format='streamlit' when plotting.

For example:

experiment.plot_model(base_model, plot=‘residuals’,
display_format=‘streamlit’)

1 Like