(xs, ys, **kwargs)
| 4861 | return self.plot(*[xs, ys][maybe_swap], **kwargs)[0] |
| 4862 | |
| 4863 | def do_patch(xs, ys, **kwargs): |
| 4864 | path = mpath.Path._create_closed( |
| 4865 | np.column_stack([xs, ys][maybe_swap])) |
| 4866 | patch = mpatches.PathPatch(path, **kwargs) |
| 4867 | self.add_artist(patch) |
| 4868 | return patch |
| 4869 | |
| 4870 | # input validation |
| 4871 | N = len(bxpstats) |
nothing calls this directly
no test coverage detected