gpt4 book ai didi

python - 如何在 Python 中更改等值线图图例的文本?

转载 作者:太空宇宙 更新时间:2023-11-03 11:48:25 33 4
gpt4 key购买 nike

我使用以下代码得到一张等值线图:

%matplotlib inline

import seaborn as sns
import pandas as pd
import pysal as ps
import geopandas as gpd
import numpy as np
import matplotlib.pyplot as pet

imd_shp = 'desktop/sgfwu/E07000222_IMD/shapefiles/E07000222.shp'
imd = gpd.read_file(imd_shp)
imd = imd.set_index('LSOA11CD')
imd.plot(column='imd_score', scheme='fisher_jenks', alpha=0.8, k=7,
colormap=plt.cm.Blues, legend=True, axes=ax1)

结果是:

enter image description here

但是我怎样才能将图例的文本改为如下图所示的文字,而不是数字呢?

enter image description here

最佳答案

这个问题已经在这里有一段时间了,但我也遇到了同样的问题。这为我解决了:

leg = ax1.get_legend()
leg.get_texts()[0].set_text('New label 1')
leg.get_texts()[1].set_text('New label 2')

依此类推,可以更改任意数量的标签。

关于python - 如何在 Python 中更改等值线图图例的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33762891/

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