bug fix ...
This commit is contained in:
parent
e78d72af21
commit
ba1f38770d
|
@ -166,8 +166,11 @@ class Components :
|
||||||
_args['continuous']= args['continuous'] if 'continuous' in args else []
|
_args['continuous']= args['continuous'] if 'continuous' in args else []
|
||||||
#
|
#
|
||||||
# How many rows sub-partition must we divide this into ?
|
# 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()
|
_dc = pd.DataFrame()
|
||||||
|
|
Loading…
Reference in New Issue