MCPcopy Create free account
hub / github.com/holoviz/hvplot / boxplot_frame_groupby

Function boxplot_frame_groupby

hvplot/plotting/__init__.py:62–69  ·  view source on GitHub ↗
(grouped, **kwargs)

Source from the content-addressed store, hash-verified

60
61
62def 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
72def hist_series(*args, **kwargs):

Callers

nothing calls this directly

Calls 1

plotFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…