From 944a3edbf6b718ed1d256c59fd777be46e56d1f3 Mon Sep 17 00:00:00 2001 From: Steve Nyemba Date: Thu, 9 Apr 2020 12:57:25 -0500 Subject: [PATCH] bug fix ... with data-typing in data-frame --- pipeline.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline.py b/pipeline.py index 2b5f028..4cac273 100644 --- a/pipeline.py +++ b/pipeline.py @@ -169,7 +169,7 @@ class Components : # let us fix the data types here every _id field will be an np.int64... # for name in df.columns.tolist(): - if name.endwith('_id') : + if name.endswith('_id') : df[name] = df[name].astype(np.int64)