サブプロットのpyplot軸ラベル


187

私は次のプロットを持っています:

import matplotlib.pyplot as plt

fig2 = plt.figure()
ax3 = fig2.add_subplot(2,1,1)
ax4 = fig2.add_subplot(2,1,2)
ax4.loglog(x1, y1)
ax3.loglog(x2, y2)
ax3.set_ylabel('hello')

2つのサブプロットのそれぞれについてだけでなく、両方のサブプロットにまたがる共通のラベルについても、Axesのラベルとタイトルを作成できるようにしたいと考えています。たとえば、両方のプロットが同じ軸を持っているので、必要なのはx軸とy軸のラベルのセットが1つだけです。ただし、サブプロットごとに異なるタイトルが必要です。

いくつか試しましたが、どれもうまくいきませんでした

回答:


261

2つのサブプロットをカバーする大きなサブプロットを作成して、共通のラベルを設定できます。

import random
import matplotlib.pyplot as plt

x = range(1, 101)
y1 = [random.randint(1, 100) for _ in xrange(len(x))]
y2 = [random.randint(1, 100) for _ in xrange(len(x))]

fig = plt.figure()
ax = fig.add_subplot(111)    # The big subplot
ax1 = fig.add_subplot(211)
ax2 = fig.add_subplot(212)

# Turn off axis lines and ticks of the big subplot
ax.spines['top'].set_color('none')
ax.spines['bottom'].set_color('none')
ax.spines['left'].set_color('none')
ax.spines['right'].set_color('none')
ax.tick_params(labelcolor='w', top=False, bottom=False, left=False, right=False)

ax1.loglog(x, y1)
ax2.loglog(x, y2)

# Set common labels
ax.set_xlabel('common xlabel')
ax.set_ylabel('common ylabel')

ax1.set_title('ax1 title')
ax2.set_title('ax2 title')

plt.savefig('common_labels.png', dpi=300)

common_labels.png

別の方法は、fig.text()を使用して共通ラベルの場所を直接設定することです。

import random
import matplotlib.pyplot as plt

x = range(1, 101)
y1 = [random.randint(1, 100) for _ in xrange(len(x))]
y2 = [random.randint(1, 100) for _ in xrange(len(x))]

fig = plt.figure()
ax1 = fig.add_subplot(211)
ax2 = fig.add_subplot(212)

ax1.loglog(x, y1)
ax2.loglog(x, y2)

# Set common labels
fig.text(0.5, 0.04, 'common xlabel', ha='center', va='center')
fig.text(0.06, 0.5, 'common ylabel', ha='center', va='center', rotation='vertical')

ax1.set_title('ax1 title')
ax2.set_title('ax2 title')

plt.savefig('common_labels_text.png', dpi=300)

common_labels_text.png


1
suptitle関数は、fig.text()バージョンを使用します。だから、これはそれを行う「公式の」方法かもしれませんか?
PhML 2013年

4
それの価値は、それが強調axする前に作成する必要がありますax1ax2、それ以外の大きなプロットは小さなプロットをカバーします。
1 ''

ax.grid(False)またはplt.grid(False)は、グローバルプロットパラメーターに(可視)グリッドが含まれている場合にも必要です。
Næreen

3
最初のアプローチは最近のバージョンのmatplotplib(私は2.0.2を使用)では機能しなくなったようです。外側のaxに追加されたラベルが表示されません。
M.トーヤ

個々のサブプロットにy_labelsを追加するにはどうすればよいですか?
Fardin、2018年

115

を使用する1つの簡単な方法subplots

import matplotlib.pyplot as plt

fig, axes = plt.subplots(3, 4, sharex=True, sharey=True)
# add a big axes, hide frame
fig.add_subplot(111, frameon=False)
# hide tick and tick label of the big axes
plt.tick_params(labelcolor='none', top='off', bottom='off', left='off', right='off')
plt.grid(False)
plt.xlabel("common X")
plt.ylabel("common Y")

1
ax.grid(False)またはplt.grid(False)は、グローバルプロットパラメーターに(可視)グリッドが含まれている場合にも必要です。
Næreen

1
私はこれを(5、1)サブプロットに対して行っており、私のylabelはサブプロットの近くではなく、ウィンドウの左端でかなりずれています。
Evidlo

1
あなたは賛成票を獲得しました。ただし、コードの内容を説明したり、画像を添付したり、例を示したりしてください。間違いなく取得するのに少し時間がかかりました。
カリームJeiroudi

4
変更'off'へのFalsematplotlibのの新しいバージョン(私は2.2.2を持っている)と
テッド

2
そして、どのようにプロットを追加しますか?for ax in axes: ax.plot(x, y)何の役にも立たないようです。
ユーザー番号

