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.cornerParameters
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
ndimthat is compatible with the :func:corner.cornercall that originally generated the figure.**kwargs- Any remaining keyword arguments are passed to the
ax.hexbinmethod.
def overplot_scatter(fig, xs, **kwargs)-
Overplot points on a figure generated by
corner.cornerParameters
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
ndimthat is compatible with the :func:corner.cornercall that originally generated the figure.**kwargs- Any remaining keyword arguments are passed to the
ax.scattermethod.