This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Routines related to plotting 2D distributions of parameters. | |
The core of this module is plot2Ddist, which plots a two-dimensional | |
distribution with 1D marginal histograms along each axis and optional | |
features like contours and lines indicating ranges and true values. | |
""" | |
import itertools | |
import math |