gpt4 book ai didi

plot - 自定义图例标签 - geopandas.plot()

转载 作者:行者123 更新时间:2023-12-04 16:44:56 30 4
gpt4 key购买 nike

我和一位同事一直在尝试设置自定义图例标签,但到目前为止都失败了。下面的代码和详细信息 - 非常感谢任何想法!

笔记本:toy example uploaded here

目标:将图例中使用的默认比率值更改为相应的百分比值

问题:无法弄清楚如何访问图例对象或通过 legend_kwdsgeopandas.GeoDataFrame.plot()
数据:KCMO metro area counties

玩具示例摘录

第一步:读取数据

# imports
import geopandas as gpd
import matplotlib.pyplot as plt
%matplotlib inline
# read data
gdf = gpd.read_file('kcmo_counties.geojson')

选项 1 - 从 ax 获取图例如 suggested here :
ax = gdf.plot('val', legend=True)
leg = ax.get_legend()
print('legend object type: ' + str(type(leg))) # <class NoneType>
plt.show()

选项 2:通过 legend_kwds字典 - 我认为我在这里做错了(显然没有完全理解底层细节),但是 _doc_来自 Geopandas's plotting.py - 对于其中 GeoDataFrame.plot() is simply a wrapper - 似乎没有通过...
# create number of tick marks in legend and set location to display them
import numpy as np
numpoints = 5
leg_ticks = np.linspace(-1,1,numpoints)

# create labels based on number of tickmarks
leg_min = gdf['val'].min()
leg_max = gdf['val'].max()
leg_tick_labels = [str(round(x*100,1))+'%' for x in np.linspace(leg_min,leg_max,numpoints)]
leg_kwds_dict = {'numpoints': numpoints, 'labels': leg_tick_labels}

# error "Unknown property legend_kwds" when attempting it:
f, ax = plt.subplots(1, figsize=(6,6))
gdf.plot('val', legend=True, ax=ax, legend_kwds=leg_kwds_dict)

更新
刚刚遇到 this conversation关于添加 legend_kwds - 还有这个 bug?其中明确指出 legend_kwds不在最新版本的 GeoPandas (v0.3.0) 中。据推测,这意味着我们需要从 GitHub master 进行编译。源而不是使用 pip/conda 安装...

最佳答案

我自己刚刚遇到这个问题。按照指向 Geopandas 源代码的链接后,颜色条似乎被添加为图形的第二个轴。所以你必须做这样的事情来访问颜色条标签(假设你已经用 legend=True 绘制了叶绿体):

# Get colourbar from second axis
colourbar = ax.get_figure().get_axes()[1]

完成此操作后,您可以像这样操作标签:
# Get numerical values of yticks, assuming a linear range between vmin and vmax:
yticks = np.interp(colourbar.get_yticks(), [0,1], [vmin, vmax])

# Apply some function f to each tick, where f can be your percentage conversion
colourbar.set_yticklabels(['{0:.2f}%'.format(ytick*100) for ytick in yticks])

关于plot - 自定义图例标签 - geopandas.plot(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50435713/

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