Module diskchef.engine.overplot_scatter

Functions

def overplot_hexbin(fig, xs, C, gridsize=20, reduce_C_function=<function nanmax>, **kwargs)

Overplot hexbin on a figure generated by corner.corner

Parameters

fig : Figure
The figure generated by a call to :func:corner.corner.
xs : array_like[nsamples, ndim]
 

The coordinates of the points to be plotted. This must have an ndim that is compatible with the :func:corner.corner call that originally generated the figure.

**kwargs
Any remaining keyword arguments are passed to the ax.hexbin method.
def overplot_scatter(fig, xs, **kwargs)

Overplot points on a figure generated by corner.corner

Parameters

fig : Figure
The figure generated by a call to :func:corner.corner.
xs : array_like[nsamples, ndim]
 

The coordinates of the points to be plotted. This must have an ndim that is compatible with the :func:corner.corner call that originally generated the figure.

**kwargs
Any remaining keyword arguments are passed to the ax.scatter method.