Skip to content

Commit

Permalink
preparing the way to make use of subdaily CCFs in the standard workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasLecocq committed Feb 23, 2024
1 parent 149a781 commit d6df3ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion msnoise/api.py
Expand Up @@ -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)

0 comments on commit d6df3ba

Please sign in to comment.