plot_corner

pytelpoint.visualization.plot_corner(idata, quantiles=None, truths=None, title_kwargs={'fontsize': 18}, label_kwargs={'fontsize': 16})[source] [edit on github]

Make corner plot from outputs of a pymc az/el fit

Parameters:
idataobject

Any object that can be converted to an InferenceData object. Refer to documentation of arviz.convert_to_dataset for details.

quantileslist of float (default: None -> [0.16, 0.5, 0.84])

Quantiles to overlay on each histogram plot

truthsdict

Dict of reference parameters to overlay on plots. Must contain the following keys: ia, ie, an, aw, ca, npae, tf, tx, el_sigma, and az_sigma. Values set to None won’t be displayed. Default is to not display any.

Returns:
figmatplotlib.figure.Figure instance

Figure object containing the corner plot.