gpt4 book ai didi

python - 在 matplotlib.pyplot.figtext 中对齐列

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

(towns_n和Towns是两个数组,每个数组分别有50个数字和名称)

count = 0 
for number,town in zip(towns_n,Towns):
textString += (number +'.'+ town).ljust(35)
count += 1
if count == 6:
count = 0
textString += '\n'
plt.figtext(0.13,0.078,textString)

我的问题是我想绘制 6 列。

如果我打印我的字符串,它看起来完全符合预期,它看起来像 6 个对齐的列。但如果我将它沿着我的其他图像绘制,它看起来根本不对齐。
我认为这并不重要,但我的另一幅图像是使用 basemap 的 map 。我正在我的 map 下方绘制该字符串。

What I am getting

编辑:您可以尝试生成 50 个随机字符串和数字,这样您就不需要实际的城镇列表。

def id_generator(size=6, chars=string.ascii_uppercase + string.digits):
return ''.join(random.choice(chars) for _ in range(size))

Towns=[]
towns_n=[]

for i in range(50):
string = id_generator()
Towns.append(string);
towns_n.append(str(i))

最佳答案

正如评论中所述,一种解决方案是使用 monospaced font .

plt.figtext(..., fontname="DejaVu Sans Mono")

示例:

import random
import string
import matplotlib.pyplot as plt

def id_generator(size=6, chars=string.ascii_uppercase + string.digits):
return ''.join(random.choice(chars) for _ in range(size))

Towns=[]
towns_n=[]

for i in range(50):
string = id_generator()
Towns.append(string);
towns_n.append(str(i))


count = 0
textString =""
for number,town in zip(towns_n,Towns):
textString += (number +'.'+ town).ljust(12)
count += 1
if count == 6:
count = 0
textString += '\n'

fig = plt.figure()
fig.add_subplot(111)
fig.subplots_adjust(bottom=0.5)
plt.figtext(0.05,0.078,textString, fontname="DejaVu Sans Mono")

plt.show()

enter image description here

另一个选项是单独创建每一列:

import random
import string
import matplotlib.pyplot as plt

def id_generator(size=6, chars=string.ascii_uppercase + string.digits):
return ''.join(random.choice(chars) for _ in range(size))

Towns=[]
towns_n=[]

for i in range(50):
string = id_generator()
Towns.append(string);
towns_n.append(str(i))


fig = plt.figure()
fig.add_subplot(111)
fig.subplots_adjust(bottom=0.5)

space = 0.05
left = 0.05
width= 0.15
for i in range(6):
t = [towns_n[i::6][j] + ". " + Towns[i::6][j] for j in range(len(towns_n[i::6]))]
t = "\n".join(t)
plt.figtext(left+i*width,0.35,t, va="top", ha="left")

plt.show()

enter image description here

关于python - 在 matplotlib.pyplot.figtext 中对齐列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47086205/

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