我正在使用 GeoPandas 绘图功能绘制带有图例的地图。当我绘图时,我的图例出现在图形的右上角。这是它的样子:
我想将图例移动到图表的下部。我通常会为普通的 matplotlib 图做这样的事情:
fig, ax = plt.subplots(1, figsize=(4.5,10))
lima_bank_num.plot(ax=ax, column='quant_cuts', cmap='Blues', alpha=1, legend=True)
ax.legend(loc='lower left')
但是,不考虑这种修改。