Return a tuple containing the number of rows and columns in the grid.
(self)
| 73 | doc="The number of columns in the grid.") |
| 74 | |
| 75 | def get_geometry(self): |
| 76 | """ |
| 77 | Return a tuple containing the number of rows and columns in the grid. |
| 78 | """ |
| 79 | return self._nrows, self._ncols |
| 80 | |
| 81 | def get_subplot_params(self, figure=None): |
| 82 | # Must be implemented in subclasses |
no outgoing calls
no test coverage detected