lsst.pipe.tasks g6a99470703+a85dbcd4de
|
Classes | |
class | DiffMatchedTractCatalogConfig |
class | DiffMatchedTractCatalogConnections |
class | DiffMatchedTractCatalogTask |
class | MatchedCatalogFluxesConfig |
class | MatchType |
class | MeasurementType |
class | MeasurementTypeInfo |
class | Median |
class | Percentile |
class | SigmaIQR |
class | SigmaMAD |
class | SourceType |
class | SourceTypeInfo |
class | Statistic |
Functions | |
def | is_sequence_set (Sequence x) |
def | is_percentile (str x) |
def | compute_stats (values_ref, values_target, errors_target, row, stats, suffixes, prefix, skip_diff=False) |
Variables | |
dictionary | DiffMatchedTractCatalogBaseTemplates |
def lsst.pipe.tasks.diff_matched_tract_catalog.compute_stats | ( | values_ref, | |
values_target, | |||
errors_target, | |||
row, | |||
stats, | |||
suffixes, | |||
prefix, | |||
skip_diff = False |
|||
) |
Compute statistics on differences and store results in a row. Parameters ---------- values_ref : `numpy.ndarray`, (N,) Reference values. values_target : `numpy.ndarray`, (N,) Measured values. errors_target : `numpy.ndarray`, (N,) Errors (standard deviations) on `values_target`. row : `numpy.ndarray`, (1, C) A numpy array with pre-assigned column names. stats : `Dict` [`str`, `Statistic`] A dict of `Statistic` values to measure, keyed by their column suffix. suffixes : `Dict` [`MeasurementType`, `str`] A dict of measurement type column suffixes, keyed by the measurement type. prefix : `str` A prefix for all column names (e.g. band). skip_diff : `bool` Whether to skip computing statistics on differences. Note that differences will still be computed for chi statistics. Returns ------- row_with_stats : `numpy.ndarray`, (1, C) The original `row` with statistic values assigned.
Definition at line 409 of file diff_matched_tract_catalog.py.
def lsst.pipe.tasks.diff_matched_tract_catalog.is_percentile | ( | str | x | ) |
Definition at line 53 of file diff_matched_tract_catalog.py.
def lsst.pipe.tasks.diff_matched_tract_catalog.is_sequence_set | ( | Sequence | x | ) |
Definition at line 49 of file diff_matched_tract_catalog.py.
dictionary lsst.pipe.tasks.diff_matched_tract_catalog.DiffMatchedTractCatalogBaseTemplates |
Definition at line 57 of file diff_matched_tract_catalog.py.