From d6df3ba3b13df971a23ebca88afb4711e7e8fda1 Mon Sep 17 00:00:00 2001 From: tlecocq Date: Fri, 23 Feb 2024 14:14:27 +0100 Subject: [PATCH] preparing the way to make use of subdaily CCFs in the standard workflow --- msnoise/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msnoise/api.py b/msnoise/api.py index 75e1736..4bc359e 100644 --- a/msnoise/api.py +++ b/msnoise/api.py @@ -2529,6 +2529,6 @@ def compute_dvv(session, filterid, mov_stack, pairs=None, components=None, param stats = all.groupby(level=0).describe(percentiles=percentiles) for c in ["m", "m0", "a"]: stats[(c, "weighted_mean")], stats[(c, "weighted_std")] = get_wavgwstd(all, c, 'e'+c) - stats[(c, "trimmed_mean")], stats[(c, "trimmed_std")] = trim(all, c, 'e'+c, kwargs.get("limits", None)) + stats[(c, "trimmed_mean")], stats[(c, "trimmed_std")] = trim(all, c, kwargs.get("limits", None)) return stats.sort_index(axis=1)