ecdf_estimator
Functions
ecdf_estimator.output Namespace Reference

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...
 

Function Documentation

◆ plot_chi2_test()

def ecdf_estimator.output.plot_chi2_test (   estimator,
  plotter = plt,
  plot_options = "r-" 
)

Plot chi square test.

Parameters
estimatorThe estimator class defining the specifics of the target function.
plotterPython object to which the plot should be added. Defaults to plt.
plot_optionsString describing the options for plotting.
Return values
plotterPython object to whhich the plot has been added.

◆ plot_ecdf_vectors()

def ecdf_estimator.output.plot_ecdf_vectors (   estimator,
  plotter = plt,
  plot_options = "b." 
)

Plot all ecdf vectors.

Parameters
estimatorThe estimator class defining the specifics of the target function.
plotterPython object to which the plot should be added. Defaults to plt.
plot_optionsString describing the options for plotting.
Return values
plotterPython object to whhich the plot has been added.

◆ plot_mean_vector()

def ecdf_estimator.output.plot_mean_vector (   estimator,
  plotter = plt,
  plot_options = "g." 
)

Plot means of ecdf vectors.

Parameters
estimatorThe estimator class defining the specifics of the target function.
plotterPython object to which the plot should be added. Defaults to plt.
plot_optionsString describing the options for plotting.
Return values
plotterPython object to whhich the plot has been added.

◆ save_data()

def ecdf_estimator.output.save_data (   estimator,
  name = "ecdf_estimator" 
)

Save ecdf vectors, mean of ecdf vectors, covariance matrix and bin values to files.

Parameters
estimatorThe estimator class defining the specifics of the target function.
namePrefix of the file names to which data is saved.