Composite.to_gaussian (function)


def to_gaussian(self, N=1000, bins=10, range=None)

Convert the Composite distribution to a Gaussian distribution via a Histogram distribution.

Under-the-hood, this calls Composite.to_histogram with the requested values of N, bins, and range and then calls Histogram.to_gaussian.

Arguments

  • N (int, optional, default=1000): number of samples to use for the histogram.
  • bins (int, optional, default=10): number of bins to use for the histogram.
  • range (tuple or None): range to use for the histogram.

Returns