http://matplotlib.sourceforge.net/examples/api/histogram_path_demo.htmlこのmatplotlibコードでパスについて理解できますか?
私は上記のコードを見ています。コードの下半分は何を意味しますか:
# we need a (numrects x numsides x 2) numpy array for the path helper
# function to build a compound path
XY = np.array([[left,left,right,right], [bottom,top,top,bottom]]).T
最後に「.T」があるのはなぜですか?コンパウンドパスとは何ですか?
# get the Path object
barpath = path.Path.make_compound_path_from_polys(XY)
私はパスオブジェクトが何であるかを理解していない、誰かがそれを説明するか、チュートリアルのいくつかの並べ替えに私を指すことができますか?