From 6dec29bae70bb120ce40f64b0fc0f331dbb965f2 Mon Sep 17 00:00:00 2001 From: tlatorre Date: Fri, 30 Nov 2018 20:41:37 -0600 Subject: update plot-fit-results to handle masked arrays properly --- utils/plot-fit-results | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'utils/plot-fit-results') diff --git a/utils/plot-fit-results b/utils/plot-fit-results index b568075..48d922a 100755 --- a/utils/plot-fit-results +++ b/utils/plot-fit-results @@ -152,7 +152,7 @@ if __name__ == '__main__': events.append(a) - a = np.concatenate(events) + a = np.ma.concatenate(events) bins = np.arange(50,1000,100) -- cgit