A provisional result object for `.Axes.grouped_bar`. This is a placeholder for a future better return type. We try to build in backward compatibility / migration possibilities. The only public interfaces are the ``bar_containers`` attribute and the ``remove()`` method.
| 68 | |
| 69 | |
| 70 | class _GroupedBarReturn: |
| 71 | """ |
| 72 | A provisional result object for `.Axes.grouped_bar`. |
| 73 | |
| 74 | This is a placeholder for a future better return type. We try to build in |
| 75 | backward compatibility / migration possibilities. |
| 76 | |
| 77 | The only public interfaces are the ``bar_containers`` attribute and the |
| 78 | ``remove()`` method. |
| 79 | """ |
| 80 | def __init__(self, bar_containers): |
| 81 | self.bar_containers = bar_containers |
| 82 | |
| 83 | def remove(self): |
| 84 | [b.remove() for b in self.bar_containers] |
| 85 | |
| 86 | |
| 87 | @_docstring.interpd |
no outgoing calls
no test coverage detected
searching dependent graphs…