ecdf_estimator
|
Functions | |
def | plot_ecdf_vectors (estimator, plotter=plt, plot_options="b.") |
Plot all ecdf vectors. More... | |
def | plot_mean_vector (estimator, plotter=plt, plot_options="g.") |
Plot means of ecdf vectors. More... | |
def | plot_chi2_test (estimator, plotter=plt, plot_options="r-") |
Plot chi square test. More... | |
def | save_data (estimator, name="ecdf_estimator") |
Save ecdf vectors, mean of ecdf vectors, covariance matrix and bin values to files. More... | |
def ecdf_estimator.output.plot_chi2_test | ( | estimator, | |
plotter = plt , |
|||
plot_options = "r-" |
|||
) |
Plot chi square test.
estimator | The estimator class defining the specifics of the target function. |
plotter | Python object to which the plot should be added. Defaults to plt. |
plot_options | String describing the options for plotting. |
plotter | Python object to whhich the plot has been added. |
def ecdf_estimator.output.plot_ecdf_vectors | ( | estimator, | |
plotter = plt , |
|||
plot_options = "b." |
|||
) |
Plot all ecdf vectors.
estimator | The estimator class defining the specifics of the target function. |
plotter | Python object to which the plot should be added. Defaults to plt. |
plot_options | String describing the options for plotting. |
plotter | Python object to whhich the plot has been added. |
def ecdf_estimator.output.plot_mean_vector | ( | estimator, | |
plotter = plt , |
|||
plot_options = "g." |
|||
) |
Plot means of ecdf vectors.
estimator | The estimator class defining the specifics of the target function. |
plotter | Python object to which the plot should be added. Defaults to plt. |
plot_options | String describing the options for plotting. |
plotter | Python object to whhich the plot has been added. |
def ecdf_estimator.output.save_data | ( | estimator, | |
name = "ecdf_estimator" |
|||
) |
Save ecdf vectors, mean of ecdf vectors, covariance matrix and bin values to files.
estimator | The estimator class defining the specifics of the target function. |
name | Prefix of the file names to which data is saved. |