Return the subplot geometry as tuple ``(n_rows, n_cols, start, stop)``. The indices *start* and *stop* define the range of the subplot within the `GridSpec`. *stop* is inclusive (i.e. for a single cell ``start == stop``).
(self)
| 618 | return self._gridspec |
| 619 | |
| 620 | def get_geometry(self): |
| 621 | """ |
| 622 | Return the subplot geometry as tuple ``(n_rows, n_cols, start, stop)``. |
| 623 | |
| 624 | The indices *start* and *stop* define the range of the subplot within |
| 625 | the `GridSpec`. *stop* is inclusive (i.e. for a single cell |
| 626 | ``start == stop``). |
| 627 | """ |
| 628 | rows, cols = self.get_gridspec().get_geometry() |
| 629 | return rows, cols, self.num1, self.num2 |
| 630 | |
| 631 | @property |
| 632 | def rowspan(self): |