:mod:`km3pipe.plot` =================== .. py:module:: km3pipe.plot .. autoapi-nested-parse:: Common Plotting utils. .. !! processed by numpydoc !! Module Contents --------------- Functions ~~~~~~~~~ .. autoapisummary:: km3pipe.plot.hexbin km3pipe.plot.get_ax km3pipe.plot.diag km3pipe.plot.automeshgrid km3pipe.plot.meshgrid km3pipe.plot.prebinned_hist km3pipe.plot.joint_hex km3pipe.plot.plot_convexhull .. data:: HAS_SEABORN :annotation: = True .. function:: hexbin(x, y, color='purple', **kwargs) Seaborn-compatible hexbin plot. See also: http://seaborn.pydata.org/tutorial/axis_grids.html#mapping-custom-functions-onto-the-grid .. !! processed by numpydoc !! .. function:: get_ax(ax=None) Grab last ax if none specified, or pass through. .. !! processed by numpydoc !! .. function:: diag(ax=None, linecolor='0.0', linestyle='--', **kwargs) Plot the diagonal. .. !! processed by numpydoc !! .. function:: automeshgrid(x, y, step=0.02, xstep=None, ystep=None, pad=0.5, xpad=None, ypad=None) Make a meshgrid, inferred from data. .. !! processed by numpydoc !! .. function:: meshgrid(x_min, x_max, x_step, y_min=None, y_max=None, y_step=None) Make a meshgrid, e.g. when plotting decision surfaces. .. !! processed by numpydoc !! .. function:: prebinned_hist(counts, binlims, ax=None, *args, **kwargs) Plot a histogram with counts, binlims already given. .. !! processed by numpydoc !! .. function:: joint_hex(x, y, **kwargs) Seaborn Joint Hexplot with marginal KDE + hists. .. !! processed by numpydoc !! .. function:: plot_convexhull(xy, ax=None, plot_points=True)