MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / rowspan

Method rowspan

lib/matplotlib/gridspec.py:632–635  ·  view source on GitHub ↗

The rows spanned by this subplot, as a `range` object.

(self)

Source from the content-addressed store, hash-verified

630
631 @property
632 def rowspan(self):
633 """The rows spanned by this subplot, as a `range` object."""
634 ncols = self.get_gridspec().ncols
635 return range(self.num1 // ncols, self.num2 // ncols + 1)
636
637 @property
638 def colspan(self):

Callers

nothing calls this directly

Calls 1

get_gridspecMethod · 0.95

Tested by

no test coverage detected