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` [`str`, `Measurement`]
A dict of measurement types are the only valid values),
keyed by the column suffix.
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 326 of file diff_matched_tract_catalog.py.