CONAN._classes.load_result.plot_corner
======================================

.. py:method:: CONAN._classes.load_result.plot_corner(pars=None, bins=20, thin=1, discard=0, q=[0.16, 0.5, 0.84], range=None, show_titles=True, title_fmt='.3f', titlesize=14, labelsize=20, multiply_by=1, add_value=0, func=None, force_plot=False, kwargs={})

   Corner plot of selected parameters.

   :param pars: parameter names to plot. Ideally less than 15 pars for clarity of plot
   :type pars: list of str;
   :param bins: number of bins in 1d histogram
   :type bins: int;
   :param thin: factor by which to thin the chains in order to reduce correlation.
   :type thin: int;
   :param discard: to discard first couple of steps within the chains.
   :type discard: int;
   :param q: quantiles to show on the 1d histograms. defaults correspoind to +/-1 sigma
   :type q: list of floats;
   :param range: A list where each element is either a length 2 tuple containing
                 lower and upper bounds or a float in range (0., 1.)
                 giving the fraction of samples to include in bounds, e.g.,
                 [(0.,10.), (1.,5), 0.999, etc.].
                 If a fraction, the bounds are chosen to be equal-tailed.
   :type range: iterable (same length as pars);
   :param show_titles: whether to show titles for 1d histograms
   :type show_titles: bool;
   :param title_fmt: format string for the quantiles given in titles. Default is ".3f" for 3 decimal places.
   :type title_fmt: str;
   :param titlesize: size of the titles in the plot.
   :type titlesize: int;
   :param labelsize: size of the labels in the plot.
   :type labelsize: int;
   :param multiply_by: factor by which to multiply the chains. Default is 1. If list, must be same length as pars.
   :type multiply_by: float or list of floats;
   :param add_value: value to add to the chains. Default is 0. If list, must be same length as pars.
   :type add_value: float or list of floats;
   :param func: dictionary containing par:function pairs to apply the function to the chains of the
                parameter par before plotting. e.g. func = {lambda x: x*1e6} Default is None.
   :type func: dict of functions;

