2016-06-01 10 views
1

Diese Probe horizontale Balkendiagramm Gegeben:Matplotlib erhalten Koordinaten der Ober- und Unterseite des horizontalen Balkenkanten

""" 
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() 

Wie kann ich die y-Koordinaten der oberen Kante der oberen Leiste und der unteren Kante des Bodens erhalten bar (angenommen, das Balkendiagramm ist eigentlich eine Achse, so: ax.barh ...).

Vielen Dank im Voraus!

+1

'barh' eine Liste von' Rectangle' Künstler gibt, die Sie introspect können. – tacaswell

+0

Auch mit einer Achse konstruiert? –

Antwort

1

Jede Bar ist ein Rectangle-Objekt:

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) 

Ausgang:

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) 
+0

TypeError: 'AxesSublot' -Objekt ist nicht iterierbar (weil ich es mit einer Achse zeichne): gibt es eine Möglichkeit, dies mit einer Achse zu tun? –

Verwandte Themen