bug fix ...

This commit is contained in:
Steve Nyemba 2020-04-09 12:42:29 -05:00
parent e78d72af21
commit ba1f38770d
1 changed files with 5 additions and 2 deletions

View File

@ -166,8 +166,11 @@ class Components :
_args['continuous']= args['continuous'] if 'continuous' in args else []
#
# How many rows sub-partition must we divide this into ?
# -- Let us tray assessing
# 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') :
df[name] = df[name].astype(np.int64)
_dc = pd.DataFrame()