Matplotlib 获取水平条边缘顶部和底部的坐标

2024-02-11

鉴于此示例水平条形图:

"""
Simple demo of a horizontal bar chart.
"""
import matplotlib.pyplot as plt
plt.rcdefaults()
import numpy as np
import matplotlib.pyplot as plt


# Example data
people = ('Tom', 'Dick', 'Harry', 'Slim', 'Jim')
y_pos = np.arange(len(people))
performance = 3 + 10 * np.random.rand(len(people))
error = np.random.rand(len(people))

plt.barh(y_pos, performance, xerr=error, align='center', alpha=0.4)
plt.yticks(y_pos, people)
plt.xlabel('Performance')
plt.title('How fast do you want to go today?')

plt.show()

如何获取顶部栏的顶部边缘和底部栏的底部边缘的 y 坐标(假设条形图实际上是一个轴,如下所示:ax.barh ...)。

提前致谢!


每个条形都是一个 Rectangle 对象:

br = plt.barh(y_pos, performance, xerr=error, align='center', alpha=0.4)
for b in br:
    print b
    w,h = b.get_width(), b.get_height()
    # lower left vertex
    x0, y0 = b.xy
    # lower right vertex
    x1, y1 = x0+w,y0
    # top left vertex
    x2, y2 = x0,y0+h
    # top right vertex
    x3, y3 = x0+w,y0+h
    print (x0,y0), (x1,y1), (x2,y2), (x3,y3)

Output:

Rectangle(0,-0.4;10.9438x0.8)
(0.0, -0.4) (10.943792845675922, -0.4) (0.0, 0.4) (10.943792845675922, 0.4)
Rectangle(0,0.6;3.87667x0.8)
(0.0, 0.6) (3.8766706874993693, 0.6) (0.0, 1.4) (3.8766706874993693, 1.4)
Rectangle(0,1.6;6.13112x0.8)
(0.0, 1.6) (6.131123295324526, 1.6) (0.0, 2.4000000000000004) (6.131123295324526, 2.4000000000000004)
Rectangle(0,2.6;10.875x0.8)
(0.0, 2.6) (10.875021819863152, 2.6) (0.0, 3.4000000000000004) (10.875021819863152, 3.4000000000000004)
Rectangle(0,3.6;10.9706x0.8)
(0.0, 3.6) (10.970580117194409, 3.6) (0.0, 4.4) (10.970580117194409, 4.4)
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

Matplotlib 获取水平条边缘顶部和底部的坐标 的相关文章

随机推荐