16

Wen-wei Liaoの答えは、ベクターグラフィックスをエクスポートしない場合や、無色の軸を無視するようにmatplotlibバックエンドを設定している場合に適しています。そうしないと、非表示の軸がエクスポートされたグラフィックに表示されます。

suplabelここでの私の答えfig.suptitleは、fig.text関数を使用するものに似ています。したがって、軸アーティストが作成されて無色になることはありません。ただし、複数回呼び出そうとすると、テキストも追加されます(同様にfig.suptitle)。Wen-wei Liaoの回答はfig.add_subplot(111)返されません。すでに作成されている場合、同じAxesオブジェクトを返すからです。

プロットが作成された後で、関数を呼び出すこともできます。

def suplabel(axis,label,label_prop=None,
             labelpad=5,
             ha='center',va='center'):
    ''' Add super ylabel or xlabel to the figure
    Similar to matplotlib.suptitle
    axis       - string: "x" or "y"
    label      - string
    label_prop - keyword dictionary for Text
    labelpad   - padding from the axis (default: 5)
    ha         - horizontal alignment (default: "center")
    va         - vertical alignment (default: "center")
    '''
    fig = pylab.gcf()
    xmin = []
    ymin = []
    for ax in fig.axes:
        xmin.append(ax.get_position().xmin)
        ymin.append(ax.get_position().ymin)
    xmin,ymin = min(xmin),min(ymin)
    dpi = fig.dpi
    if axis.lower() == "y":
        rotation=90.
        x = xmin-float(labelpad)/dpi
        y = 0.5
    elif axis.lower() == 'x':
        rotation = 0.
        x = 0.5
        y = ymin - float(labelpad)/dpi
    else:
        raise Exception("Unexpected axis: x or y")
    if label_prop is None: 
        label_prop = dict()
    pylab.text(x,y,label,rotation=rotation,
               transform=fig.transFigure,
               ha=ha,va=va,
               **label_prop)

これがベストアンサーです。簡単に実装でき、ラベルパッドオプションによりラベルが重複しません。
アーサーデント

8

これは、1つのプロットのylabelを設定し、垂直方向の中央に配置されるように位置を調整するソリューションです。これにより、KYCで言及された問題を回避できます。

import numpy as np
import matplotlib.pyplot as plt

def set_shared_ylabel(a, ylabel, labelpad = 0.01):
    """Set a y label shared by multiple axes
    Parameters
    ----------
    a: list of axes
    ylabel: string
    labelpad: float
        Sets the padding between ticklabels and axis label"""

    f = a[0].get_figure()
    f.canvas.draw() #sets f.canvas.renderer needed below

    # get the center position for all plots
    top = a[0].get_position().y1
    bottom = a[-1].get_position().y0

    # get the coordinates of the left side of the tick labels 
    x0 = 1
    for at in a:
        at.set_ylabel('') # just to make sure we don't and up with multiple labels
        bboxes, _ = at.yaxis.get_ticklabel_extents(f.canvas.renderer)
        bboxes = bboxes.inverse_transformed(f.transFigure)
        xt = bboxes.x0
        if xt < x0:
            x0 = xt
    tick_label_left = x0

    # set position of label
    a[-1].set_ylabel(ylabel)
    a[-1].yaxis.set_label_coords(tick_label_left - labelpad,(bottom + top)/2, transform=f.transFigure)

length = 100
x = np.linspace(0,100, length)
y1 = np.random.random(length) * 1000
y2 = np.random.random(length)

f,a = plt.subplots(2, sharex=True, gridspec_kw={'hspace':0})
a[0].plot(x, y1)
a[1].plot(x, y2)
set_shared_ylabel(a, 'shared y label (a. u.)')

ここに画像の説明を入力してください


7

plt.setp() 仕事をします:

# plot something
fig, axs = plt.subplots(3,3, figsize=(15, 8), sharex=True, sharey=True)
for i, ax in enumerate(axs.flat):
    ax.scatter(*np.random.normal(size=(2,200)))
    ax.set_title(f'Title {i}')

# set labels
plt.setp(axs[-1, :], xlabel='x axis label')
plt.setp(axs[:, 0], ylabel='y axis label')

ここに画像の説明を入力してください


この方法でフォントサイズ/太さも設定する方法はありますか?
pfabri

3
# list loss and acc are your data
fig = plt.figure()
ax1 = fig.add_subplot(121)
ax2 = fig.add_subplot(122)

ax1.plot(iteration1, loss)
ax2.plot(iteration2, acc)

ax1.set_title('Training Loss')
ax2.set_title('Training Accuracy')

ax1.set_xlabel('Iteration')
ax1.set_ylabel('Loss')

