Belle II Software development
|
Public Member Functions | |
def | __init__ (self, *args) |
Public Attributes | |
spline | |
Spline, fitting the CDF. | |
Protected Member Functions | |
def | _fit (self, x, y=None) |
def | _transform (self, x) |
Calculates the cumulative distribution (CDF) Can be used for the flat transformation. Attributes ---------- spline : InterpolatedUnivariateSpline Spline, fitting the CDF
Definition at line 176 of file transform.py.
def __init__ | ( | self, | |
* | args | ||
) |
Init function :param args: None
Reimplemented from Transform.
Definition at line 189 of file transform.py.
|
protected |
Fit function calculates the cumulative distribution with numpy percentile. :param x: Input distribution :param y: Will not be used in this transformation
Reimplemented from Transform.
Definition at line 199 of file transform.py.
|
protected |
Transforms the input data according to the cdf. :param x: Input data :return: Transformed data
Reimplemented from Transform.
Definition at line 225 of file transform.py.
spline |
Spline, fitting the CDF.
Definition at line 197 of file transform.py.