From fd6c9ce4d3567353d5d70e6774fd7c214a238ea4 Mon Sep 17 00:00:00 2001 From: Simon Brugman Date: Mon, 27 Jun 2022 18:12:37 +0200 Subject: [PATCH] fix: include count in profiles --- popmon/analysis/profiling/hist_profiler.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/popmon/analysis/profiling/hist_profiler.py b/popmon/analysis/profiling/hist_profiler.py index 30b89515..9db85b43 100644 --- a/popmon/analysis/profiling/hist_profiler.py +++ b/popmon/analysis/profiling/hist_profiler.py @@ -129,6 +129,8 @@ def _profile_nd_histogram(self, name, hist, dim): profile.update(Profiles.run([hist], dim=dim, htype="all")) profile.update(Profiles.run([hist], dim=dim, htype="num")) profile.update(Profiles.run([hist], dim=dim, htype="cat")) + + profile.update(Profiles.run([hist], dim=-1, htype=None)) return profile def _profile_hist(self, split, hist_name):