Skip to content
Snippets Groups Projects

ENH: allow to provide required columns explicitly

Merged Henrik tom Wörden requested to merge f-required into dev
Files
2
@@ -373,23 +373,20 @@ class TableImporter():
for index, row in df.iterrows():
# if none of the relevant information is given, skip
if np.array([pd.isnull(row.loc[key]) for key in self.obligatory_columns]).all():
if pd.isnull(row.loc[[key for key in self.obligatory_columns if key in df.columns]]).all():
df = df.drop(index)
continue
# if any of the relevant information is missing, report it
i = 0
okay = True
while okay and i < len(self.obligatory_columns):
key = self.obligatory_columns[i]
i += 1
if key not in df.columns:
continue
i += 1
if pd.isnull(row.loc[key]):
errmsg = (
Loading