gpt4 book ai didi

matplotlib - 从 GeoPandas 图中重新定位图例

转载 作者:行者123 更新时间:2023-12-02 10:20:10 24 4
gpt4 key购买 nike

我正在使用 GeoPandas 绘图功能绘制带有图例的 map 。当我绘图时,我的图例出现在图的右上角。它是这样的: enter image description here

我想将图例移到图表的下部。我通常会为正常的 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')

但是,不考虑此修改。

最佳答案

这可以使用 legend_kwds 参数来完成:

df.plot(column='values', legend=True, legend_kwds={'loc': 'lower right'});

关于matplotlib - 从 GeoPandas 图中重新定位图例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39816790/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com