(grouped, **kwargs)
| 60 | |
| 61 | |
| 62 | def boxplot_frame_groupby(grouped, **kwargs): |
| 63 | width = kwargs.pop('width', 300) |
| 64 | subplots = kwargs.pop('subplots', True) |
| 65 | layout = hv.Layout if subplots else hv.Overlay |
| 66 | plots = [ |
| 67 | plot(data=data, kind='box', title=name, width=width, **kwargs) for name, data in grouped |
| 68 | ] |
| 69 | return layout(plots) |
| 70 | |
| 71 | |
| 72 | def hist_series(*args, **kwargs): |
nothing calls this directly
no test coverage detected
searching dependent graphs…