Belle II Software development
|
Public Member Functions | |
def | __init__ (self, figure=None, axis=None, x_axis_label=None) |
def | add (self, data, column, mask=None, weight_column=None) |
def | finish (self) |
Public Attributes | |
x_axis_label | |
Label on x axis. | |
Create a boxplot
Definition at line 701 of file plotting.py.
def __init__ | ( | self, | |
figure = None , |
|||
axis = None , |
|||
x_axis_label = None |
|||
) |
Creates a new figure and axis if None is given, sets the default plot parameters @param figure default draw figure which is used @param axis default draw axis which is used
Reimplemented from Plotter.
Definition at line 708 of file plotting.py.
def add | ( | self, | |
data, | |||
column, | |||
mask = None , |
|||
weight_column = None |
|||
) |
Add a new boxplot to the plots @param data pandas.DataFrame containing all data @param column which is used to calculate boxplot quantities @param mask boolean numpy.array defining which events are used for the histogram @param weight_column column in data containing the weights for each event
Reimplemented from Plotter.
Definition at line 719 of file plotting.py.
def finish | ( | self | ) |
Sets limits, title, axis-labels and legend of the plot
Reimplemented from Plotter.
Definition at line 760 of file plotting.py.
x_axis_label |
Label on x axis.
Definition at line 717 of file plotting.py.