1

我在 pycaret 中进行回归分析,并绘制了残差和错误。

# create a model
bgr = create_model('gbr')

# residuals plot
plot_model(gbr, plot = 'residuals')

# errors plot
plot_model(gbr, plot = 'error')

有没有办法可以并排绘制这两个图?

4

1 回答 1

0

试试plt.subplots()。见这里:https ://matplotlib.org/stable/gallery/subplots_axes_and_figures/subplots_demo.html

于 2021-06-16T13:14:26.130 回答