我在 pycaret 中进行回归分析,并绘制了残差和错误。
# create a model
bgr = create_model('gbr')
# residuals plot
plot_model(gbr, plot = 'residuals')
# errors plot
plot_model(gbr, plot = 'error')
有没有办法可以并排绘制这两个图?
试试plt.subplots()
。见这里:https ://matplotlib.org/stable/gallery/subplots_axes_and_figures/subplots_demo.html