web-dev-qa-db-ja.com

Matplotlib subplots_adjust hspaceでタイトルとxlabelsが重ならないようにしますか?

たとえば、matplotlibの3行のサブプロットでは、1行のxlabelsが次の行のタイトルと重なることがあります。面倒なpl.subplots_adjust(hspace)をいじる必要があります。

重複を防ぎ、nrowで機能するhspaceのレシピはありますか?

""" matplotlib xlabels overlap titles ? """
import sys
import numpy as np
import pylab as pl

nrow = 3
hspace = .4  # of plot height, titles and xlabels both fall within this ??
exec "\n".join( sys.argv[1:] )  # nrow= ...

y = np.arange(10)
pl.subplots_adjust( hspace=hspace )

for jrow in range( 1, nrow+1 ):
    pl.subplot( nrow, 1, jrow )
    pl.plot( y**jrow )
    pl.title( 5 * ("title %d " % jrow) )
    pl.xlabel( 5 * ("xlabel %d " % jrow) )

pl.show()

私のバージョン:

  • matplotlib 0.99.1.1、
  • Python 2.6.4、
  • Mac OSX 10.4.11、
  • バックエンド:Qt4AggTkAgg => Tkinterコールバックの例外)

(多くの余分な点については、Tcl/Tkブックの第17章「パッカー」の行に沿って、matplotlibのパッカー/スペーサーがどのように機能するかを概説できますか?)

40
denis

これはかなり難しいと思いますが、いくつかの情報があります ここMatPlotLib FAQにあります 。それはかなり面倒で、個々の要素(ティックラベル)が占めるスペースを調べる必要があります...

更新:このページでは、tight_layout()関数が最も簡単な方法であり、間隔を自動的に修正しようとしています。

それ以外の場合は、さまざまな要素(ラベルなど)のサイズを取得する方法を示しているため、軸要素の間隔/位置を修正できます。上記のFAQページからの例は、非常に広いy軸ラベルの幅を決定し、それに応じて軸の幅を調整します。

import matplotlib.pyplot as plt
import matplotlib.transforms as mtransforms
fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot(range(10))
ax.set_yticks((2,5,7))
labels = ax.set_yticklabels(('really, really, really', 'long', 'labels'))

def on_draw(event):
   bboxes = []
   for label in labels:
       bbox = label.get_window_extent()
       # the figure transform goes from relative coords->pixels and we
       # want the inverse of that
       bboxi = bbox.inverse_transformed(fig.transFigure)
       bboxes.append(bboxi)

   # this is the bbox that bounds all the bboxes, again in relative
   # figure coords
   bbox = mtransforms.Bbox.union(bboxes)
   if fig.subplotpars.left < bbox.width:
       # we need to move it over
       fig.subplots_adjust(left=1.1*bbox.width) # pad a little
       fig.canvas.draw()
   return False

fig.canvas.mpl_connect('draw_event', on_draw)

plt.show()
18
Jose

Plt.subplots_adjustを使用して、サブプロット間の間隔を変更できますリンク

subplots_adjust(left=None, bottom=None, right=None, top=None, wspace=None, hspace=None)

left  = 0.125  # the left side of the subplots of the figure
right = 0.9    # the right side of the subplots of the figure
bottom = 0.1   # the bottom of the subplots of the figure
top = 0.9      # the top of the subplots of the figure
wspace = 0.2   # the amount of width reserved for blank space between subplots
hspace = 0.2   # the amount of height reserved for white space between subplots
44
CyanRook

Joseによって投稿されたリンクが更新され、pylabにはこれを自動的に行うtight_layout()関数があります(matplotlibバージョン1.1.0で)。

http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.tight_layout

http://matplotlib.org/users/tight_layout_guide.html#plotting-guide-tight-layout

34
kiyo