16
16
A = "autolabel" ,
17
17
B = "frame" ,
18
18
C = "clearance" ,
19
+ J = "projecton" ,
19
20
M = "margins" ,
21
+ R = "region" ,
20
22
S = "layout" ,
21
23
T = "title" ,
24
+ V = "verbose" ,
25
+ X = "xshift" ,
26
+ Y = "yshift" ,
22
27
)
23
28
@kwargs_to_strings (Ff = "sequence" , Fs = "sequence" , M = "sequence" )
24
29
def subplot (self , nrows = 1 , ncols = 1 , ** kwargs ):
@@ -68,6 +73,7 @@ def subplot(self, nrows=1, ncols=1, **kwargs):
68
73
your tag numbers using lowercase Roman numerals; use **+R** for
69
74
uppercase Roman numerals [Arabic numerals]. Append **+v** to increase
70
75
tag numbers vertically down columns [horizontally across rows].
76
+ {B}
71
77
clearance : str
72
78
``[side]clearance``.
73
79
Reserve a space of dimension *clearance* between the margin and the
@@ -81,6 +87,7 @@ def subplot(self, nrows=1, ncols=1, **kwargs):
81
87
apply to the selected (active) subplot. **Note**: Common options
82
88
**x_offset** and **y_offset* are not available during subplots; use
83
89
**clearance** instead.
90
+ {J}
84
91
margins : tuple
85
92
This is margin space that is added between neighboring subplots (i.e.,
86
93
the interior margins) in addition to the automatic space added for tick
@@ -96,6 +103,7 @@ def subplot(self, nrows=1, ncols=1, **kwargs):
96
103
opposing sides (e.g., east plus west or south plus north margins)
97
104
[Default is half the primary annotation font size, giving the full
98
105
annotation font size as the default gap].
106
+ {R}
99
107
layout : str or list
100
108
Set subplot layout for shared axes. May be set separately for rows
101
109
(**R**) and columns (**C**). E.g. ``layout=['Rl', 'Cb']``.
@@ -121,6 +129,8 @@ def subplot(self, nrows=1, ncols=1, **kwargs):
121
129
title : str
122
130
Overarching heading for the entire figure. Font is determined by
123
131
setting ``FONT_HEADING``.
132
+ {V}
133
+ {XY}
124
134
125
135
Yields
126
136
------
0 commit comments