Return a list of the names of the subplot parameters explicitly set in the GridSpec. This is a subset of the attributes of `.SubplotParams`.
(self)
| 428 | return subplotpars |
| 429 | |
| 430 | def locally_modified_subplot_params(self): |
| 431 | """ |
| 432 | Return a list of the names of the subplot parameters explicitly set |
| 433 | in the GridSpec. |
| 434 | |
| 435 | This is a subset of the attributes of `.SubplotParams`. |
| 436 | """ |
| 437 | return [k for k in self._AllowedKeys if getattr(self, k)] |
| 438 | |
| 439 | def tight_layout(self, figure, renderer=None, |
| 440 | pad=1.08, h_pad=None, w_pad=None, rect=None): |
no outgoing calls
no test coverage detected