From 7c0476003bde836fb3b05c4c53095b71c1622c52 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Tue, 13 Apr 2021 10:52:54 -0500 Subject: [PATCH] snapshot... --- modules/icing/pirep_goes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index 54cf9152..f39a8686 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -1150,9 +1150,9 @@ def run_mean_std(): data.append(no_ice_h5f[dname][:,].flatten()) data = np.concatenate(data) - mean = np.mean(data) + mean = np.nanmean(data) data -= mean - std = np.std(data) + std = np.nanstd(data) print(dname,': ', mean, std) -- GitLab