diff options
Diffstat (limited to 'lib/utils.py')
-rw-r--r-- | lib/utils.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/utils.py b/lib/utils.py index 7c28c91..f6a34e3 100644 --- a/lib/utils.py +++ b/lib/utils.py @@ -12,6 +12,15 @@ def is_numeric(n): except ValueError: return False +def float_or_nan(n): + """Convert to float (if numeric) or NaN.""" + if n == None: + return np.nan + try: + return float(n) + except ValueError: + return np.nan + def param_slice_eq(a, b, index): """ Check if by_param keys a and b are identical, ignoring the parameter at index. |