ax2.set_xlabel('Iteration')
ax2.set_ylabel('Accuracy')

1

yticksが大きい場合、他の回答のメソッドは正しく機能しません。ylabelは目盛りと重複するか、Figureの左側でクリップされるか、完全に非表示/外部でクリップされます。

Hagneの回答を変更して、xlabelとylabelの両方で1列を超えるサブプロットで機能し、図でylabelが見えるようにプロットをシフトします。

def set_shared_ylabel(a, xlabel, ylabel, labelpad = 0.01, figleftpad=0.05):
    """Set a y label shared by multiple axes
    Parameters
    ----------
    a: list of axes
    ylabel: string
    labelpad: float
        Sets the padding between ticklabels and axis label"""

    f = a[0,0].get_figure()
    f.canvas.draw() #sets f.canvas.renderer needed below

    # get the center position for all plots
    top = a[0,0].get_position().y1
    bottom = a[-1,-1].get_position().y0

    # get the coordinates of the left side of the tick labels
    x0 = 1
    x1 = 1
    for at_row in a:
        at = at_row[0]
        at.set_ylabel('') # just to make sure we don't and up with multiple labels
        bboxes, _ = at.yaxis.get_ticklabel_extents(f.canvas.renderer)
        bboxes = bboxes.inverse_transformed(f.transFigure)
        xt = bboxes.x0
        if xt < x0:
            x0 = xt
            x1 = bboxes.x1
    tick_label_left = x0

    # shrink plot on left to prevent ylabel clipping
    # (x1 - tick_label_left) is the x coordinate of right end of tick label,
    # basically how much padding is needed to fit tick labels in the figure
    # figleftpad is additional padding to fit the ylabel
    plt.subplots_adjust(left=(x1 - tick_label_left) + figleftpad)

    # set position of label, 
    # note that (figleftpad-labelpad) refers to the middle of the ylabel
    a[-1,-1].set_ylabel(ylabel)
    a[-1,-1].yaxis.set_label_coords(figleftpad-labelpad,(bottom + top)/2, transform=f.transFigure)

    # set xlabel
    y0 = 1
    for at in axes[-1]:
        at.set_xlabel('')  # just to make sure we don't and up with multiple labels
        bboxes, _ = at.xaxis.get_ticklabel_extents(fig.canvas.renderer)
        bboxes = bboxes.inverse_transformed(fig.transFigure)
        yt = bboxes.y0
        if yt < y0:
            y0 = yt
    tick_label_bottom = y0

    axes[-1, -1].set_xlabel(xlabel)
    axes[-1, -1].xaxis.set_label_coords((left + right) / 2, tick_label_bottom - labelpad, transform=fig.transFigure)

これは次の例で機能しますが、Hagneの答えはylabelを描画せず(キャンバスの外側にあるため)、KYCのylabelは目盛りラベルと重複しています。

import matplotlib.pyplot as plt
import itertools

fig, axes = plt.subplots(3, 4, sharey='row', sharex=True, squeeze=False)
fig.subplots_adjust(hspace=.5)
for i, a in enumerate(itertools.chain(*axes)):
    a.plot([0,4**i], [0,4**i])
    a.set_title(i)
set_shared_ylabel(axes, 'common X', 'common Y')
plt.show()

または、無色の軸で問題がなければ、ジュリアンチェンのソリューションを変更して、ylabelが目盛りラベルと重複しないようにしました。

基本的に、無色のylimを設定して、サブプロットの最大のylimと一致させるだけで、無色の目盛りラベルがylabelの正しい位置を設定する必要があります。

ここでも、クリッピングを防ぐためにプロットを縮小する必要があります。ここでは縮小する量をハードコードしましたが、試してみて、うまくいく数値を見つけたり、上記の方法のように計算したりできます。

import matplotlib.pyplot as plt
import itertools

fig, axes = plt.subplots(3, 4, sharey='row', sharex=True, squeeze=False)
fig.subplots_adjust(hspace=.5)
miny = maxy = 0
for i, a in enumerate(itertools.chain(*axes)):
    a.plot([0,4**i], [0,4**i])
    a.set_title(i)
    miny = min(miny, a.get_ylim()[0])
    maxy = max(maxy, a.get_ylim()[1])

# add a big axes, hide frame
# set ylim to match the largest range of any subplot
ax_invis = fig.add_subplot(111, frameon=False)
ax_invis.set_ylim([miny, maxy])

# hide tick and tick label of the big axis
plt.tick_params(labelcolor='none', top=False, bottom=False, left=False, right=False)
plt.xlabel("common X")
plt.ylabel("common Y")

# shrink plot to prevent clipping
plt.subplots_adjust(left=0.15)
plt.show()
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.