gpt4 book ai didi

python - Matplotlib Contour Clabel 位置

转载 作者:太空狗 更新时间:2023-10-29 17:05:58 24 4
gpt4 key购买 nike

我想控制 matplotlib clabels 在等高线图上的位置,但不使用 clabel 中的 manual=True 标志。例如,我想指定一个 x 坐标,并在通过这条线的点处创建标签。我看到您可以使用 get_position() 获取各个标签的位置,但我坚持这样做。任何帮助将不胜感激。谢谢!

最佳答案

是的,现在有一种方法可以控制标签位置! https://github.com/matplotlib/matplotlib/pull/642

plt.figure()
CS = plt.contour(X, Y, Z)
manual_locations = [(-1, -1.4), (-0.62, -0.7), (-2, 0.5), (1.7, 1.2), (2.0, 1.4), (2.4, 1.7)]
plt.clabel(CS, inline=1, fontsize=10, manual=manual_locations)

关于python - Matplotlib Contour Clabel 位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2791445/

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