(self, n)
| 182 | self._divider.new_locator(nx=2 * col, ny=2 * (self._nrows - 1 - row))) |
| 183 | |
| 184 | def _get_col_row(self, n): |
| 185 | if self._direction == "column": |
| 186 | col, row = divmod(n, self._nrows) |
| 187 | else: |
| 188 | row, col = divmod(n, self._ncols) |
| 189 | |
| 190 | return col, row |
| 191 | |
| 192 | n_axes = property(lambda self: len(self.axes_all)) |
| 193 | ngrids = _api.deprecated('3.11')(property(lambda self: len(self.axes_all))) |
no outgoing calls
no test coverage detected