Skip to content
Snippets Groups Projects

F fix strict values in table columns

Merged Florian Spreckelsen requested to merge f-fix-strict-values-in-table-columns into dev
Files
3
@@ -322,7 +322,7 @@ class TableImporter():
.. note::
If columns are integer, but should be float, this method converts the respective columns
in place.
in place. The same for columns that should have string value but have numeric value.
Parameters
----------
@@ -342,6 +342,8 @@ class TableImporter():
# These special cases should be fine.
if issub(col_dtype, np.integer) and issub(datatype, np.floating):
df[key] = df[key].astype(datatype)
elif datatype == str:
df[key] = df[key].astype(datatype)
# Now check each element
for idx, val in df.loc[pd.notnull(df.loc[:, key]), key].items():
Loading