Public Member Functions | |
__init__ (self, y, x=None, name=None, title=None, contact=None, description=None, check=None, stackby=None, y_unit=None, y_binary=None, y_log=None, lower_bound=None, upper_bound=None, bins=None, outlier_z_score=None, fit=None, fit_z_score=None, skip_single_valued=False, allow_discrete=False) | |
refine (self, harvesting_module, crops, tdirectory=None, groupby_part_name=None, groupby_value=None, **kwds) | |
__get__ (self, harvesting_module, cls=None) | |
__call__ (self, harvesting_module, crops=None, *args, **kwds) | |
Static Public Member Functions | |
has_more_than_one_value (xs) | |
Public Attributes | |
name = name | |
cached user-defined name for this profile histogram / scatterplot | |
title = title | |
cached user-defined title for this profile histogram / scatterplot | |
description = description | |
cached user-defined description for this profile histogram / scatterplot | |
check = check | |
cached user-defined user-check action for this profile histogram / scatterplot | |
contact = contact | |
cached user-defined contact person for this profile histogram / scatterplot | |
x = x | |
cached value of abscissa | |
y = y | |
cached value of ordinate | |
stackby = stackby | |
cached stacking selection for this profile histogram / scatterplot | |
y_unit = y_unit | |
cached measurement unit for ordinate | |
lower_bound = lower_bound | |
cached lower bound for this profile histogram / scatterplot | |
upper_bound = upper_bound | |
cached upper bound for this profile histogram / scatterplot | |
bins = bins | |
cached number of bins for this profile histogram / scatterplot | |
y_binary = y_binary | |
cached flag for probability y axis (range 0.0 . | |
y_log = y_log | |
cached flag for logarithmic y axis for this profile histogram / scatterplot | |
outlier_z_score = outlier_z_score | |
cached Z-score (for outlier detection) for this profile histogram / scatterplot | |
allow_discrete = allow_discrete | |
cached flag to allow discrete values for this profile histogram / scatterplot | |
fit = fit | |
cached fit for this profile histogram / scatterplot | |
fit_z_score = fit_z_score | |
cached fit Z-score (for outlier detection) for this profile histogram / scatterplot | |
skip_single_valued = skip_single_valued | |
cached flag to skip single-valued bins for this profile histogram / scatterplot | |
refiner_function = refiner_function | |
cached copy of the instance's refiner function | |
Static Public Attributes | |
str | plot_kind = "profile" |
by default, this refiner is for profile histograms | |
Refiner for profile histograms and 2D scatterplots
Definition at line 312 of file refiners.py.
__init__ | ( | self, | |
y, | |||
x = None, | |||
name = None, | |||
title = None, | |||
contact = None, | |||
description = None, | |||
check = None, | |||
stackby = None, | |||
y_unit = None, | |||
y_binary = None, | |||
y_log = None, | |||
lower_bound = None, | |||
upper_bound = None, | |||
bins = None, | |||
outlier_z_score = None, | |||
fit = None, | |||
fit_z_score = None, | |||
skip_single_valued = False, | |||
allow_discrete = False ) |
Constructor for this refiner
Definition at line 317 of file refiners.py.
|
inherited |
implementation of the function-call of the Refiner instance r = Refiner() r(harvester) # decoration r(harvester, crops, args, keywords) # refinement
Definition at line 55 of file refiners.py.
|
inherited |
Getter of the Refiner instance
Definition at line 42 of file refiners.py.
|
static |
check if a list has at least two unique values
Definition at line 505 of file refiners.py.
refine | ( | self, | |
harvesting_module, | |||
crops, | |||
tdirectory = None, | |||
groupby_part_name = None, | |||
groupby_value = None, | |||
** | kwds ) |
Process the profile histogram / scatterplot
Reimplemented from Refiner.
Definition at line 386 of file refiners.py.
allow_discrete = allow_discrete |
cached flag to allow discrete values for this profile histogram / scatterplot
Definition at line 376 of file refiners.py.
bins = bins |
cached number of bins for this profile histogram / scatterplot
Definition at line 367 of file refiners.py.
check = check |
cached user-defined user-check action for this profile histogram / scatterplot
Definition at line 349 of file refiners.py.
contact = contact |
cached user-defined contact person for this profile histogram / scatterplot
Definition at line 351 of file refiners.py.
description = description |
cached user-defined description for this profile histogram / scatterplot
Definition at line 347 of file refiners.py.
fit = fit |
cached fit for this profile histogram / scatterplot
Definition at line 379 of file refiners.py.
fit_z_score = fit_z_score |
cached fit Z-score (for outlier detection) for this profile histogram / scatterplot
Definition at line 381 of file refiners.py.
lower_bound = lower_bound |
cached lower bound for this profile histogram / scatterplot
Definition at line 363 of file refiners.py.
name = name |
cached user-defined name for this profile histogram / scatterplot
Definition at line 342 of file refiners.py.
outlier_z_score = outlier_z_score |
cached Z-score (for outlier detection) for this profile histogram / scatterplot
Definition at line 374 of file refiners.py.
|
static |
by default, this refiner is for profile histograms
Definition at line 315 of file refiners.py.
|
inherited |
cached copy of the instance's refiner function
Definition at line 40 of file refiners.py.
skip_single_valued = skip_single_valued |
cached flag to skip single-valued bins for this profile histogram / scatterplot
Definition at line 384 of file refiners.py.
stackby = stackby |
cached stacking selection for this profile histogram / scatterplot
Definition at line 358 of file refiners.py.
title = title |
cached user-defined title for this profile histogram / scatterplot
Definition at line 344 of file refiners.py.
upper_bound = upper_bound |
cached upper bound for this profile histogram / scatterplot
Definition at line 365 of file refiners.py.
x = x |
cached value of abscissa
Definition at line 354 of file refiners.py.
y = y |
cached value of ordinate
Definition at line 356 of file refiners.py.
y_binary = y_binary |
cached flag for probability y axis (range 0.0 .
. 1.05) for this profile histogram / scatterplot
Definition at line 369 of file refiners.py.
y_log = y_log |
cached flag for logarithmic y axis for this profile histogram / scatterplot
Definition at line 371 of file refiners.py.
y_unit = y_unit |
cached measurement unit for ordinate
Definition at line 360 of file refiners.py.