ieaves / tenzing

MIT License
0 stars 0 forks source link

Inferring types twice causes errors #16

Closed sbrugman closed 5 years ago

sbrugman commented 5 years ago

Minimal example:

ts = tenzing_complete_set()
_ = ts.prep(df)

summary = ts.summary_report(df)
print('expected types', ts.infer_types(df))
df_clean = ts.cast_to_inferred_types(df)
print('expected types after convert', ts.infer_types(df_clean))