From 7b564fc3f766c2428ba70a449c12024607f555a7 Mon Sep 17 00:00:00 2001 From: Birte Kristina Friesel Date: Mon, 27 Nov 2023 13:22:51 +0100 Subject: --info: also print range of observations --- lib/parameters.py | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lib/parameters.py') diff --git a/lib/parameters.py b/lib/parameters.py index 99418b6..4c7cf8b 100644 --- a/lib/parameters.py +++ b/lib/parameters.py @@ -742,6 +742,12 @@ class ModelAttribute: ) return None + def min(self): + return np.min(self.data) + + def max(self): + return np.max(self.data) + def webconf_function_map(self): return self.model_function.webconf_function_map() -- cgit v1.2.3