matplotlib.figure.SubFigure.supylabel#

SubFigure.supylabel(t,**kwargs)[source]#

Add a centered super ylabel to the figure.

Parameters:
tstr

The super ylabel text.

xfloat, default: 0.02

The x location of the text in figure coordinates.

yfloat, default: 0.5

The y location of the text in figure coordinates.

horizontalalignment, ha{'center', 'left', 'right'}, default: left

The horizontal alignment of the text relative to (x,y).

verticalalignment, va{'top', 'center', 'bottom', 'baseline'}, default: center

The vertical alignment of the text relative to (x,y).

fontsize, sizedefault:rcParams["figure.labelsize"] (default:'large')

The font size of the text. SeeText.set_size for possiblevalues.

fontweight, weightdefault:rcParams["figure.labelweight"] (default:'normal')

The font weight of the text. SeeText.set_weight for possiblevalues.

Returns:
text

TheText instance of the super ylabel.

Other Parameters:
fontpropertiesNone or dict, optional

A dict of font properties. Iffontproperties is given thedefault values for font size and weight are taken from theFontProperties defaults.rcParams["figure.labelsize"] (default:'large') andrcParams["figure.labelweight"] (default:'normal') are ignored in this case.

**kwargs

Additional kwargs arematplotlib.text.Text properties.