Get the subplot geometry (``n_rows, n_cols, start, stop``). start and stop are the index of the start and stop of the subplot.
(self)
| 451 | return self._gridspec |
| 452 | |
| 453 | def get_geometry(self): |
| 454 | """ |
| 455 | Get the subplot geometry (``n_rows, n_cols, start, stop``). |
| 456 | |
| 457 | start and stop are the index of the start and stop of the |
| 458 | subplot. |
| 459 | """ |
| 460 | rows, cols = self.get_gridspec().get_geometry() |
| 461 | return rows, cols, self.num1, self.num2 |
| 462 | |
| 463 | def get_rows_columns(self): |
| 464 | """ |
no test coverage detected