@@ -1265,27 +1265,16 @@ def add_subplot(self, *args, **kwargs):
12651265
12661266 Parameters
12671267 ----------
1268- <<<<<<< HEAD
1269- *args : int, (int, int, *index*), or `.SubplotSpec`, default: (1, 1, 1)
1270- =======
1271- *args, int, (int, int, *index*), or `SubplotSpec`, default: (1, 1, 1)
1272- >>>>>>> FIX: allow start-stop subplot
1268+ *args : int, (int, int, *index*), or `SubplotSpec`, default: (1, 1, 1)
12731269 The position of the subplot described by one of
12741270
12751271 - Three integers (*nrows*, *ncols*, *index*). The subplot will
12761272 take the *index* position on a grid with *nrows* rows and
12771273 *ncols* columns. *index* starts at 1 in the upper left corner
1278- <<<<<<< HEAD
1279- and increases to the right. *index* can also be a two-tuple
1280- specifying the (*first*, *last*) indices (1-based, and including
1281- *last*) of the subplot, e.g., ``fig.add_subplot(3, 1, (1, 2))``
1282- makes a subplot that spans the upper 2/3 of the figure.
1283- =======
12841274 and increases to the right. *index* can also be a two-tuple
12851275 specifying the (*start*, *stop*) indices of the subplot, i.e.,
12861276 ``fig.add_subplot(3, 1, (1, 2))`` makes a subplot that spans the
12871277 upper 2/3 of the figure.
1288- >>>>>>> FIX: allow start-stop subplot
12891278 - A 3-digit integer. The digits are interpreted as if given
12901279 separately as three single-digit integers, i.e.
12911280 ``fig.add_subplot(235)`` is the same as
0 commit comments