matplotlib中的plot_importance画图大小控制

今天用plot_importance画图的时候,发现用matplotlib的正常设置图大小的方法无效,找遍网上也很少有办法,最后看别人代码终于找到解决办法。


fig,ax = plt.subplots(figsize=(15,15))
plot_importance(model,
                height=0.5,
                ax=ax,
                max_num_features=64)
plt.show()

 

你可能感兴趣的:(机器学习)